修改地区判断
This commit is contained in:
@@ -384,13 +384,13 @@ export default {
|
||||
width: '10%',
|
||||
formatter: function (val, row, index) {
|
||||
let value = '';
|
||||
if (val & 1 != 0) {
|
||||
if ((val & 1) != 0) {
|
||||
value += '英语区<br>';
|
||||
}
|
||||
if (val & 2 != 0) {
|
||||
if ((val & 2) != 0) {
|
||||
value += '阿拉伯语区<br>';
|
||||
}
|
||||
if (val & 4 != 0) {
|
||||
if ((val & 4) != 0) {
|
||||
value += '华语区<br>';
|
||||
}
|
||||
return value;
|
||||
|
Reference in New Issue
Block a user