diff --git a/api/person.js b/api/person.js index d1b0271..4bb1f9f 100644 --- a/api/person.js +++ b/api/person.js @@ -9,6 +9,7 @@ let personInfo = {// 用户信息模块 person_applyTrue:'/yishoudan/agency/merge/agree',// 通过 person_applyFalse:'/yishoudan/agency/reject',// 驳回 person_applyNum:'/yishoudan/agency/merge/countApply',// 查询待处理数量 + person_getCreatorTel:'/yishoudan/agency/getCreatorTel',// 获取创建人手机号 } export default personInfo; \ No newline at end of file diff --git a/root/person/marge.vue b/root/person/marge.vue index 14227c9..7765385 100644 --- a/root/person/marge.vue +++ b/root/person/marge.vue @@ -157,6 +157,38 @@ + + + 安全验证 + + + + + + + + + + + + + + + + + + + + + + + + @@ -195,6 +227,12 @@ export default { }, applysRecord:[], recivesRecord:[], + createData:{ + isShow:false, + code:'', + tel: "", + telEncrypt: "" + } }; }, onShow() { @@ -220,13 +258,26 @@ export default { }, openApply(){ let that = this; - that.modalApplyData = { - isShow:true, - tel:'', - desp:'', - resultList:[], - selectResult:'' - } + that.G.Get(that.api.person_getCreatorTel,{},(createRes)=>{ + console.log('创建人手机号:',createRes) + that.createData = { + isShow:true, + code:'', + tel: createRes.tel, + telEncrypt: createRes.telEncrypt + }; + }) + + + + + // that.modalApplyData = { + // isShow:true, + // tel:'', + // desp:'', + // resultList:[], + // selectResult:'' + // } }, handleSearch(){ let that = this;