Commit 39e9cf2b authored by xinzhedeai's avatar xinzhedeai

fix:tag2标签页消失 div标签缺少问题处理

parent c39268b7
...@@ -191,13 +191,8 @@ ...@@ -191,13 +191,8 @@
v-if="flag=='XQ'" v-if="flag=='XQ'"
> >
<span class="form-label">行业主管</span> <span class="form-label">行业主管</span>
<div class="form-input-wrap"> <div class="form-input-wrap" style="color: #333;font-size: .3rem;">
<input {{ formData.industryDeptName }}
type="text"
v-model="formData.industryType"
class="form-input"
:disabled="flag=='XQ'"
/>
</div> </div>
</div> </div>
...@@ -277,27 +272,7 @@ ...@@ -277,27 +272,7 @@
</van-uploader> </van-uploader>
</div> </div>
</div> </div>
<!-- <div v-if="flag=='XG'">
<van-uploader
v-model="formData.businessLicensePhotosH5"
:max-count="1"
:after-read="handleFileUpload"
class="uploader-wrapper"
/>
</div>
<div v-if="flag=='XQ'">
<img
v-for="(imgItem, subIndex) in formData.businessLicensePhotos"
:src="previewUrl + imgItem"
alt=""
style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem"
@click="showImage(formData.businessLicensePhotos,subIndex)"
/>
</div> </div>
</div> -->
<div> <div>
<h5 class="imager-item-title"> <h5 class="imager-item-title">
<span class="form-label">门头图</span> <span class="form-label">门头图</span>
...@@ -325,23 +300,6 @@ ...@@ -325,23 +300,6 @@
</van-uploader> </van-uploader>
</div> </div>
</div> </div>
<!-- <div v-if="flag=='XG'">
<van-uploader
v-model="formData.storefrontPhotosH5"
:max-count="1"
:after-read="handleFileUpload"
class="uploader-wrapper"
/>
</div>
<div v-if="flag=='XQ'">
<img
v-for="(imgItem, subIndex) in formData.storefrontPhotos"
:src="previewUrl + imgItem"
alt=""
style="width: 1.2rem; height: 1.2rem; margin-right: 0.2rem"
@click="showImage(formData.storefrontPhotos,subIndex)"
/>
</div> -->
</div> </div>
<button <button
......
...@@ -76,6 +76,7 @@ window.addEventListener('load', function () { ...@@ -76,6 +76,7 @@ window.addEventListener('load', function () {
this.getDict4businessType() this.getDict4businessType()
this.getDict4community() this.getDict4community()
this.getDict4industryType() this.getDict4industryType()
// this.getDict4changhsuoType() // this.getDict4changhsuoType()
}, },
watch: { watch: {
...@@ -268,7 +269,7 @@ window.addEventListener('load', function () { ...@@ -268,7 +269,7 @@ window.addEventListener('load', function () {
}, 0); }, 0);
var result = JSON.parse(res) var result = JSON.parse(res)
this.dict4changhsuoType = result.data.body.data this.dict4changhsuoType = result.data.body.data
if(!this.dict4businessType.length){ // 如果下拉列表为空,则置空场所类型的值。 if(!this.dict4businessType || !this.dict4businessType.length){ // 如果下拉列表为空,则置空场所类型的值。
this.formData.smallPlaceTypeId = null this.formData.smallPlaceTypeId = null
} }
...@@ -562,7 +563,7 @@ window.addEventListener('load', function () { ...@@ -562,7 +563,7 @@ window.addEventListener('load', function () {
} }
this.formData = tempData this.formData = tempData
console.log('******详情********') console.log('******详情********', tempData)
// 这里添加跳转逻辑 // 这里添加跳转逻辑
const QR_IMAGE_URL = result.data.qrCodeUrl const QR_IMAGE_URL = result.data.qrCodeUrl
......
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