Commit 97f09c13 by lixiaomin

修改规格

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