index.js 1.33 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

export default class Bopsel{
    constructor () {
        this.data = {
						bopquep:{
							ownextkey:"",			//  Initial Code		.bopquep.ownextkey
              frmdat: "",		  //  From		.bopquep.frmdat
              tildat: "",			//  Until		.bopquep.tildat
              boptyp:"ALL",			//  申报类型		.bopquep.boptyp
              staflg:"",			//  至		.bopquep.staflg
              dattyp:"",			//  查询日期类型		.bopquep.dattyp
              medtyp:"",			//  结算方式		.bopquep.medtyp
              rptno:"",			//  申报号码		.bopquep.rptno
              ptytyp:"",			//  客户类型		.bopquep.ptytyp
              ptynam:"",			//  客户名称		.bopquep.ptynam
              ownref:"",			//  业务编号		.bopquep.ownref
              sum:"",			//  笔数		.bopquep.sum	
              bopcur:"",			//  币种		
              paytyp:"",			//  收付款性质	
              datsrc:"",			//  数据来源	
							bchcod:"",
							selsta:""
            },
            bchtypList: [],
            bopsellst: [],
            backlist: [],
						errsel:{
              msgstm:"",			//  Select Error Message		.errsel.msgstm
              rptno:"",			//  申报编号		.errsel.rptno
            },
            pageId: "",			// ctx的key
            btnflg: "",			// 按钮权限控制
            enableflg: "", //试点行标志
				}
    }
}