Commit 108c702a authored by xinzhedeai's avatar xinzhedeai

fix: 商户主页名称超长处理、商户编辑去掉场所类型

parent d94ee287
......@@ -188,7 +188,7 @@
</div>
</div>
<div class="form-item">
<!-- <div class="form-item">
<span class="form-label">场所类型</span>
<div class="form-input-wrap">
<select class="selector" name="" v-model="formData.smallPlaceTypeId" :disabled="flag=='XQ'">
......@@ -196,7 +196,7 @@
</option>
</select>
</div>
</div>
</div> -->
<div>
<h5 class="imager-item-title">
......
......@@ -231,6 +231,10 @@ window.addEventListener("load", function () {
if (res) {
var result = JSON.parse(res)
this.merInformation = { ...this.merInformation, ...result.data }
// this.merInformation.unitName = '丰家房产(威海火炬高技术产业开发区丰祥家不动产经纪服务中心)'
if(this.merInformation.unitName.length > 9){
this.merInformation.unitName = this.merInformation.unitName.substring(0, 9) + '...'
}
}
}
)
......
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