Commit 88acaf30 by 刘泽奇

123

parent ca48e167
...@@ -205,6 +205,7 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => { ...@@ -205,6 +205,7 @@ axios.get("/web/common/metaCtl/getRouteConfig").then(d => {
var path = from.split('/')[1]; var path = from.split('/')[1];
return path; return path;
}, },
// 操作头尾显示隐藏
handleHeader() { handleHeader() {
this.$nextTick(() => { this.$nextTick(() => {
let hideHeader = location.hash.split('/')[1]; let hideHeader = location.hash.split('/')[1];
......
...@@ -707,6 +707,8 @@ ...@@ -707,6 +707,8 @@
</el-form-item> </el-form-item>
<el-form-item v-if="editApply.customerType==\'person\'" label-width="140px" label="姓名" <el-form-item v-if="editApply.customerType==\'person\'" label-width="140px" label="姓名"
style="width:493px;float:left;padding-right:50px;" prop="name"> style="width:493px;float:left;padding-right:50px;" prop="name">
<!-- <el-input v-model="editApply.name" placeholder="请输入内容"></el-input> -->
<gsb-selectperson v-if="currentUser" @input="selectpersoninput" allowcreate="true" <gsb-selectperson v-if="currentUser" @input="selectpersoninput" allowcreate="true"
showhistory="true" @historychange="historyapplierchange" size="medium" showhistory="true" @historychange="historyapplierchange" size="medium"
v-model="editApply.name" refMethod="getCompanyInfoByLikeName" v-model="editApply.name" refMethod="getCompanyInfoByLikeName"
...@@ -798,7 +800,7 @@ ...@@ -798,7 +800,7 @@
@click="toViewImg(editApply.customerType == \'ent\' ? \'/imgs/sbzc/yyzzD1.png\' : \'imgs/sbzc/yyzzD.png\')"> @click="toViewImg(editApply.customerType == \'ent\' ? \'/imgs/sbzc/yyzzD1.png\' : \'imgs/sbzc/yyzzD.png\')">
查看大图</div> 查看大图</div>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item class="gsb_items" v-if="editApply.customerType==\'person\'" label=""> <el-form-item class="gsb_items" v-if="editApply.customerType==\'person\'" label="">
<div class="title special">上传材料:身份证明</div> <div class="title special">上传材料:身份证明</div>
...@@ -835,7 +837,7 @@ ...@@ -835,7 +837,7 @@
查看大图 查看大图
</div> </div>
</div> </div>
</el-form-item> </el-form-item>
</div> </div>
......
...@@ -1254,13 +1254,13 @@ ...@@ -1254,13 +1254,13 @@
} }
}, },
selectpersoninput(v){ selectpersoninput(v){
if (v != this.apply.name) { if (v != this.editApply.name) {
this.apply.name = v; this.editApply.name = v;
this.apply.applyAddr = ""; this.editApply.applyAddr = "";
this.apply.code = ""; this.editApply.code = "";
this.apply.businessLicensePic = ""; this.editApply.businessLicensePic = "";
this.apply.identityCardNo = ""; this.editApply.identityCardNo = "";
this.apply.identityCardPic = ""; this.editApply.identityCardPic = "";
} }
}, },
applierChange(v){ applierChange(v){
......
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