From 1ae471941bbdf9dde5dba668d33acf415fc6ec07 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期一, 21 十月 2024 16:54:48 +0800 Subject: [PATCH] 最新版本541200007 --- admin/src/views/meeting/components/OperaBookingsWindow.vue | 35 ++++++++++++++++++++++------------- 1 files changed, 22 insertions(+), 13 deletions(-) diff --git a/admin/src/views/meeting/components/OperaBookingsWindow.vue b/admin/src/views/meeting/components/OperaBookingsWindow.vue index 7730505..3f5b2c7 100644 --- a/admin/src/views/meeting/components/OperaBookingsWindow.vue +++ b/admin/src/views/meeting/components/OperaBookingsWindow.vue @@ -4,6 +4,7 @@ :visible.sync="visible" :confirm-working="isWorking" @confirm="confirm" + width="840px" > <el-form :model="form" ref="form" :rules="rules" label-width="120px" label-suffix="锛�"> <el-form-item label="鍏宠仈浼氳瀹�" prop="roomId"> @@ -11,6 +12,7 @@ v-model="form.roomId" filterable clearable + :disabled="isEdit" placeholder="璇烽�夋嫨鍏宠仈浼氳瀹�" @change="selectRoom" > @@ -19,6 +21,7 @@ </el-form-item> <el-form-item label="棰勫畾鏃ユ湡" prop="date"> <el-date-picker + :disabled="isEdit" v-model="form.date" value-format="yyyy-MM-dd" placeholder="璇烽�夋嫨棰勫畾鏃ユ湡" @@ -198,7 +201,7 @@ userList({ page: 1, capacity: 9999, - model: { realname: this.filterText, memberType: 2 } + model: { realname: this.filterText, memberType: 2, companyType: 1 } }) .then(res => { console.log('userList', res) @@ -390,7 +393,7 @@ this.$emit('success') }) .catch(e => { - this.$tip.apiFailed(e) + // this.$tip.apiFailed(e) }) .finally(() => { this.isWorking = false @@ -436,7 +439,7 @@ this.$emit('success') }) .catch(e => { - this.$tip.apiFailed(e) + // this.$tip.apiFailed(e) }) .finally(() => { this.isWorking = false @@ -463,27 +466,33 @@ .time-item { margin-right: 8px; margin-bottom: 8px; - border: #111 solid 1px; font-size: 14px; + font-weight: 400; line-height: 14px; - padding: 5px; + width: 124px; + height: 36px; + display: flex; + justify-content: center; + align-items: center; border-radius: 5px; color: #111; + border: #cccccc solid 1px; + cursor: pointer; } .time-item-sel { border-color: $primary-color; - background-color: $primary-color; - color: #fff; + background-color: #f6f9fe; + color: $primary-color; } .time-item-disable { - color: #e4e4e4; - border-color: #999; - background-color: #999; + color: #fff; + border-color: #cccccc; + background-color: #cccccc; } .disable{ - border-color: #999; - background-color: #999; - color: #111; + border-color: #bed6f9; + background-color: #bed6f9; + color: #fff; } } .detail_modal { -- Gitblit v1.9.3