linwenxin 4 mesi fa
parent
commit
b919ba0c42

+ 20 - 0
src/views/setting/networkSigning/contractManagement/enterpriseCaCertification/index.vue

@@ -324,6 +324,26 @@ export default {
     exportList: companyCaAuthListExport,
     // 表格列解析渲染数据更改
     columnParsing(item, defaultData) {
+      if (item.jname === 'businessLicenseUrl') {
+        defaultData.render = (h, { row, index, column }) => {
+          return (
+            <div style="padding:0 6px;cursor: pointer;">
+              {row.businessLicenseUrl
+                ? row.businessLicenseUrl
+                    .split(',')
+                    .map(url => (
+                      <el-image
+                        src={this.$showImgUrl(url)}
+                        preview-src-list={[this.$showImgUrl(url)]}
+                        fit="fit"
+                        style="width:80px;height:80px;"
+                      />
+                    ))
+                : null}
+            </div>
+          )
+        }
+      }
       return defaultData
     },
     // 获取勾选框数据