From ac6d1295be85d51f77f8da4d77a3abe717a6dcb7 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期四, 13 三月 2025 16:46:06 +0800 Subject: [PATCH] 隐藏工时管理部分功能 --- src/views/standard/standardLibrary/index.vue | 57 ++++++--------------------------------------------------- 1 files changed, 6 insertions(+), 51 deletions(-) diff --git a/src/views/standard/standardLibrary/index.vue b/src/views/standard/standardLibrary/index.vue index dab88fd..d6c8435 100644 --- a/src/views/standard/standardLibrary/index.vue +++ b/src/views/standard/standardLibrary/index.vue @@ -255,6 +255,7 @@ </el-row> <el-row v-loading="tableLoad" class="standard_table"> <el-table ref="standard" :data="standardList" class="el-table" header-row-class-name="header-class" height="220" + :header-cell-style="{ background: '#f8f8f9', color: '#515a6e' }" border highlight-current-row style="width: 100%; height: 220px !important" tooltip-effect="dark" @row-click="rowClick"> <el-table-column label="鏍囧噯缂栧彿" prop="code" show-overflow-tooltip width="200"> @@ -270,7 +271,8 @@ </el-row> <el-row v-loading="tableLoad2" class="product_table"> <el-table id="templateParamTable" ref="productTable" v-loading="productTableLoading" :data="productList" - :fit="true" :row-class-name="tableRowClassName" border class="productTable" + :header-cell-style="{ background: '#f8f8f9', color: '#515a6e' }" border + :fit="true" :row-class-name="tableRowClassName" class="productTable" header-row-class-name="header-class" height="100%" row-key="id" stripe style="width: 100%" tooltip-effect="dark" @select="upProductSelect" @selection-change="handleSelectionChange" @select-all="handleAll"> @@ -411,7 +413,8 @@ </el-dialog> <el-dialog :close-on-click-modal="false" :visible.sync="sectionUpDia" title="鍖洪棿璁剧疆" width="80%"> <div class="body" style="padding: 5px 0"> - <el-table :data="sectionList" border height="350px" style="width: 100%"> + <el-table :data="sectionList" border height="350px" style="width: 100%" + :header-cell-style="{ background: '#f8f8f9', color: '#515a6e' }"> <el-table-column align="center" label="搴忓彿" type="index" width="70"> </el-table-column> <el-table-column align="center" label="鍖洪棿"> @@ -878,10 +881,6 @@ this.addLoad = true; addStandardTree(this.addOb) .then((res) => { - if (res.code === 201) { - this.addLoad = false; - return; - } this.$message.success("娣诲姞鎴愬姛"); this.addDia = false; this.list @@ -915,10 +914,6 @@ this.updateLoad = true; updateStandardTree(this.addOb) .then((res) => { - if (res.code === 201) { - this.updateLoad = false; - return; - } this.$message.success("娣诲姞鎴愬姛"); this.$tab.refreshPage(); // this.selectStandardTreeList(); @@ -952,10 +947,6 @@ ask: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -966,10 +957,6 @@ tell: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -981,10 +968,6 @@ methodS: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -996,10 +979,6 @@ radius: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -1010,10 +989,6 @@ price: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -1024,10 +999,6 @@ manHour: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -1038,10 +1009,6 @@ templateId: value, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); }); }, @@ -1122,11 +1089,7 @@ state: row.state, }), }).then((res) => { - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } - // this.$message.success('宸蹭繚瀛�') + this.$message.success('宸蹭繚瀛�') }); }, filterHandler(value) { @@ -1276,10 +1239,6 @@ }), }).then((res) => { this.sectionLoad = false; - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); this.sectionUpDia = false; }); @@ -1298,10 +1257,6 @@ }, }).then((res) => { this.sectionLoad = false; - if (res.code == 201) { - this.$message.error("鏈繚瀛�"); - return; - } this.$message.success("宸蹭繚瀛�"); this.sectionUpDia = false; this.currentPage0 = 1; -- Gitblit v1.9.3