天波用户运营管理后台系统
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.

17 lines
426B

  1. /*
  2. * @Date: 2021-12-07 10:45:23
  3. * @LastEditors: JinxuChen
  4. * @LastEditTime: 2021-12-22 17:47:00
  5. * @FilePath: \GpsCardAdmin\src\utils\checkout-status-to-num.js
  6. * @description: 将接口里面的kindId转化为文字
  7. */
  8. exports.install = function (Vue, options) {
  9. Vue.prototype.checkoutStatusToNum = function (value) {
  10. if (value === true) {
  11. return 2
  12. } else if (value === false) {
  13. return 1
  14. }
  15. }
  16. }