修复渠道展示问题

This commit is contained in:
liaozetao
2023-11-21 14:57:02 +08:00
parent 8c9af40427
commit 7d915d59f3
2 changed files with 10 additions and 2 deletions

View File

@@ -256,7 +256,11 @@ export default {
let ruleObj = JSON.parse(ruleValue);
value = ruleObj[key];
if (!value) {
value = '全部';
if (key == 'NOT_CHANNELS') {
value = '-';
} else {
value = '全部';
}
}
if (key == 'IOS') {
value = ruleObj['IOS_LOW_VERSION'] + '~' + ruleObj['IOS_HIGH_VERSION'];

View File

@@ -207,7 +207,11 @@ export default {
let ruleObj = JSON.parse(ruleValue);
value = ruleObj[key];
if (!value) {
value = '全部';
if (key == 'NOT_CHANNELS') {
value = '-';
} else {
value = '全部';
}
}
if (key == 'IOS') {
value = ruleObj['IOS_LOW_VERSION'] + '~' + ruleObj['IOS_HIGH_VERSION'];