diff --git a/subpackages/applyPeriod/applyPeriod.vue b/subpackages/applyPeriod/applyPeriod.vue
index a76aff7..61c4d80 100644
--- a/subpackages/applyPeriod/applyPeriod.vue
+++ b/subpackages/applyPeriod/applyPeriod.vue
@@ -9,6 +9,11 @@
{{item.platformTypeName}}
+
+
+ {{showItem.platformPeriod | filterStatus}}
+
+
@@ -38,7 +43,7 @@
{{item.periodNum}}期
-
@@ -49,7 +54,7 @@
{{item.periodNum}}期
-
@@ -59,10 +64,10 @@
协议照片:
-
+
@@ -162,7 +167,23 @@
return false
}
- }
+ },
+ },
+ filters:{
+ /* 状态 0:不可用 1:正常 2: 审核中 3:审核驳回 */
+ filterStatus(type){
+ switch (type.status) {
+ case 1:
+ return '正常';
+ case 2:
+ return '审核中';
+ case 3:
+ return '审核驳回:'+type.suggestionReject;
+ default:
+ return '未知';
+ }
+ },
+
},
methods: {
/* 平台类型change切换 */
@@ -324,6 +345,7 @@
}
if (res.return_code == '000000') {
+
this.listData = res.return_data;
if(this.listData.length>0){
this.switchid(this.platformPeriodIndex);
@@ -436,6 +458,14 @@