From d6704ad70b8e28d3dfe84b2e4f17f1c0aeb84c21 Mon Sep 17 00:00:00 2001 From: lkk <364857242@qq.com> Date: 星期四, 05 十二月 2024 16:16:34 +0800 Subject: [PATCH] 111 --- src/views/sampling/sampling/index.vue | 21 +++++++++++++-------- 1 files changed, 13 insertions(+), 8 deletions(-) diff --git a/src/views/sampling/sampling/index.vue b/src/views/sampling/sampling/index.vue index 8fcccea..7fe2876 100644 --- a/src/views/sampling/sampling/index.vue +++ b/src/views/sampling/sampling/index.vue @@ -189,11 +189,6 @@ </el-table> </div> <div style="width: 50%"> - <!-- :default-sort="{ prop: 'specimenType', order: 'ascending' }" :default-sort="{ prop: 'specimenType', order: 'ascending' }" - @sort-change="handleSortChange" - :span-method="objectSpanMethod" - @selection-change="handleChange" ref="tab1" - :row-class-name="tableRowClassName"--> <el-table v-loading="loading" :data="tableList" @@ -471,6 +466,7 @@ this.$nextTick(() => { this.$refs.inputName.focus(); }); + }, computed: { disabled() { @@ -599,6 +595,7 @@ this.$refs.tb.toggleRowSelection(this.samplingList[0], true); // this.fetchData(this.samplingList[0].tjNumber); }); + } this.total = response.data.total; this.loading1 = false; @@ -962,10 +959,18 @@ handleChange(selection) { // console.log(selection); - this.selectList = selection; - console.log(this.selectList, 5555); + // this.selectList = selection; + // console.log(this.selectList, 5555); + var array = selection; - this.ids = selection.map((item) => item.id); + this.ids = array.map((item) => item.id); + }, + selectAllRows() { + this.$nextTick(() => { + if (this.$refs.tab1) { + this.$refs.tab1.toggleAllSelection(); + } + }); }, // 绂侀�� -- Gitblit v1.8.0