Browse Source

添加交易类型

lex-xin 4 years ago
parent
commit
e774bbeeaf
2 changed files with 3 additions and 1 deletions
  1. 1 0
      src/utils/searchArray.js
  2. 2 1
      src/utils/vueFilter.js

+ 1 - 0
src/utils/searchArray.js

@@ -61,6 +61,7 @@ export const orderStatus = [
   { value: "SMALL_CLASS_TO_BUY", label: "VIP购买" },
   { value: "SPORADIC", label: "零星收费" },
   { value: "LUCK", label: "福袋活动" },
+  { value: "DEGREE_REGISTRATION", label: "考级报名" },
   { value: "DOUBLE_ELEVEN2020", label: "双十一活动" },
   { value: "PRACTICE_GROUP_BUY", label: "网管课" },
   { value: 'PRACTICE_GROUP_RENEW', label: '网管课续费' },

+ 2 - 1
src/utils/vueFilter.js

@@ -254,7 +254,8 @@ Vue.filter('orderType', value => {
     OUTORDER: '外部收入',
     GOODS_SELL: '商品销售',
     SUBJECT_CHANGE: '声部更换',
-    DOUBLE_ELEVEN2020: '双十一活动'
+    DOUBLE_ELEVEN2020: '双十一活动',
+    DEGREE_REGISTRATION: '考级报名'
 
   }
   return template[value]