index.js 761 Bytes
Newer Older
李少勇 committed
1
import Pub from "~/components/business/commonModel/index.js";
huangshunlin committed
2 3
import Fxdgrp from '~/components/business/commonModel/fxdgrp';

fukai committed
4

李少勇 committed
5
export default class Fxtssb {
huangshunlin committed
6 7 8 9 10 11 12 13
    constructor() {
        this.data = {
            fxtp: {
                amtlab: "",			//  Amount Label		.fxtp.amtlab
                cnylab: "",			//  Amount LabelCNY		.fxtp.cnylab
                frgchk: "",			//  外币		.fxtp.frgchk
                cnychk: "",			//  人民币		.fxtp.cnychk
                cshflg: "",			//  钞汇标志		.fxtp.cshflg
李少勇 committed
14
            },
huangshunlin committed
15 16 17 18
            fxdgrp: new Fxdgrp().data,
            setmod: new Pub().data.Setmod,
            docpan: new Pub().data.Docpan,
            trndia: new Pub().data.Trndia,
19
            jshmod: new Pub().data.Jshmod,
huangshunlin committed
20
        }
fukai committed
21 22
    }
}