Commit 625d4c3d by 1377875331@qq.com

明细

parent 1e6bb0e6
......@@ -281,10 +281,6 @@ function defaultLiaallLimmodLimptsPfcod1() {
function defaultDidgrpAplPtsExtkey() {
}
function defaultDidgrpBlkDefdet() {
const that = this;
that.executeDefault("didgrp.blk.defdet").then(res => {
//TODO
})
}
function defaultDidgrpBlkInsbnk() {
const that = this;
......@@ -337,6 +333,11 @@ function defaultBchname() {
})
}
function defaultDidgrpRecTenmaxday() {
const that = this;
that.executeDefault("didgrp.blk.defdet").then(res => {
//TODO
that.model.didgrp.blk.defdet = res.data.didgrp_blk_defdet;
})
}
function defaultDitpRemark() {
const that = this;
......
......@@ -141,7 +141,17 @@ export default {
avbbykeyEvent(){
if(this.model.didgrp.rec.avbby == 'P'){
this.model.didgrp.rec.tenmaxday = 0;
this.model.didgrp.blk.defdet = "";
}
Api.post("ditopn/executeDefault/didgrp.rec.tenmaxday", data).then(
(res) => {
if (res.respCode = "AAAAAA"){
const data = res.data;
this.model.didgrp.blk.defdet = data.didgrp_blk_defdet;
}
}
);
}
},
......
......@@ -340,7 +340,7 @@
>
<c-input
v-model="model.didgrp.apl.pts.ref"
maxlength="12"
maxlength="16"
placeholder="请输入申请人 参考号"
></c-input>
</el-form-item>
......@@ -616,7 +616,7 @@
<c-input
v-model="model.didgrp.ben.pts.dihdig"
maxlength="16"
placeholder="请输入邮编"
placeholder="请输入电话"
></c-input>
</el-form-item>
</el-col>
......@@ -688,13 +688,17 @@ export default {
const data = Utils.flatObject(this.model);
Api.post("ditopn/executeRule/didgrp.apl.pts.extkey", data).then(
(res) => {
const data = res.data;
this.model.didgrp.apl.namelc = data.didgrp_apl_namelc;
this.model.didgrp.apl.adrelc = data.didgrp_apl_adrelc;
this.model.didgrp.apl.pts.extkey =
data.didgrp_apl_pts_extkey;
this.model.didgrp.apl.rolsetflg = data.didgrp_apl_rolsetflg;
this.flag = false;
if (res.respCode = "AAAAAA"){
const data = res.data;
this.model.didgrp.apl.namelc = data.didgrp_apl_namelc;
this.model.didgrp.apl.adrelc = data.didgrp_apl_adrelc;
this.model.didgrp.apl.pts.extkey = data.didgrp_apl_pts_extkey;
this.model.didgrp.apl.rolsetflg = data.didgrp_apl_rolsetflg;
this.model.didgrp.rec.nam = data.didgrp_rec_nam; //摘要
this.model.didgrp.apl.pts.extact = data.didgrp_apl_pts_extact; //申请人账号
this.flag = false;
}
}
);
},
......@@ -702,11 +706,13 @@ export default {
const data = Utils.flatObject(this.model);
Api.post("ditopn/executeRule/didgrp.ben.pts.extkey", data).then(
(res) => {
const data = res.data;
this.model.didgrp.ben.namelc = data.didgrp_ben_namelc;
this.model.didgrp.ben.adrelc = data.didgrp_ben_adrelc;
this.model.didgrp.ben.pts.extkey =
data.didgrp_ben_pts_extkey;
if (res.respCode = "AAAAAA"){
const data = res.data;
this.model.didgrp.ben.namelc = data.didgrp_ben_namelc;
this.model.didgrp.ben.adrelc = data.didgrp_ben_adrelc;
this.model.didgrp.ben.pts.extkey = data.didgrp_ben_pts_extkey;
}
}
);
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment