This commit is contained in:
kclf
2022-12-06 21:28:38 +08:00
parent fd059388f2
commit 921b70e026
2 changed files with 4 additions and 16 deletions

View File

@@ -400,11 +400,7 @@
<img <img
class="i_upload_img" class="i_upload_img"
v-if="feng_mian_1" v-if="feng_mian_1"
:src=" :src="feng_mian_1"
feng_mian_1.indexOf(',') > -1
? feng_mian_1.split(',')[0]
: feng_mian_1
"
alt="avatar" alt="avatar"
/> />
<!-- <a-upload <!-- <a-upload
@@ -846,11 +842,7 @@
<img <img
class="i_upload_img" class="i_upload_img"
v-if="feng_mian_2" v-if="feng_mian_2"
:src=" :src="feng_mian_2"
feng_mian_2.indexOf(',') > -1
? feng_mian_2.split(',')[0]
: feng_mian_2
"
alt="avatar" alt="avatar"
/> />
<!-- <a-upload <!-- <a-upload
@@ -4289,7 +4281,7 @@ export default defineComponent({
let newArr = []; let newArr = [];
arr.forEach((item) => { arr.forEach((item) => {
newArr.push({ newArr.push({
value: item.dictValue + "," + item.dictCode, value: item.dictValue,
label: item.dictName, label: item.dictName,
}); });
}); });

View File

@@ -59,11 +59,7 @@
<span style="margin-right: 14px">封面图</span> <span style="margin-right: 14px">封面图</span>
</div> </div>
<img <img
:src=" :src="detail.picUrl"
detail.picUrl.indexOf(',') > -1
? detail.picUrl.split(',')[0]
: detail.picUrl
"
alt="img" alt="img"
style="width: 100px; height: 100px" style="width: 100px; height: 100px"
/> />