Browse Source

修改部分图片因为http协议请求报错的bug

aliyun0758874076 1 year ago
parent
commit
61ad44bb0c
2 changed files with 3 additions and 2 deletions
  1. 1 1
      public/index.html
  2. 2 1
      src/views/commodity/commoditySystem/index.vue

+ 1 - 1
public/index.html

@@ -20,4 +20,4 @@
 	<!-- built files will be auto injected -->
 </body>
 
-</html>
+</html>

+ 2 - 1
src/views/commodity/commoditySystem/index.vue

@@ -49,7 +49,8 @@
           <el-table-column prop="productId" label="商品id" show-overflow-tooltip />
           <el-table-column label="商品主图" width="150" align="center">
             <template slot-scope="scope">
-              <img height="80" width="80" :src="scope.row.productImage" alt srcset>
+              <!-- 修复图片不能正常显示的问题 -->
+              <img height="80" width="80" :src="scope.row.productImage.replace(/http:\/\//, 'https://')" alt srcset>
             </template>
           </el-table-column>
           <el-table-column prop="productName" label="商品名称" width="220" />