index.js 1021 Bytes
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
import Lidgrp from "~/components/business/commonModel/lidgrp";
import Pub from "~/components/business/commonModel/index.js";

export default class Litzsq {
  constructor() {
    this.data = {
      limchg: {
        ptyextkey: "", //  额度主体		.limchg.ptyextkey
        othextkey: "", //  单笔单批		.limchg.othextkey
        lim: {
          sfzsqyw: "", //  是否转授权业务		.limchg.lim.sfzsqyw
          mgskhbh: "", //  转授权客户编号		.limchg.lim.mgskhbh
          sffgsyw: "", //  是否分公司业务		.limchg.lim.sffgsyw
          zgskhbh: "", //  总公司客户编号		.limchg.lim.zgskhbh
          othmflg: "", //  是否转授权业务		.limchg.lim.othmflg
          othmgs: "", //  转授权客户编号		.limchg.lim.othmgs
          othfflg: "", //  是否分公司业务		.limchg.lim.othfflg
          othzgs: "", //  总公司客户编号		.limchg.lim.othzgs
        },
      },
      lidgrp: new Lidgrp().data,
      addamtflg: "",
      trndia: new Pub().data.Trndia,
    };
  }
}