From 544f30e28a3d8ea41e5ea8c0add2ce77c1b6fb1a Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期二, 07 五月 2024 17:48:31 +0800 Subject: [PATCH] 工种管理模块 编辑工种接口400的问题修改+增加如果启用不达标保底,则必须输入保底工资的逻辑 --- src/views/systemSetting/workshopManage/index.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/views/systemSetting/workshopManage/index.vue b/src/views/systemSetting/workshopManage/index.vue index 997ccbb..5d500cf 100644 --- a/src/views/systemSetting/workshopManage/index.vue +++ b/src/views/systemSetting/workshopManage/index.vue @@ -118,6 +118,7 @@ // 鎼滅储 onFilterSearch(searchText) { this.getDataParams.keyWord = searchText, + this.pagerOptions.currPage = 1; this.getData() }, // 鏂板 @@ -203,11 +204,12 @@ }).then(() => { deleteWorkshopManage({ id: row.ID }).then((res) => { if (res && res.code === 200) { - this.getData() this.$message({ type: 'success', message: '鍒犻櫎鎴愬姛!' }); + this.pagerOptions.currPage = 1; + this.getData() } }) }).catch(() => { -- Gitblit v1.8.0