index.js 1.01 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
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 Bdteus {
  constructor() {
    this.data = {
      strinf: "", //  说明		.strinf
      didgrp: new Didgrp().data,
      bddgrp: new Bddgrp().data,
      oldbddgrp: new Bddgrp().data,
      bdtp: new Bdtp().data,
      commsg: {
        msgtxt: "", //  信息内容		.commsg.msgtxt
        jscyjg: "", //  接收行联行行号		.commsg.jscyjg
        adrblk: "",
        typsel:"",
      },
      newmatdat:"",
      cdamt:"",
      pageId: "", // ctx的key
      setmod: new Pub().data.Setmod,
      mtabut: new Pub().data.Mtabut,
      trnmod: new Pub().data.Trnmod,
      liaall: new Pub().data.Liaall,
      liaccv: new Pub().data.Liaccv,
      docpan: new Pub().data.Docpan,
      doctre: new Pub().data.Doctre,
      trndia: new Pub().data.Trndia,
    };
  }
}