|
@@ -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
|
|
|
}
|
|
|
}
|