Commit fb33385c by lixiaomin

修改规格

parent 1972f16f
...@@ -247,11 +247,11 @@ export default { ...@@ -247,11 +247,11 @@ export default {
for(let i=0;i<specsSelectList.length;i++){ for(let i=0;i<specsSelectList.length;i++){
let index=i+1; let index=i+1;
if(specsSelectList[i].name==""){ if(specsSelectList[i].name==""){
this.$modal.msgSuccess('选项列表中的第' + index + '行名称不能为空'); this.$message.error('选项列表中的第' + index + '行名称不能为空');
return; return;
} }
if(!regular.test(specsSelectList[i].amount)){ if(!regular.test(specsSelectList[i].amount)){
this.$modal.msgSuccess('选项列表中的第' + index + '行价格不是大于等于0的数字,最多保留1位小数'); this.$message.error('选项列表中的第' + index + '行价格不是大于等于0的数字,最多保留1位小数');
return; return;
} }
if(!specsSelectList[i].isRecommend){ if(!specsSelectList[i].isRecommend){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment