|
|
@@ -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>
|