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

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