|
@@ -487,6 +487,7 @@ export default {
|
|
|
},
|
|
|
// 模板表格数据
|
|
|
setting: [],
|
|
|
+ parentId: "",
|
|
|
chatSetting: [],
|
|
|
// 表单参数
|
|
|
form: {
|
|
@@ -501,6 +502,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.queryParams.parentId = this.$route.params && this.$route.params.parentId;
|
|
|
+ this.parentId = this.queryParams.parentId;
|
|
|
getUserList().then(response => {
|
|
|
this.userList = response.data;
|
|
|
console.log("this.userList", this.userList)
|
|
@@ -730,6 +732,7 @@ export default {
|
|
|
this.form.isAllCompanyUser = 2;
|
|
|
}
|
|
|
this.form.companyUserIds = this.companyUserIds.toString()
|
|
|
+ this.form.parentId = this.parentId
|
|
|
|
|
|
this.form.setting = JSON.stringify(this.setting)
|
|
|
this.form.chatSetting = JSON.stringify(this.chatSetting)
|