diff --git a/src/views/volunteer/yzczs/myycxhd/index.vue b/src/views/volunteer/yzczs/myycxhd/index.vue index 83186fd..b77a082 100644 --- a/src/views/volunteer/yzczs/myycxhd/index.vue +++ b/src/views/volunteer/yzczs/myycxhd/index.vue @@ -31,7 +31,11 @@ @@ -173,12 +177,15 @@
状态:
-
{{ form.issuanceStatus ? "已发放" : "未发放" }}
+
{{ filterIissuanceStatus(form) }}
-
+
纸制证书 @@ -196,7 +203,10 @@
-
+
电子证书 @@ -289,7 +299,7 @@ export default { /**状态过滤 */ filterIissuanceStatus(row) { if (row.issuanceStatus == false && row.type == null) { - return "未发放"; + return "未申请"; } else if ( (row.issuanceStatus == true && row.type == 1) || (row.issuanceStatus == true && row.type == 2) @@ -373,6 +383,7 @@ export default { id: this.form.id, trackingNumber: this.form.trackingNumber, type: 2, // 1:电子证书 2:纸制证书 + issuanceStatus: true, }; this.subIssue(data); });