天波用户运营管理后台系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
516B

  1. /*
  2. * @Date: 2021-12-07 10:45:23
  3. * @LastEditors: JinxuChen
  4. * @LastEditTime: 2021-12-15 16:29:48
  5. * @FilePath: \GpsCardAdmin\src\utils\checkout-status.js
  6. * @description: 将接口里面的kindId转化为文字
  7. */
  8. exports.install = function (Vue, options) {
  9. Vue.prototype.checkoutStatus = function(value) {
  10. if(value === 0) {
  11. return '未启用'
  12. } else if(value === 1 ) {
  13. return '黑名单'
  14. } else if(value === 2) {
  15. return '白名单'
  16. }
  17. }
  18. }