|
@@ -162,7 +162,7 @@ export default {
|
|
|
pageSize: 20,
|
|
|
clubID: this.$route.query.clubID,
|
|
|
userID: this.$route.query.userID,
|
|
|
- userorganizeID: this.$store.getters.organizeID,
|
|
|
+ userOrganizeID: this.$store.getters.organizeID,
|
|
|
linkName: '',
|
|
|
mobile: '',
|
|
|
status: '',
|
|
@@ -170,7 +170,7 @@ export default {
|
|
|
endAddTime: ''
|
|
|
},
|
|
|
editTemp: {
|
|
|
- userorganizeID: this.$store.getters.organizeID,
|
|
|
+ userOrganizeID: this.$store.getters.organizeID,
|
|
|
linkName: '',
|
|
|
mobile: ''
|
|
|
},
|
|
@@ -229,7 +229,7 @@ export default {
|
|
|
id: row.id,
|
|
|
clubID: row.clubID,
|
|
|
userID: row.userID,
|
|
|
- userorganizeID: this.$store.getters.organizeID
|
|
|
+ userOrganizeID: this.$store.getters.organizeID
|
|
|
}
|
|
|
},
|
|
|
handleConfirm() {
|
|
@@ -261,7 +261,7 @@ export default {
|
|
|
this.dialogStatus = 'untying'
|
|
|
this.dialogVisibleText = '确定解绑该运营人员吗?'
|
|
|
this.handleConfirmType = 'untying'
|
|
|
- this.editTemp = { userorganizeID: this.$store.getters.organizeID, id: row.id, clubID: row.clubID, userID: row.userID }
|
|
|
+ this.editTemp = { userOrganizeID: this.$store.getters.organizeID, id: row.id, clubID: row.clubID, userID: row.userID }
|
|
|
},
|
|
|
unbindOperators() {
|
|
|
const params = this.editTemp
|
|
@@ -302,7 +302,7 @@ export default {
|
|
|
handleCreateOperator() { // 保存
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- const params = Object.assign({ userorganizeID: this.$store.getters.organizeID, configFlag: 1 }, this.editTemp)
|
|
|
+ const params = Object.assign({ userOrganizeID: this.$store.getters.organizeID, configFlag: 1 }, this.editTemp)
|
|
|
this.loadingbut = true
|
|
|
this.loadingbuttext = '保存中...'
|
|
|
preservOperator(params).then(response => {
|
|
@@ -326,7 +326,7 @@ export default {
|
|
|
handlePreservOperator() { // 保存并生成邀请码
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- const Formobj = { userorganizeID: this.$store.getters.organizeID, configFlag: 2 }
|
|
|
+ const Formobj = { userOrganizeID: this.$store.getters.organizeID, configFlag: 2 }
|
|
|
const params = Object.assign(Formobj, this.editTemp)
|
|
|
preservOperator(params).then(response => {
|
|
|
this.dialogFormVisible = false
|