wcs_client_kate_suzhou/src/plugins/formatter/formatter.bool.js

23 lines
636 B
JavaScript
Raw Normal View History

2024-05-14 16:31:23 +08:00
const format = {
// 格式化True False
formatTrueFalse(bool) {
switch (bool) {
case true:
return {msg: '是', type: 'success', color: ''};
default:
return {msg: ``, type: 'danger', color: ''};
}
},
formatTrueFalseNum(num) {
switch (num) {
case '1':
return {msg: '是', type: 'success', color: ''};
case 1:
return {msg: '是', type: 'success', color: ''};
default:
return {msg: ``, type: 'danger', color: ''};
}
}
}
export default format