浏览代码

添加类型

lex 2 年之前
父节点
当前提交
a008533f3f
共有 2 个文件被更改,包括 7 次插入2 次删除
  1. 5 1
      src/utils/searchArray.js
  2. 2 1
      src/utils/vueFilter.js

+ 5 - 1
src/utils/searchArray.js

@@ -715,6 +715,10 @@ export const paymentChannelStatus = [
   {
     value: "ADAPAY",
     label: "汇付"
+  },
+  {
+    value: "YEEPAY",
+    label: "易宝"
   }
 ];
 // 销售类型
@@ -903,7 +907,7 @@ export const levelStatusList = getValueForKey(levelStatus);
 export const evaluateStatusList = getValueForKey(evaluateStatus);
 export const problemTypeList = getValueForKey(problemType);
 export const schoolUserTypeList = getValueForKey(schoolUserType);
-export const shareLiveTypeList = getValueForKey(shareLiveType)
+export const shareLiveTypeList = getValueForKey(shareLiveType);
 //downListType
 function getValueForKey(obj) {
   let arr = [];

+ 2 - 1
src/utils/vueFilter.js

@@ -493,7 +493,8 @@ Vue.filter("paymentChannelStatus", value => {
   let template = {
     YQPAY: "双乾",
     BALANCE: "余额",
-    ADAPAY: "汇付"
+    ADAPAY: "汇付",
+    YEEPAY: "易宝"
   };
   return template[value];
 });