index.js 907 Bytes
Newer Older
liu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import Api from "~/service/Api"
import Pts from "../Common/Pts"

export default class Notice{
    constructor(){
        this.data={

                tid:"",    
                theme:"",   //  公告的标题
                unit:"",    //   发布机构
                pubname:"", // 发布人
                dat:"",  // 发布时间
                content:"",  // 公告内容
                visunit:"", //可见范围
zhoutian committed
15 16
                opndatto:"",
                opndatfrom:"",
liu committed
17 18 19 20 21 22 23 24
                
                edit:{
                    tid:"",    
                    theme:"",   //  公告的标题
                    unit:"",    //   发布机构
                    pubname:"", // 发布人
                    dat:"",  // 发布时间
                    content:"",  // 公告内容
zhoutian committed
25
                    visunit:["总行"], //可见范围
liu committed
26 27 28 29 30 31 32 33 34 35
                },
           


        }


    }

}