From bf4cb195c34e79dae5576b21a215118b7ef1357f Mon Sep 17 00:00:00 2001 From: yz3456 <2753272399@qq.com> Date: 星期四, 11 七月 2024 21:33:39 +0800 Subject: [PATCH] 修改了bug和用户管理配偶显示问题 --- ruoyi-ui/src/views/meeting/webcast.vue | 22 +++++++++++++++++----- 1 files changed, 17 insertions(+), 5 deletions(-) diff --git a/ruoyi-ui/src/views/meeting/webcast.vue b/ruoyi-ui/src/views/meeting/webcast.vue index 88e7dd3..b5907dc 100644 --- a/ruoyi-ui/src/views/meeting/webcast.vue +++ b/ruoyi-ui/src/views/meeting/webcast.vue @@ -58,7 +58,7 @@ <el-row :gutter="0" v-loading="loading"> <el-col :span="4" v-for="(item,i) in webcastList"> - <div class="module" @click="toLook"> + <div class="module" @click="toLook(item.id)"> <div class="video"> 66666666 </div> @@ -107,6 +107,16 @@ <el-input v-model="formDat.meetingTitle" placeholder="璇疯緭鍏ヤ細璁爣棰�" clearable :style="{width: '100%'}"> </el-input> </el-form-item> --> + + <el-form-item label="鎴块棿鍙�" prop="roomId"> + <el-input v-model="formDat.roomId" placeholder="璇疯緭鍏ユ埧闂村彿" clearable :style="{width: '100%'}"> + </el-input> + </el-form-item> + + <el-form-item label="鏈�澶氫汉鏁�" prop="maxPerson"> + <el-input v-model="formDat.maxPerson" placeholder="璇疯緭鍏ユ渶澶氫汉鏁�" clearable :style="{width: '100%'}"> + </el-input> + </el-form-item> <el-form-item label="浼氳鏍囬" prop="title"> <el-input v-model="formDat.title" placeholder="璇疯緭鍏ヤ細璁爣棰�" clearable :style="{width: '100%'}"> @@ -199,7 +209,9 @@ applyPerson: undefined, contactPerson: undefined, contactPhone: undefined, - createTime: undefined + createTime: undefined, + roomId:undefined, + maxPerson:undefined }, } @@ -256,15 +268,15 @@ this.queryParams.happenEndTime = this.dateRange.length > 0 && this.dateRange[1] listWebcast(this.queryParams).then(response => { this.webcastList = response.data.data; - // console.log(this.webcastList,'webcastListwebcastListwebcastList') + console.log(this.webcastList,'webcastListwebcastListwebcastList') this.total = response.data.total; this.loading = false; } ); }, - toLook() { - this.$router.push('/meeting/webcast/Home/') + toLook(id) { + this.$router.push('/meeting/webcast/Home/' + id) } } -- Gitblit v1.9.1