Commit fe173a84 by caoyanzhi

update: 会员标签

parent 29b4f8ad
......@@ -2844,7 +2844,7 @@ export default {
display: flex;
}
.radio {
margin-left: 10px;
margin-left: 26px;
margin-bottom: 20px;
}
.flex-direction {
......
......@@ -924,7 +924,7 @@ export default {
tagValue.val[0].data.compute = k.symbol == '区间' ? 'between' : k.symbol;
if (k.symbol != '区间') {
// if (!k.num) {
if (k.num == null || isNaN(Number(k.num))) {
if (typeof k.num != 'number') {
this.$message.warning({
message: '请完善区间值!'
});
......@@ -938,7 +938,7 @@ export default {
tagValue.val[0].data.value = k.num;
} else {
// if (!k.numRange[0] || !k.numRange[1]) {
if (k.numRange[0] == null || isNaN(Number(k.numRange[0])) || k.numRange[1] == null || isNaN(Number(k.numRange[1]))) {
if (typeof k.numRange[0] != 'number' || typeof k.numRange[1] != 'number') {
this.$message.warning({
message: '请完善区间值!'
});
......
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