From 3c15e684416e06a7351eeb2d756e5be778a893fd Mon Sep 17 00:00:00 2001 From: jinlin <jinlin> Date: 星期三, 17 七月 2024 10:37:23 +0800 Subject: [PATCH] 修改 --- web/src/views/modules/taskReliability/TaskBinoParam.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/views/modules/taskReliability/TaskBinoParam.vue b/web/src/views/modules/taskReliability/TaskBinoParam.vue index 8501078..72db6a0 100644 --- a/web/src/views/modules/taskReliability/TaskBinoParam.vue +++ b/web/src/views/modules/taskReliability/TaskBinoParam.vue @@ -1,6 +1,6 @@ <template> <zt-dialog ref="dialog" column="3" title="浜岄」鍙傛暟" append-to-body :editAble="false" :hasConfirm="false"> - <zt-table-wraper ref="tableObj" query-url="/taskReliability/TaskBinoParam/page" delete-url="/taskReliability/TaskBinoParam" + <zt-table-wraper :paging='false' ref="tableObj" query-url="/taskReliability/TaskBinoParam/page" delete-url="/taskReliability/TaskBinoParam" v-slot="{ table }" > <el-form :inline="true" :model="dataForm" @keyup.enter.native="table.query()"> <el-form-item> @@ -14,10 +14,10 @@ height="600px" border @selection-change="table.selectionChangeHandle" @cell-click="handleCellClick"> <!-- <el-table-column type="selection" width="40"/>--> - <el-table-column prop="phaseName" label="闃舵" align="center" width="100"/> + <el-table-column prop="phaseName" label="闃舵" align="center" /> <el-table-column prop="operatConditName" label="宸ュ喌" align="center"/> <el-table-column prop="productName" label="浜岄」鍒嗗竷璁惧" align="center"/> - <el-table-column prop="successRate" label="鎴愬姛鐜�" align="right"> + <el-table-column prop="successRate" label="鎴愬姛鐜�" align="right" width="100"> <template slot-scope="scope"> <span v-if="editingCell && editingCell.row === scope.row && editingCell.column.property === scope.column.property"> @@ -28,7 +28,7 @@ <span v-else>{{scope.row.successRate}}</span> </template> </el-table-column> - <el-table-column prop="simulatTimes" label="浠跨湡娆℃暟" align="center"> + <el-table-column prop="simulatTimes" label="浠跨湡娆℃暟" align="center" width="100"> <template slot-scope="scope"> <span v-if="editingCell && editingCell.row === scope.row && editingCell.column.property === scope.column.property"> @@ -39,7 +39,7 @@ <span v-else>{{scope.row.simulatTimes}}</span> </template> </el-table-column> - <el-table-column prop="successTimes" label="鎴愬姛娆℃暟" align="center"> + <el-table-column prop="successTimes" label="鎴愬姛娆℃暟" align="center" width="100"> <template slot-scope="scope"> <span v-if="editingCell && editingCell.row === scope.row && editingCell.column.property === scope.column.property"> -- Gitblit v1.9.1