snow 1 ano atrás
pai
commit
ecab5e78ce

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/0.js


+ 10 - 2
src/views/goodStore/dealGoodsPool/addEdit.vue

@@ -321,9 +321,17 @@ export default {
       }
 
       if(this.list.length > 0){
-        for(const item of this.list){
+        const regex = /^(http|https):\/\/[^ "]+$/;
+        for(let index = 0;index < this.list.length;index ++){
+          const item = this.list[index];
+          const line = index + 1;
           if(!item.market_url){
-            this.$message.warning("请填入京东比价链接")
+            this.$message.warning(`商品第 ${line} 行,京东链接不能为空`)
+            return
+          }
+
+          if(!regex.test(item.market_url)){
+            this.$message.warning(`商品第 ${line} 行,京东链接格式不正确`)
             return
           }
         }

+ 2 - 2
src/views/goodStore/dealGoodsPool/columns.js

@@ -73,9 +73,9 @@ const listCol = [
   },
   {
     prop: "is_online",
-    label: "是否上线到商品库",
+    label: "已申请商品上线",
     _slot_: "is_online",
-    width: "120px",
+    width: "110px",
   },
   {
     prop: "companyNo",

+ 10 - 2
src/views/goodStore/goodsCost/components/addEdit.vue

@@ -302,9 +302,17 @@ export default {
       );
 
       if(this.list.length > 0){
-        for(const item of this.list){
+        const regex = /^(http|https):\/\/[^ "]+$/;
+        for(let index = 0;index < this.list.length;index ++){
+          const item = this.list[index];
+          const line = index + 1;
           if(!item.market_url){
-            this.$message.warning("请填入京东比价链接")
+            this.$message.warning(`商品第 ${line} 行,京东链接不能为空`)
+            return
+          }
+
+          if(!regex.test(item.market_url)){
+            this.$message.warning(`商品第 ${line} 行,京东链接格式不正确`)
             return
           }
         }

+ 12 - 3
src/views/goodStore/goodsOnline/add.vue

@@ -311,10 +311,19 @@ export default {
         this.ruleForm.online_remark
       );
 
+
       if(this.tableData.length > 0){
-        for(const tableItem of this.tableData){
-          if(!tableItem.market_url){
-            this.$message.warning("请填写京东比价链接")
+        const regex = /^(http|https):\/\/[^ "]+$/;
+        for(let index = 0;index < this.tableData.length;index ++){
+          const item = this.tableData[index];
+          const line = index + 1;
+          if(!item.market_url){
+            this.$message.warning(`商品第 ${line} 行,京东链接不能为空`)
+            return
+          }
+
+          if(!regex.test(item.market_url)){
+            this.$message.warning(`商品第 ${line} 行,京东链接格式不正确`)
             return
           }
         }

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff