panhui 4 سال پیش
والد
کامیت
40f9d069a7

+ 1 - 1
src/main/vue/src/components/internationalPatent/Reply.vue

@@ -86,7 +86,7 @@ export default {
             this.$emit('uploadAttement', this.form.attachment1);
             info.officialPeriod = this.form.officialPeriod;
             info.submitPeriod = this.form.submitPeriod;
-            info.workflow = 'REPLY_SUBMISSION';
+            info.workflow = 'REPLY_SUBMISSIONS';
             this.$emit('submit', info);
             this.show = false;
         }

+ 2 - 2
src/main/vue/src/mixins/internationalPatent.js

@@ -12,7 +12,7 @@ export default {
                         { label: '维护案件信息', value: 'MAINTAIN_CASE' },
                         { label: '待官文流转', value: 'OFFICIAL_CIRCULATION' },
                         { label: '待补正答复', value: 'SUPPLEMENTARY_REPLY' },
-                        { label: '待上传答复意见书', value: 'REPLY_SUBMISSION' },
+                        { label: '待上传答复意见书', value: 'REPLY_SUBMISSIONS' },
                         { label: '待确认答复状态', value: 'CONFIRM_REPLY' },
                         { label: '已完成', value: 'COMPLETED' }
                     ]
@@ -34,7 +34,7 @@ export default {
                     type: 'warning',
                     workflows: [
                         { label: '待补正答复', value: 'SUPPLEMENTARY_REPLY' },
-                        { label: '待上传答复意见书', value: 'REPLY_SUBMISSION' }
+                        { label: '待上传答复意见书', value: 'REPLY_SUBMISSIONS' }
                     ]
                 },
                 {

+ 19 - 3
src/main/vue/src/views/InternationalPatentEdit.vue

@@ -75,6 +75,18 @@
             @submit="submit"
             @uploadAttement="uploadAttement"
         ></reply-result>
+        <add-supplier-no
+            ref="addSupplierNo"
+            :info="formData"
+            @submit="submit"
+            @uploadAttement="uploadAttement"
+        ></add-supplier-no>
+        <back-supplier
+            ref="backSupplier"
+            :info="formData"
+            @submit="submit"
+            @uploadAttement="uploadAttement"
+        ></back-supplier>
     </div>
 </template>
 <script>
@@ -90,6 +102,8 @@ import ReplySubmissions from '../components/internationalPatent/replySubmissions
 import ReplyResult from '../components/internationalPatent/ReplyResult.vue';
 import Workflow from '../components/Workflow.vue';
 import OfficeAttachment from '../components/internationalPatent/OfficeAttachment.vue';
+import AddSupplierNo from '../components/internationalPatent/AddSupplierNo.vue';
+import BackSupplier from '../components/internationalPatent/BackSupplier.vue';
 export default {
     name: 'InternationalPatentEdit',
     mixins: [internationalPatent],
@@ -134,7 +148,7 @@ export default {
         date() {
             if (this.formData.workflow === 'SUPPLIER_MATERIALS') {
                 return this.formData.supplierSubmitPeriod;
-            } else if (this.formData.workflow === 'REPLY_SUBMISSION') {
+            } else if (this.formData.workflow === 'REPLY_SUBMISSIONS') {
                 return this.formData.submitPeriod;
             } else {
                 return '无';
@@ -255,7 +269,7 @@ export default {
                 this.$refs.officeAttachment.show = true;
             } else if (this.formData.workflow === 'SUPPLEMENTARY_REPLY') {
                 this.$refs.reply.show = true;
-            } else if (this.formData.workflow === 'REPLY_SUBMISSION') {
+            } else if (this.formData.workflow === 'REPLY_SUBMISSIONS') {
                 this.$refs.replySubmissions.show = true;
             } else if (this.formData.workflow === 'CONFIRM_REPLY') {
                 this.$refs.replyResult.show = true;
@@ -272,7 +286,9 @@ export default {
         Reply,
         ReplySubmissions,
         ReplyResult,
-        OfficeAttachment
+        OfficeAttachment,
+        AddSupplierNo,
+        BackSupplier
     }
 };
 </script>