import commonFunctions from '../../../../../../mixin/commonFunctions.js'; import commonDepend from "../../../../../../mixin/commonDepend"; import Api from "~/service/Api" export default { mixins: [commonFunctions, commonDepend], methods: { async init2135(params){ let res = await Api.post('/report/rmbsel/select2135',params); if(res.respCode == SUCCESS){ this.model.rmbbut.ownextkey = res.data.ownextkey; this.model.pblmod.pbl.reldat = res.data.reldat; this.model.recgrp.ads = res.data.tcpVo; this.$set(this.model.recgrp.ads,"transamt", res.data.tcpVo.transamt) }else{ this.$notify({ title: "业务数据初始化失败", message : res.respMsg, type: "error", }); } } }, }