Commit 97f09c13 by lixiaomin

修改规格

parent 6c5feb09
......@@ -106,9 +106,9 @@ export default {
subTag=false;
return;
}else{
const regular = /^[+]{0,1}([1-9]+)$|^[+]{0,1}(\d+\.\d+)$/ //正数(包括小数)
const regular = /^[+]{0,1}([1-9][0]+)$|^[+]{0,1}(\d+\.\d{1,2})$/ //正数(包括小数)
if (!regular.test(item.quantity)) {
this.$message.error(''+item.name+"原料名称的原料数量不是大于0的数字!")
this.$message.error(''+item.name+"原料名称的原料数量不是大于0的数字,最多保留2位小数!")
subTag=false;
return;
}
......
......@@ -244,8 +244,7 @@ export default {
},
/** 提交按钮 */
submitForm() {
let regular = /^[+]{0,1}([0-9]+)$|^[+]{0,1}(\d+\.\d{2})$/ //正数(保留2位小数)
let regular=/(^[+]{0,1}([0-9]+)$)|(^[+]{0,1}([0-9]+)[\.]{1}[0-9]{1,2}$)/; //正数 ,小数可有可无,最多2位
this.$refs["form"].validate((valid) => {
if (valid) {
let specsSelectList = this.$refs.specsSelect.list;
......@@ -256,7 +255,7 @@ export default {
return;
}
if(!regular.test(specsSelectList[i].amount)){
this.$modal.msgSuccess('选项列表中的第' + index + '行价格不是大于等于0的两位小数');
this.$modal.msgSuccess('选项列表中的第' + index + '行价格不是大于等于0的数字,最多保留两位小数');
return;
}
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