From 9ceddcd1ae23033134d4e32b02eaf272e4c77151 Mon Sep 17 00:00:00 2001
From: haoxuan <haoxuan>
Date: 星期日, 28 四月 2024 11:46:47 +0800
Subject: [PATCH] 配置满勤奖的获取接口联调,数据处理+保存配置满勤的接口联调
---
src/views/systemSetting/workshopManage/index.vue | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/views/systemSetting/workshopManage/index.vue b/src/views/systemSetting/workshopManage/index.vue
index 1f1d1dc..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()
},
// 鏂板
@@ -187,7 +188,7 @@
this.editConfig.infomitton = {
...row,
workshop:{
- ID:row.workshopNumber,
+ number:row.workshopNumber,
name:row.workshopName
}
}
@@ -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