Commit 625d4c3d by 1377875331@qq.com

明细

parent 1e6bb0e6
...@@ -281,10 +281,6 @@ function defaultLiaallLimmodLimptsPfcod1() { ...@@ -281,10 +281,6 @@ function defaultLiaallLimmodLimptsPfcod1() {
function defaultDidgrpAplPtsExtkey() { function defaultDidgrpAplPtsExtkey() {
} }
function defaultDidgrpBlkDefdet() { function defaultDidgrpBlkDefdet() {
const that = this;
that.executeDefault("didgrp.blk.defdet").then(res => {
//TODO
})
} }
function defaultDidgrpBlkInsbnk() { function defaultDidgrpBlkInsbnk() {
const that = this; const that = this;
...@@ -337,6 +333,11 @@ function defaultBchname() { ...@@ -337,6 +333,11 @@ function defaultBchname() {
}) })
} }
function defaultDidgrpRecTenmaxday() { 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() { function defaultDitpRemark() {
const that = this; const that = this;
......
...@@ -141,7 +141,17 @@ export default { ...@@ -141,7 +141,17 @@ export default {
avbbykeyEvent(){ avbbykeyEvent(){
if(this.model.didgrp.rec.avbby == 'P'){ if(this.model.didgrp.rec.avbby == 'P'){
this.model.didgrp.rec.tenmaxday = 0; 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 @@ ...@@ -340,7 +340,7 @@
> >
<c-input <c-input
v-model="model.didgrp.apl.pts.ref" v-model="model.didgrp.apl.pts.ref"
maxlength="12" maxlength="16"
placeholder="请输入申请人 参考号" placeholder="请输入申请人 参考号"
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -616,7 +616,7 @@ ...@@ -616,7 +616,7 @@
<c-input <c-input
v-model="model.didgrp.ben.pts.dihdig" v-model="model.didgrp.ben.pts.dihdig"
maxlength="16" maxlength="16"
placeholder="请输入邮编" placeholder="请输入电话"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -688,13 +688,17 @@ export default { ...@@ -688,13 +688,17 @@ export default {
const data = Utils.flatObject(this.model); const data = Utils.flatObject(this.model);
Api.post("ditopn/executeRule/didgrp.apl.pts.extkey", data).then( Api.post("ditopn/executeRule/didgrp.apl.pts.extkey", data).then(
(res) => { (res) => {
const data = res.data; if (res.respCode = "AAAAAA"){
this.model.didgrp.apl.namelc = data.didgrp_apl_namelc; const data = res.data;
this.model.didgrp.apl.adrelc = data.didgrp_apl_adrelc; this.model.didgrp.apl.namelc = data.didgrp_apl_namelc;
this.model.didgrp.apl.pts.extkey = this.model.didgrp.apl.adrelc = data.didgrp_apl_adrelc;
data.didgrp_apl_pts_extkey; this.model.didgrp.apl.pts.extkey = data.didgrp_apl_pts_extkey;
this.model.didgrp.apl.rolsetflg = data.didgrp_apl_rolsetflg; this.model.didgrp.apl.rolsetflg = data.didgrp_apl_rolsetflg;
this.flag = false; 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 { ...@@ -702,11 +706,13 @@ export default {
const data = Utils.flatObject(this.model); const data = Utils.flatObject(this.model);
Api.post("ditopn/executeRule/didgrp.ben.pts.extkey", data).then( Api.post("ditopn/executeRule/didgrp.ben.pts.extkey", data).then(
(res) => { (res) => {
const data = res.data; if (res.respCode = "AAAAAA"){
this.model.didgrp.ben.namelc = data.didgrp_ben_namelc; const data = res.data;
this.model.didgrp.ben.adrelc = data.didgrp_ben_adrelc; this.model.didgrp.ben.namelc = data.didgrp_ben_namelc;
this.model.didgrp.ben.pts.extkey = this.model.didgrp.ben.adrelc = data.didgrp_ben_adrelc;
data.didgrp_ben_pts_extkey; 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