|
@@ -1,241 +1,63 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="edit-view">
|
|
<div class="edit-view">
|
|
|
<page-title>
|
|
<page-title>
|
|
|
- <el-button @click="$router.go(-1)">取消</el-button>
|
|
|
|
|
- <el-button @click="del" :loading="$store.state.fetchingData" type="danger" v-if="formData.id">
|
|
|
|
|
- 删除
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button @click="onSave" :loading="$store.state.fetchingData" type="primary">保存</el-button>
|
|
|
|
|
|
|
+ <template slot="title"> 专利详情:{{ formData.name }} </template>
|
|
|
</page-title>
|
|
</page-title>
|
|
|
- <div class="edit-view__content-wrapper">
|
|
|
|
|
- <div class="edit-view__content-section">
|
|
|
|
|
- <divider />
|
|
|
|
|
- <el-form
|
|
|
|
|
- :model="formData"
|
|
|
|
|
- :rules="rules"
|
|
|
|
|
- ref="form"
|
|
|
|
|
- label-width="178px"
|
|
|
|
|
- label-position="right"
|
|
|
|
|
- size="small"
|
|
|
|
|
- style="max-width: 500px;"
|
|
|
|
|
- >
|
|
|
|
|
- <el-form-item prop="workflow" label="流程">
|
|
|
|
|
- <el-select v-model="formData.workflow" clearable filterable placeholder="请选择">
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="item in workflowOptions"
|
|
|
|
|
- :key="item.value"
|
|
|
|
|
- :label="item.label"
|
|
|
|
|
- :value="item.value"
|
|
|
|
|
- >
|
|
|
|
|
- </el-option>
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applicantUscc" label="申请人统一社会信用代码">
|
|
|
|
|
- <el-input v-model="formData.applicantUscc"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="inventorIdno" label="第一发明人身份证">
|
|
|
|
|
- <el-input v-model="formData.inventorIdno"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="deduction" label="是否请求费减">
|
|
|
|
|
- <el-switch v-model="formData.deduction"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="essentialReview" label="是否请求实质审查">
|
|
|
|
|
- <el-switch v-model="formData.essentialReview"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="publicInAdvance" label="是否申请提前公开">
|
|
|
|
|
- <el-switch v-model="formData.publicInAdvance"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="chapterAcceptanceNotice" label="是否申请红章受理通知书">
|
|
|
|
|
- <el-switch v-model="formData.chapterAcceptanceNotice"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="chapterPaymentNotice" label="是否申请红章缴费通知书">
|
|
|
|
|
- <el-switch v-model="formData.chapterPaymentNotice"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="decideReply" label="是否决定答复">
|
|
|
|
|
- <el-switch v-model="formData.decideReply"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="isClientReady" label="准备答复意见">
|
|
|
|
|
- <el-switch v-model="formData.isClientReady"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="replyPassed" label="是否通过答复">
|
|
|
|
|
- <el-switch v-model="formData.replyPassed"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="registerNotice" label="办登通知日">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.registerNotice"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="registerEndDate" label="办登截止日">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.registerEndDate"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="feeRemark" label="费用备注">
|
|
|
|
|
- <el-input v-model="formData.feeRemark"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="payment" label="是否已缴费">
|
|
|
|
|
- <el-switch v-model="formData.payment"></el-switch>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="annualFee" label="年费">
|
|
|
|
|
- <el-input-number type="number" v-model="formData.annualFee"></el-input-number>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="feePaymentPeriod" label="年费支付期限">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.feePaymentPeriod"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="bill" label="账单">
|
|
|
|
|
- <el-input v-model="formData.bill"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
|
+ <el-tabs class="edit-tabs" v-model="activeName" @tab-click="tabClick">
|
|
|
|
|
+ <div class="right-btns">
|
|
|
|
|
+ <!-- <el-button type="primary" size="small">新增答复</el-button> -->
|
|
|
|
|
+ <el-button type="primary" size="small" @click="$refs.feeAdd.init()">新增费用</el-button>
|
|
|
|
|
+ <el-button type="primary" size="small" @click="$refs.attachmentAdd.show = true">新增附件</el-button>
|
|
|
|
|
+ <!-- <el-button type="primary" size="small">分案/接续流程</el-button> -->
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="tips" v-if="nowStatus && formData.applyStatus !== 'COMPLETED'">
|
|
|
|
|
+ <div class="tips-text">
|
|
|
|
|
+ <span class="name">当前流程节点</span>
|
|
|
|
|
+ <span class="val">{{ nowStatus }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="tips-text">
|
|
|
|
|
+ <span class="name">处理人</span>
|
|
|
|
|
+ <span class="val">{{ user }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <el-form-item prop="name" label="专利名称">
|
|
|
|
|
- <el-input v-model="formData.name"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="status" label="状态">
|
|
|
|
|
- <el-select v-model="formData.status" clearable filterable placeholder="请选择">
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="item in statusOptions"
|
|
|
|
|
- :key="item.value"
|
|
|
|
|
- :label="item.label"
|
|
|
|
|
- :value="item.value"
|
|
|
|
|
- >
|
|
|
|
|
- </el-option>
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="type" label="专利类型">
|
|
|
|
|
- <el-select v-model="formData.type" clearable filterable placeholder="请选择">
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="item in typeOptions"
|
|
|
|
|
- :key="item.value"
|
|
|
|
|
- :label="item.label"
|
|
|
|
|
- :value="item.value"
|
|
|
|
|
- >
|
|
|
|
|
- </el-option>
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="uwNo" label="寰球案号">
|
|
|
|
|
- <el-input v-model="formData.uwNo"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="clientPartnerId" label="客户id">
|
|
|
|
|
- <el-input-number type="number" v-model="formData.clientPartnerId"></el-input-number>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="supplierPartnerId" label="供应商">
|
|
|
|
|
- <el-input-number type="number" v-model="formData.supplierPartnerId"></el-input-number>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="supplierNo" label="供应商案号">
|
|
|
|
|
- <el-input v-model="formData.supplierNo"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="supplierSubmitPeriod" label="供应商提交期限">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.supplierSubmitPeriod"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applicantName" label="申请人名称">
|
|
|
|
|
- <el-input v-model="formData.applicantName"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applicantEnName" label="申请人英文名称">
|
|
|
|
|
- <el-input v-model="formData.applicantEnName"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applicantAddress" label="申请人地址">
|
|
|
|
|
- <el-input v-model="formData.applicantAddress"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applicantEnAddress" label="申请人英文地址">
|
|
|
|
|
- <el-input v-model="formData.applicantEnAddress"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="inventorName" label="发明人名称">
|
|
|
|
|
- <el-input v-model="formData.inventorName"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="inventorEnName" label="发明人英文名称">
|
|
|
|
|
- <el-input v-model="formData.inventorEnName"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="priorityNo" label="优先权号">
|
|
|
|
|
- <el-input v-model="formData.priorityNo"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="priorityDate" label="优先权日">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.priorityDate"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="priorityCountry" label="优先权国别">
|
|
|
|
|
- <el-input v-model="formData.priorityCountry"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="submitPeriod" label="提交期限/内部期限">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.submitPeriod"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="officialPeriod" label="官方期限">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.officialPeriod"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applyNo" label="申请号">
|
|
|
|
|
- <el-input v-model="formData.applyNo"></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item prop="applyDate" label="申请日">
|
|
|
|
|
- <el-date-picker
|
|
|
|
|
- v-model="formData.applyDate"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- placeholder="选择日期"
|
|
|
|
|
- >
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
|
+ <div class="tips-text">
|
|
|
|
|
+ <span class="name">处理截止日期</span>
|
|
|
|
|
+ <span class="val">无</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <el-form-item class="form-submit">
|
|
|
|
|
- <el-button @click="onSave" :loading="saving" size="default" type="primary">保存 </el-button>
|
|
|
|
|
- <el-button @click="onDelete" :loading="saving" size="default" type="danger" v-if="formData.id"
|
|
|
|
|
- >删除
|
|
|
|
|
- </el-button>
|
|
|
|
|
- <el-button @click="$router.go(-1)" size="default">取消</el-button>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-form>
|
|
|
|
|
|
|
+ <el-button @click="action" type="text" size="small">立即处理</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
- </div>
|
|
|
|
|
|
|
+ <el-tab-pane label="基本信息" name="first">
|
|
|
|
|
+ <base-info ref="base" :info.sync="formData" @submit="submit"></base-info>
|
|
|
|
|
+ </el-tab-pane>
|
|
|
|
|
+ <el-tab-pane label="附件列表" name="second">
|
|
|
|
|
+ <attachment-list ref="attachmentList" :info="formData"></attachment-list>
|
|
|
|
|
+ </el-tab-pane>
|
|
|
|
|
+ <el-tab-pane label="费用信息" name="third">
|
|
|
|
|
+ <fee-list ref="feeList" :info="formData"></fee-list>
|
|
|
|
|
+ </el-tab-pane>
|
|
|
|
|
+ <!-- <el-tab-pane label="流程信息" name="fourth"></el-tab-pane> -->
|
|
|
|
|
+ </el-tabs>
|
|
|
|
|
+
|
|
|
|
|
+ <attachment-add ref="attachmentAdd" :info="formData" @refreash="init"></attachment-add>
|
|
|
|
|
+
|
|
|
|
|
+ <fee-add ref="feeAdd" isLogoPatent :info="formData" @refreash="init"></fee-add>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+import BaseInfo from '../components/domesticPatent/BaseInfo.vue';
|
|
|
|
|
+import attachmentList from '../components/AttachmentList.vue';
|
|
|
|
|
+import domesticPatent from '@/mixins/domesticPatent';
|
|
|
|
|
+import AttachmentAdd from '../components/AttachmentAdd.vue';
|
|
|
|
|
+import FeeList from '../components/fee/FeeList.vue';
|
|
|
|
|
+import FeeAdd from '../components/fee/FeeAdd.vue';
|
|
|
export default {
|
|
export default {
|
|
|
name: 'DomesticPatentEdit',
|
|
name: 'DomesticPatentEdit',
|
|
|
|
|
+ mixins: [domesticPatent],
|
|
|
created() {
|
|
created() {
|
|
|
if (this.$route.query.id) {
|
|
if (this.$route.query.id) {
|
|
|
- this.$http
|
|
|
|
|
- .get('domesticPatent/getDTO/' + this.$route.query.id)
|
|
|
|
|
- .then(res => {
|
|
|
|
|
- this.formData = res;
|
|
|
|
|
- })
|
|
|
|
|
- .catch(e => {
|
|
|
|
|
- console.log(e);
|
|
|
|
|
- this.$message.error(e.error);
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ this.getInfo();
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
@@ -243,30 +65,54 @@ export default {
|
|
|
saving: false,
|
|
saving: false,
|
|
|
formData: {},
|
|
formData: {},
|
|
|
rules: {},
|
|
rules: {},
|
|
|
- workflowOptions: [
|
|
|
|
|
- { label: '待添加供应商', value: 'ADD_SUPPLIERS' },
|
|
|
|
|
- { label: '待提交供应商材料', value: 'SUPPLIER_MATERIALS' },
|
|
|
|
|
- { label: '待维护案件', value: 'MAINTAIN_CASE' },
|
|
|
|
|
- { label: '待审查', value: 'PENDING_REVIEW' },
|
|
|
|
|
- { label: '待办登', value: 'PENDING_REGISTER' },
|
|
|
|
|
- { label: '办理登记', value: 'REGISTER' },
|
|
|
|
|
- { label: '待维护年费信息', value: 'ANNUAL_FEE' },
|
|
|
|
|
- { label: '已完成', value: 'COMPLETED' }
|
|
|
|
|
- ],
|
|
|
|
|
- statusOptions: [
|
|
|
|
|
- { label: '申请阶段', value: 'APPLY_STAGE' },
|
|
|
|
|
- { label: '审查阶段', value: 'REVIEW_STAGE' },
|
|
|
|
|
- { label: '授权阶段', value: 'GRANT_STAGE' },
|
|
|
|
|
- { label: '已完成', value: 'COMPLETED' }
|
|
|
|
|
- ],
|
|
|
|
|
- typeOptions: [
|
|
|
|
|
- { label: '发明专利', value: 'INVENTION' },
|
|
|
|
|
- { label: '实用新型专利', value: 'UTILITY_MODEL' },
|
|
|
|
|
- { label: '外观设计专利', value: 'APPEARANCE_DESIGN' }
|
|
|
|
|
- ]
|
|
|
|
|
|
|
+ clientPartnerIdOptions: [],
|
|
|
|
|
+ supplierPartnerIdOptions: [],
|
|
|
|
|
+ activeName: 'first'
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ nowStatus() {
|
|
|
|
|
+ return this.workflowFormatter('', '', this.formData.workflow);
|
|
|
|
|
+ },
|
|
|
|
|
+ user() {
|
|
|
|
|
+ if (this.formData.workflow === 'IS_CONTRACT') {
|
|
|
|
|
+ return '客户经理';
|
|
|
|
|
+ } else if (this.formData.workflow) {
|
|
|
|
|
+ return '项目经理';
|
|
|
|
|
+ } else {
|
|
|
|
|
+ return '';
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ getInfo() {
|
|
|
|
|
+ this.$http
|
|
|
|
|
+ .get('domesticPatent/getDTO/' + this.$route.query.id)
|
|
|
|
|
+ .then(res => {
|
|
|
|
|
+ this.formData = res;
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.init();
|
|
|
|
|
+ });
|
|
|
|
|
+ })
|
|
|
|
|
+ .catch(e => {
|
|
|
|
|
+ console.log(e);
|
|
|
|
|
+ this.$message.error(e.error);
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ init() {
|
|
|
|
|
+ if (this.activeName === 'first') {
|
|
|
|
|
+ this.$refs.base.init();
|
|
|
|
|
+ } else if (this.activeName === 'second') {
|
|
|
|
|
+ this.$refs.attachmentList.init();
|
|
|
|
|
+ } else if (this.activeName === 'third') {
|
|
|
|
|
+ this.$refs.feeList.init();
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ tabClick(tab) {
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.init();
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
onSave() {
|
|
onSave() {
|
|
|
this.$refs.form.validate(valid => {
|
|
this.$refs.form.validate(valid => {
|
|
|
if (valid) {
|
|
if (valid) {
|
|
@@ -276,16 +122,15 @@ export default {
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
- submit() {
|
|
|
|
|
- let data = { ...this.formData };
|
|
|
|
|
-
|
|
|
|
|
|
|
+ submit(info) {
|
|
|
|
|
+ let data = { ...info };
|
|
|
this.saving = true;
|
|
this.saving = true;
|
|
|
this.$http
|
|
this.$http
|
|
|
- .post('/domesticPatent/saveDTO', data, { body: 'json' })
|
|
|
|
|
|
|
+ .post('/domesticPatent/save', data, { body: 'json' })
|
|
|
.then(res => {
|
|
.then(res => {
|
|
|
this.saving = false;
|
|
this.saving = false;
|
|
|
this.$message.success('成功');
|
|
this.$message.success('成功');
|
|
|
- this.$router.go(-1);
|
|
|
|
|
|
|
+ this.getInfo();
|
|
|
})
|
|
})
|
|
|
.catch(e => {
|
|
.catch(e => {
|
|
|
console.log(e);
|
|
console.log(e);
|
|
@@ -308,8 +153,89 @@ export default {
|
|
|
this.$message.error((e || {}).error || '删除失败');
|
|
this.$message.error((e || {}).error || '删除失败');
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
|
|
+ },
|
|
|
|
|
+ uploadAttement(info) {
|
|
|
|
|
+ let data = { ...info };
|
|
|
|
|
+ if (!data.url) {
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ data.patentId = this.formData.id;
|
|
|
|
|
+ data.userId = this.$store.state.userInfo.id;
|
|
|
|
|
+ data.version = 1;
|
|
|
|
|
+ if (data.size) {
|
|
|
|
|
+ data.size += 'KB';
|
|
|
|
|
+ }
|
|
|
|
|
+ this.$http.post('/attachment/save', data, { body: 'json' });
|
|
|
|
|
+ },
|
|
|
|
|
+ action() {
|
|
|
|
|
+ if (this.formData.logoWorkflow === 'IS_CONTRACT') {
|
|
|
|
|
+ this.$refs.sign.show = true;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
+ },
|
|
|
|
|
+ components: {
|
|
|
|
|
+ BaseInfo,
|
|
|
|
|
+ attachmentList,
|
|
|
|
|
+ AttachmentAdd,
|
|
|
|
|
+ FeeList,
|
|
|
|
|
+ FeeAdd
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
-<style lang="less" scoped></style>
|
|
|
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
|
+.edit-tabs {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+
|
|
|
|
|
+ .right-btns {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ right: 20px;
|
|
|
|
|
+ top: -44px;
|
|
|
|
|
+ .el-button {
|
|
|
|
|
+ min-width: 100px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.tips {
|
|
|
|
|
+ .flex();
|
|
|
|
|
+ height: 40px;
|
|
|
|
|
+ background: tint(@warn, 68%);
|
|
|
|
|
+ border: 1px solid @warn;
|
|
|
|
|
+ margin: 20px 20px 0;
|
|
|
|
|
+ padding: 0 20px;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+
|
|
|
|
|
+ .tips-text {
|
|
|
|
|
+ margin-right: 60px;
|
|
|
|
|
+ .name {
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ color: #5e6166;
|
|
|
|
|
+ line-height: 22px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .val {
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ color: @warn;
|
|
|
|
|
+ line-height: 22px;
|
|
|
|
|
+ margin-left: 10px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .el-button {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ right: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|
|
|
|
|
+<style lang="less">
|
|
|
|
|
+.el-dialog {
|
|
|
|
|
+ .el-form {
|
|
|
|
|
+ .el-form-item {
|
|
|
|
|
+ &:last-child {
|
|
|
|
|
+ margin-top: 70px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|