+
-
{{ item.matter || item.enterpriseDirectory}}
-
{{ item.enterpriseName }}
+
【{{ item.matter }}】
+
{{ (item.status == 1 ? "待初审" : item.status == 2 ? "待复审" : item.status == 3 ? "待终审" : "") }}
-
{{ userType == '02' ? '去审批' : userType == '01' ? '去填报' : '' }}
+
去审批
+
+
+
+
+
{{ item.enterpriseDirectory}}
+
+
{{ (item.status == 0 ? "待填报" : item.status == 8 ? "初审不通过" : item.status == 10 ? "初审退回修改" : item.status == 7 ? "复审不通过" : item.status == 9 ? "终审不通过" : item.status == 5 ? "终审通过" : "") }}
+
+
{{ item.status == 0 ? "去填报" : item.status == 10 ? "去修改" : "去查看"}}
@@ -125,7 +134,7 @@ export default {
pageNum: 1,
pageSize: 10,
creditCode: this.$store.state.user.name,
- statusStr: [0, 10],
+ statusStr: [0, 5, 7, 8, 9, 10],
},
// 是否显示弹出层
open: false,
@@ -184,17 +193,38 @@ export default {
});
},
// 更多记录
- MoreRecords(){
+ MoreRecords(type,status){
if(this.userType == "02") {
- this.$router.push({
- name: 'PendingReview',
- params: { approvalStatusStr: "0" }
- })
+ if(type == 'all') {
+ this.$router.push({
+ name: 'PendingReview',
+ params: { approvalStatusStr: "" }
+ })
+ } else {
+ this.$router.push({
+ name: 'PendingReview',
+ params: { approvalStatusStr: "0" }
+ })
+ }
} else if(this.userType == "01") {
- this.$router.push({
- name: 'Records',
- params: { statusChange: "0" }
- })
+ if(type == 'all') {
+ this.$router.push({
+ name: 'Records',
+ params: { statusChange: "" }
+ })
+ } else {
+ if(status == 0 || status == 10) {
+ this.$router.push({
+ name: 'Records',
+ params: { statusChange: "0" }
+ })
+ } else {
+ this.$router.push({
+ name: 'Records',
+ params: { statusChange: "1" }
+ })
+ }
+ }
}
},
// 切换查询tab