Cbs.js 943 Bytes
Newer Older
zhengxiaokui committed
1 2 3 4 5
export default class Cbs {
    constructor() {
        this.data = {
            nom1: {
                cur: "",			//  Currency		.xxxgrp.cbs.nom1.cur
huxi committed
6
                amt: 0,			//  信用证金额		.xxxgrp.cbs.nom1.amt
zhengxiaokui committed
7 8 9
            },
            max: {
                cur: "",			//  Currency		.xxxgrp.cbs.max.cur
huxi committed
10
                amt: 0,			//  信用证最大金额		.xxxgrp.cbs.max.amt
zhengxiaokui committed
11 12 13
            },
            max2: {
                cur: "",			//  Additional Amount		.xxxgrp.cbs.max2.cur
huxi committed
14
                amt: 0,			//  Additional Amount		.xxxgrp.cbs.max2.amt
zhengxiaokui committed
15 16 17
            },
            opn2: {
                cur: "",			//  Open Add. Amount		.xxxgrp.cbs.opn2.cur
huxi committed
18
                amt: 0,			//  Open Add. Amount		.xxxgrp.cbs.opn2.amt
zhengxiaokui committed
19
            },
20 21
            opn1: {
                cur: "",			//  Open Add. Amount		.xxxgrp.cbs.opn1.cur
huxi committed
22
                amt: 0,			//  Open Add. Amount		.xxxgrp.cbs.opn1.amt
23
            },
zhengxiaokui committed
24 25 26
        }
    }
}