From f13d1d01c3c3cbb075e63ae02be54bbb023c13d0 Mon Sep 17 00:00:00 2001 From: charles <981744753@qq.com> Date: 星期三, 24 七月 2024 16:50:22 +0800 Subject: [PATCH] feat:薪资薪酬核算模块 --- src/views/systemSetting/dataDictionary/index.vue | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/views/systemSetting/dataDictionary/index.vue b/src/views/systemSetting/dataDictionary/index.vue index a1c12dc..f7d4cfc 100644 --- a/src/views/systemSetting/dataDictionary/index.vue +++ b/src/views/systemSetting/dataDictionary/index.vue @@ -11,27 +11,27 @@ <div class="body-card"> <div class="list-view"> <div class="bottom-tabs" > - <div class="tab-pane" @click="getTab(0)" :style="{ - background: TabsIndex == 0 ? '#2a78fb' : '#F1F3F8', - color: TabsIndex == 0 ? '#fff' : '#666' - }"> - 搴勫彛绠$悊 - </div> <div class="tab-pane" @click="getTab(1)" :style="{ background: TabsIndex == 1 ? '#2a78fb' : '#F1F3F8', color: TabsIndex == 1 ? '#fff' : '#666' }"> - 杞﹂棿绠$悊 + 搴勫彛绠$悊 </div> <div class="tab-pane" @click="getTab(2)" :style="{ background: TabsIndex == 2 ? '#2a78fb' : '#F1F3F8', color: TabsIndex == 2 ? '#fff' : '#666' }"> - 甯﹀彿棰滆壊 + 杞﹂棿绠$悊 </div> <div class="tab-pane" @click="getTab(3)" :style="{ background: TabsIndex == 3 ? '#2a78fb' : '#F1F3F8', color: TabsIndex == 3 ? '#fff' : '#666' + }"> + 甯﹀彿棰滆壊 + </div> + <div class="tab-pane" @click="getTab(4)" :style="{ + background: TabsIndex == 4 ? '#2a78fb' : '#F1F3F8', + color: TabsIndex == 4 ? '#fff' : '#666' }"> 瑙勬牸 </div> @@ -73,7 +73,7 @@ computed: {}, data() { return { - TabsIndex:0, + TabsIndex:1, loading: false, productTableList: {}, editConfig:{ @@ -166,26 +166,26 @@ }, async getProductOrderInfo() { this.getData() - if (this.TabsIndex == 0) { + if (this.TabsIndex == 1) { // 搴勫彛绠$悊 this.editConfig.dialogTitleType="搴勫彛" this.tableBottomColumn = this.tableColumn // 琛ㄥご this.showBottomCol = this.showCol // 鍔ㄦ�佽〃澶� this.setBottomList() - }else if (this.TabsIndex == 1) { + }else if (this.TabsIndex == 2) { // 杞﹂棿绠$悊 this.editConfig.dialogTitleType="杞﹂棿" this.tableBottomColumn = this.workshopTableColumn this.showBottomCol = this.showWorkshopCol this.setBottomList() - } else if (this.TabsIndex == 2) { + } else if (this.TabsIndex == 3) { // 甯﹀彿棰滆壊 this.editConfig.dialogTitleType="甯﹀彿棰滆壊" this.tableBottomColumn = this.colorTableColumn this.showBottomCol = this.showColorCol this.setBottomList() - } else if (this.TabsIndex == 3) { + } else if (this.TabsIndex == 4) { // 瑙勬牸 this.editConfig.dialogTitleType="瑙勬牸" this.tableBottomColumn = this.specsTableColumn -- Gitblit v1.8.0