index.js 807 Bytes
Newer Older
fukai committed
1
import Api from "~/service/Api"
2
import Pts from "~/page/Model/Common/Pts"
fukai committed
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

export default class Lmnsel{
    constructor () {
        this.data = {
						lmnp:{
							begsta:"",			//  起始日期		.lmnp.begsta
							enddat:"",			//  截止日期		.lmnp.enddat
							msgtyp:"",			//  报文标准		.lmnp.msgtyp
							othref:"",			//  21域编号		.lmnp.othref
							rcvbic:"",			//  收报行		.lmnp.rcvbic
							dir:"",			//  收发方向		.lmnp.dir
							exp:"",			//  导出		.lmnp.exp
						},
						lmngrp:{
							mpi:{
								subtyp:"",			//  报文类型		.lmngrp.mpi.subtyp
								ownref:"",			//  20域编号		.lmngrp.mpi.ownref
								sndbic:"",			//  发报行		.lmngrp.mpi.sndbic
							},
							lmnlst:[],			//  		.lmngrp.lmnlst
						},
						pageId: ""			// ctx的key
				}
    }
}