index.js 1.08 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
import Pub from "~/components/business/commonModel/index.js";
import Didgrp from '~/components/business/commonModel/didgrp';
import Bddgrp from '~/components/business/commonModel/bddgrp';
import Bdtp from '~/components/business/commonModel/bdtp';

export default class Bdtudp {
  constructor() {
    this.data = {
      didgrp: new Didgrp().data,
      bddgrp: new Bddgrp().data,
      bdtp: new Bdtp().data,
      aamset: {
        utlamt: "", //  单据金额		.aamset.utlamt
        utlamt2: "", //  附加金额		.aamset.utlamt2
      },
      newmatdat:"",
      sftmt: "", //  Which MT		.sftmt
      paypsb: "",
      pageId: "", // ctx的key
      setmod: new Pub().data.Setmod,
      mtabut: new Pub().data.Mtabut,
      trnmod: new Pub().data.Trnmod,
      liaall: new Pub().data.Liaall,
      limmod: new Pub().data.Limmod,
      liaccv: new Pub().data.Liaccv,
      docpan: new Pub().data.Docpan,
      doctre: new Pub().data.Doctre,
      umdmod: new Pub().data.Umdmod,
      trndia: new Pub().data.Trndia,
      cfagit: new Pub().data.Cfagit,
      ypnmod: new Pub().data.Ypnmod,
    };
  }
}