相关方需求变革

1212-八项作业迁移
liujun 2023-12-18 19:58:52 +08:00
parent 2cb7496c7e
commit 9c2ffb8d67
2 changed files with 10 additions and 3 deletions

View File

@ -44,7 +44,8 @@
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-button type="primary" icon="el-icon-edit" size="mini" @click="handleShow(row)"></el-button> <el-button type="primary" icon="el-icon-edit" size="mini" @click="handleShow(row)"></el-button>
<el-button type="primary" icon="el-icon-s-claim" size="mini" @click="sendMessage([row])"></el-button> <el-button type="primary" icon="el-icon-s-claim" size="mini" @click="sendMessage([row])"></el-button>
<el-button v-if="false" type="success" icon="el-icon-edit" size="mini" @click="getUserInfo(row)"></el-button> <el-button v-if="false" type="success" icon="el-icon-edit" size="mini" @click="getUserInfo(row)">
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -148,7 +149,7 @@ export default {
{ {
KEYWORDS: this.KEYWORDS, KEYWORDS: this.KEYWORDS,
STATUS: this.STATUS, STATUS: this.STATUS,
EMPLOY_FLGY: '1' EMPLOY_FLAG: '1'
} }
).then((data) => { ).then((data) => {
this.listLoading = false this.listLoading = false
@ -168,6 +169,11 @@ export default {
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
requestFN(
'/trainingbatch/submitApplication', { xgf_user_ids: row.map(item => item.USER_ID).join(',') }
).then((data) => {
this.getList()
})
this.$message({ this.$message({
type: 'success', type: 'success',
message: '申请提交成功!' message: '申请提交成功!'

View File

@ -147,7 +147,8 @@ export default {
'/trainingbatch/userList?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page, '/trainingbatch/userList?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page,
{ {
KEYWORDS: this.KEYWORDS, KEYWORDS: this.KEYWORDS,
STATUS: this.STATUS STATUS: this.STATUS,
UN_EMPLOY_FLAG: '0'
} }
).then((data) => { ).then((data) => {
this.listLoading = false this.listLoading = false