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

View File

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