liting2017 7 years ago
parent
commit
88523da362
2 changed files with 28 additions and 14 deletions
  1. 11 13
      js/component/dataDic.js
  2. 17 1
      js/component/tools.js

+ 11 - 13
js/component/dataDic.js

@@ -262,26 +262,24 @@ module.exports = {
             key: "并购"
         },
     ],
-    auditStatusList:[
+    //实名认证
+    auditStatusL:[
         {
-            value: "0",
-            key: "未提交审核"
-        },{
             value: "1",
             key: "提交审核"
-        // },{
-        //     value: "2",
-        //     key: "审核未打款"
-        // },{
-        //     value: "3",
-        //     key: "审核已打款"
+        }, {
+            value: "2",
+            key: "审核未打款"
         },{
+            value: "3",
+            key: "审核已打款"
+        }, {
             value: "4",
-            key: "认证未通过"
+            key: "审核未通过"
         },{
             value: "5",
-            key: "已认证"
-        }
+            key: "审核通过"
+        },
     ],
     certifyStepList:[
         {

+ 17 - 1
js/component/tools.js

@@ -54,7 +54,8 @@ import {
     post,
     patternOrganization,
     conditionOrganization,
-    categoryState
+    categoryState,
+    auditStatusL
 } from './dataDic.js';
 
 import { provinceList} from './NewDicProvinceList.js';
@@ -981,5 +982,20 @@ module.exports = {
             });
             return theType;
        }
+	},
+	//实名认证
+	 getAuditStatus:function(index){
+	 	let e=index?index.toString():'';
+   		 if (e) {
+            let theType = '';
+            auditStatusL.map(function (item) {
+                if (item.value == e) {
+                    theType = item.key;
+                };
+            });
+            return theType;
+        }
+    
 	}
+	
 }