|
@@ -223,6 +223,7 @@ export default {
|
|
|
return (
|
|
|
<div class='operation-btns'>
|
|
|
{row.examineStatus == 'WAIT' ? <el-button type="text" onClick={() => {
|
|
|
+ this.workerForm.userId = row.userId
|
|
|
getMemberDetail({ userId: row.userId }).then(res => {
|
|
|
Object.assign(this.formData, res.data)
|
|
|
this.formDialogType = 0
|
|
@@ -302,7 +303,8 @@ export default {
|
|
|
memberAudit({
|
|
|
examineStatusEnum,
|
|
|
examineRemark: this.formData.examineRemark,
|
|
|
- id: this.formData.id
|
|
|
+ id: this.formData.id,
|
|
|
+ userId: this.workerForm.userId,
|
|
|
}).then(res => {
|
|
|
this.$message({ type: 'success', message: '审核成功!' })
|
|
|
this.formCancel()
|