|
@@ -73,6 +73,19 @@
|
|
|
></reply-result>
|
|
></reply-result>
|
|
|
|
|
|
|
|
<register ref="register" :info="formData" @submit="submit" @uploadAttement="uploadAttement"></register>
|
|
<register ref="register" :info="formData" @submit="submit" @uploadAttement="uploadAttement"></register>
|
|
|
|
|
+ <register-payment
|
|
|
|
|
+ ref="registerPayment"
|
|
|
|
|
+ :info="formData"
|
|
|
|
|
+ @submit="submit"
|
|
|
|
|
+ @uploadAttement="uploadAttement"
|
|
|
|
|
+ ></register-payment>
|
|
|
|
|
+ <register-complate
|
|
|
|
|
+ ref="registerComplate"
|
|
|
|
|
+ :info="formData"
|
|
|
|
|
+ @submit="submit"
|
|
|
|
|
+ @uploadAttement="uploadAttement"
|
|
|
|
|
+ ></register-complate>
|
|
|
|
|
+ <annual-fee ref="annualFee" :info="formData" @submit="submit" @uploadAttement="uploadAttement"></annual-fee>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
<script>
|
|
<script>
|
|
@@ -90,6 +103,9 @@ import ReplyBack from '../components/domesticPatent/ReplyBack.vue';
|
|
|
import ReplySubmissions from '../components/domesticPatent/replySubmissions.vue';
|
|
import ReplySubmissions from '../components/domesticPatent/replySubmissions.vue';
|
|
|
import ReplyResult from '../components/domesticPatent/ReplyResult.vue';
|
|
import ReplyResult from '../components/domesticPatent/ReplyResult.vue';
|
|
|
import Register from '../components/domesticPatent/Register.vue';
|
|
import Register from '../components/domesticPatent/Register.vue';
|
|
|
|
|
+import RegisterPayment from '../components/domesticPatent/RegisterPayment.vue';
|
|
|
|
|
+import RegisterComplate from '../components/domesticPatent/RegisterComplate.vue';
|
|
|
|
|
+import AnnualFee from '../components/domesticPatent/AnnualFee.vue';
|
|
|
export default {
|
|
export default {
|
|
|
name: 'DomesticPatentEdit',
|
|
name: 'DomesticPatentEdit',
|
|
|
mixins: [domesticPatent],
|
|
mixins: [domesticPatent],
|
|
@@ -113,7 +129,11 @@ export default {
|
|
|
return this.workflowFormatter('', '', this.formData.workflow);
|
|
return this.workflowFormatter('', '', this.formData.workflow);
|
|
|
},
|
|
},
|
|
|
user() {
|
|
user() {
|
|
|
- if (this.formData.workflow === 'PENDING_REVIEW') {
|
|
|
|
|
|
|
+ if (
|
|
|
|
|
+ this.formData.workflow === 'PENDING_REVIEW' ||
|
|
|
|
|
+ this.formData.workflow === 'PAYMENT_REGISTER' ||
|
|
|
|
|
+ this.formData.workflow === 'ANNUAL_FEE'
|
|
|
|
|
+ ) {
|
|
|
return '客户经理';
|
|
return '客户经理';
|
|
|
} else if (this.formData.workflow === 'REPLY_SUBMISSIONS') {
|
|
} else if (this.formData.workflow === 'REPLY_SUBMISSIONS') {
|
|
|
if (this.formData.isClientReady) {
|
|
if (this.formData.isClientReady) {
|
|
@@ -228,6 +248,12 @@ export default {
|
|
|
this.$refs.replyResult.show = true;
|
|
this.$refs.replyResult.show = true;
|
|
|
} else if (this.formData.workflow === 'PENDING_REGISTER') {
|
|
} else if (this.formData.workflow === 'PENDING_REGISTER') {
|
|
|
this.$refs.register.show = true;
|
|
this.$refs.register.show = true;
|
|
|
|
|
+ } else if (this.formData.workflow === 'PAYMENT_REGISTER') {
|
|
|
|
|
+ this.$refs.registerPayment.show = true;
|
|
|
|
|
+ } else if (this.formData.workflow === 'REGISTER') {
|
|
|
|
|
+ this.$refs.registerComplate.show = true;
|
|
|
|
|
+ } else if (this.formData.workflow === 'ANNUAL_FEE') {
|
|
|
|
|
+ this.$refs.annualFee.show = true;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
@@ -244,7 +270,10 @@ export default {
|
|
|
ReplyBack,
|
|
ReplyBack,
|
|
|
ReplySubmissions,
|
|
ReplySubmissions,
|
|
|
ReplyResult,
|
|
ReplyResult,
|
|
|
- Register
|
|
|
|
|
|
|
+ Register,
|
|
|
|
|
+ RegisterPayment,
|
|
|
|
|
+ RegisterComplate,
|
|
|
|
|
+ AnnualFee
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|