From b26793c90bb9aa7b51380c7b371886a383fa0853 Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期一, 09 十二月 2024 12:12:58 +0800 Subject: [PATCH] 项目保存添加存草稿 --- src/views/projectEngineering/projectLibrary/projectDetails.vue | 83 +++++++++++++++++++++++------------------ 1 files changed, 46 insertions(+), 37 deletions(-) diff --git a/src/views/projectEngineering/projectLibrary/projectDetails.vue b/src/views/projectEngineering/projectLibrary/projectDetails.vue index 6494775..46e1b6b 100644 --- a/src/views/projectEngineering/projectLibrary/projectDetails.vue +++ b/src/views/projectEngineering/projectLibrary/projectDetails.vue @@ -1,5 +1,5 @@ <template> - <el-card class="card-container" > + <el-card class="card-container"> <div class="flex-container mb-4"> <el-tabs v-model="currentTab" @tab-click="handleClick" v-show="isShow"> <el-tab-pane @@ -24,7 +24,16 @@ class="full-width custom-height" /> <div v-if="!disabled" class="button-container"> - <el-button class="save-button" type="primary" @click="submit">淇濆瓨</el-button> + <el-button + v-if="componentName.name == 'BasicInfo'" + class="save-button" + type="primary" + @click="submit(0)" + >鑽夌</el-button + > + <el-button class="save-button" type="primary" @click="submit(1)" + >淇濆瓨</el-button + > <el-button class="reset-button" @click="reset">閲嶇疆</el-button> <!-- <el-button v-else class="cancel-button" @click="cancel">鍙栨秷</el-button> --> </div> @@ -32,53 +41,53 @@ </template> <script> -import BasicInfo from '@/views/projectEngineering/projectLibrary/component/BasicInfo'; -import InvestInfo from '@/views/projectEngineering/projectLibrary/component/InvestInfo'; -import InvestmentFunds from '@/views/projectEngineering/projectLibrary/component/investmentFunds'; -import LegalPerson from '@/views/projectEngineering/projectLibrary/component/legalPerson'; -import PolicyInfo from '@/views/projectEngineering/projectLibrary/component/PolicyInfo'; -import DocumentsInfo from '@/views/projectEngineering/projectLibrary/component/DocumentsInfo'; +import BasicInfo from "@/views/projectEngineering/projectLibrary/component/BasicInfo"; +import InvestInfo from "@/views/projectEngineering/projectLibrary/component/InvestInfo"; +import InvestmentFunds from "@/views/projectEngineering/projectLibrary/component/investmentFunds"; +import LegalPerson from "@/views/projectEngineering/projectLibrary/component/legalPerson"; +import PolicyInfo from "@/views/projectEngineering/projectLibrary/component/PolicyInfo"; +import DocumentsInfo from "@/views/projectEngineering/projectLibrary/component/DocumentsInfo"; export default { - name: 'ProjectDetails', + name: "ProjectDetails", data() { return { isShow: false, - currentTab: '椤圭洰绠$悊鍩虹淇℃伅', + currentTab: "椤圭洰绠$悊鍩虹淇℃伅", disabled: false, - projectForm:{}, + projectForm: {}, componentName: BasicInfo, TABS_DATA: [ { - label: '椤圭洰绠$悊鍩虹淇℃伅', - value: '椤圭洰绠$悊鍩虹淇℃伅', - componentName: BasicInfo + label: "椤圭洰绠$悊鍩虹淇℃伅", + value: "椤圭洰绠$悊鍩虹淇℃伅", + componentName: BasicInfo, }, { - label: '鎶曡祫绠$悊鍩虹淇℃伅', - value: '鎶曡祫绠$悊鍩虹淇℃伅', - componentName: InvestInfo + label: "鎶曡祫绠$悊鍩虹淇℃伅", + value: "鎶曡祫绠$悊鍩虹淇℃伅", + componentName: InvestInfo, }, { - label: '椤圭洰鎶曡祫鍙婅祫閲戞潵婧�', - value: '椤圭洰鎶曡祫鍙婅祫閲戞潵婧�', - componentName: InvestmentFunds + label: "椤圭洰鎶曡祫鍙婅祫閲戞潵婧�", + value: "椤圭洰鎶曡祫鍙婅祫閲戞潵婧�", + componentName: InvestmentFunds, }, { - label: '椤圭洰(娉曚汉)鍗曚綅鐧昏淇℃伅', - value: '椤圭洰(娉曚汉)鍗曚綅鐧昏淇℃伅', - componentName: LegalPerson + label: "椤圭洰(娉曚汉)鍗曚綅鐧昏淇℃伅", + value: "椤圭洰(娉曚汉)鍗曚綅鐧昏淇℃伅", + componentName: LegalPerson, }, { - label: '鎶曡祫椤圭洰浜т笟鏀跨瓥绗﹀悎鎯呭喌', - value: '鎶曡祫椤圭洰浜т笟鏀跨瓥绗﹀悎鎯呭喌', - componentName: PolicyInfo + label: "鎶曡祫椤圭洰浜т笟鏀跨瓥绗﹀悎鎯呭喌", + value: "鎶曡祫椤圭洰浜т笟鏀跨瓥绗﹀悎鎯呭喌", + componentName: PolicyInfo, }, { - label: '鐩稿叧鏂囦功', - value: '鐩稿叧鏂囦功', - componentName: DocumentsInfo - } + label: "鐩稿叧鏂囦功", + value: "鐩稿叧鏂囦功", + componentName: DocumentsInfo, + }, ], childRef: null, }; @@ -88,29 +97,29 @@ this.isShow = newValue; }, handleClick(tabTarget) { - this.componentName = this.TABS_DATA[tabTarget.index].componentName; + this.componentName = this.TABS_DATA[tabTarget.index].componentName; + }, changeTable(index) { this.componentName = this.TABS_DATA[index].componentName; this.currentTab = this.TABS_DATA[index].value; }, - submit() { - this.$refs.childRef.submit(); + submit(usedStatus) { + this.$refs.childRef.submit(usedStatus); }, reset() { this.$refs.childRef.reset(); }, }, mounted() { - if(this.$route.query.disabled){ - this.disabled = true + if (this.$route.query.disabled) { + this.disabled = true; } - } + }, }; </script> <style scoped> - ::v-deep .el-tabs__nav-wrap::after { background-color: rgba(0, 0, 0, 0) !important; } -- Gitblit v1.8.0