jiangyy 3 years ago
parent
commit
85d7ea9fdb
  1. 7
      epmet-oper-web/src/views/modules/yantai/editForm.vue

7
epmet-oper-web/src/views/modules/yantai/editForm.vue

@ -206,7 +206,12 @@ export default {
const url = "/gov/org/staff/addstaffv2"; const url = "/gov/org/staff/addstaffv2";
// console.log('this.peoForm', this.peoForm) // console.log('this.peoForm', this.peoForm)
// return false // return false
const { data, code, msg } = await requestPost(url, this.peoForm); let params = {
customerId: this.customerId,
...this.peoForm
};
const { data, code, msg } = await requestPost(url, params);
if (code === 0) { if (code === 0) {
this.$message.success("操作成功"); this.$message.success("操作成功");

Loading…
Cancel
Save