|
@@ -121,7 +121,7 @@
|
|
|
<el-table :data="formData.data.contractProductList" style="width: 100%; margin-top: 16px">
|
|
|
<el-table-column label="商品图片" width="80">
|
|
|
<template #default="{ row }">
|
|
|
- <div v-if="row.productId">
|
|
|
+ <div v-if="row.fileUrl">
|
|
|
<img :src="row.fileUrl" class="pic" @click="onPicture(row.fileUrl)" />
|
|
|
</div>
|
|
|
<div v-else></div>
|
|
@@ -484,7 +484,6 @@ import { ElMessage } from "element-plus";
|
|
|
import Editor from "@/components/Editor/index.vue";
|
|
|
import selectCity from "@/components/selectCity/index.vue";
|
|
|
import { useRoute } from "vue-router";
|
|
|
-import Pubsub from "pubsub-js";
|
|
|
|
|
|
const route = useRoute();
|
|
|
// 接收父组件的传值
|