|
@@ -1310,6 +1310,7 @@ export default {
|
|
|
this.roomPasswordForm.liveId = row.liveId
|
|
this.roomPasswordForm.liveId = row.liveId
|
|
|
this.roomPasswordForm.liveName = row.liveName
|
|
this.roomPasswordForm.liveName = row.liveName
|
|
|
this.roomPasswordForm.roomPassword = row.roomPassword || ''
|
|
this.roomPasswordForm.roomPassword = row.roomPassword || ''
|
|
|
|
|
+ this.roomPasswordForm.startTime = row.startTime || ''
|
|
|
this.roomPasswordDialog.open = true
|
|
this.roomPasswordDialog.open = true
|
|
|
},
|
|
},
|
|
|
// 提交房间密码
|
|
// 提交房间密码
|
|
@@ -1318,7 +1319,8 @@ export default {
|
|
|
if (valid) {
|
|
if (valid) {
|
|
|
const params = {
|
|
const params = {
|
|
|
liveId: this.roomPasswordForm.liveId,
|
|
liveId: this.roomPasswordForm.liveId,
|
|
|
- roomPassword: this.roomPasswordForm.roomPassword || ''
|
|
|
|
|
|
|
+ roomPassword: this.roomPasswordForm.roomPassword || '',
|
|
|
|
|
+ startTime: this.roomPasswordForm.startTime || '',
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
updateLive(params).then(response => {
|
|
updateLive(params).then(response => {
|