Blame view

store-pc/src/components/BookingCalendarDialog.vue 21.5 KB
ad197adf   “wangming”   完成了基本的门店PC的设计
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <template>
    <el-dialog
      :visible.sync="visibleProxy"
      :show-close="false"
      width="90%"
      :close-on-click-modal="false"
      custom-class="booking-calendar-dialog"
      append-to-body
    >
      <div class="dialog-inner">
        <div class="dialog-header">
          <div class="dialog-title">预约日历</div>
          <span class="dialog-close" @click="visibleProxy = false"><i class="el-icon-close"></i></span>
        </div>
  
        <div class="dialog-search">
          <el-form @submit.native.prevent :inline="true" size="small">
            <el-form-item label="预约状态">
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
19
20
21
              <el-select v-model="query.status" placeholder="预约状态" clearable style="width:160px">
                <el-option label="已预约" value="booked" />
                <el-option label="服务中" value="serving" />
b5df6609   “wangming”   ```
22
                <el-option label="已完成/已转耗卡" value="converted" />
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
23
                <el-option label="已取消" value="cancelled" />
ad197adf   “wangming”   完成了基本的门店PC的设计
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
              </el-select>
            </el-form-item>
            <el-form-item>
              <el-button type="primary" @click="search">查询</el-button>
              <el-button @click="reset">重置</el-button>
            </el-form-item>
          </el-form>
        </div>
  
        <div class="dialog-content" v-loading="loading">
          <FullCalendar
            ref="fullCalendar"
            class="store-calendar"
            defaultView="dayGridMonth"
            :header="calendarHeader"
            :plugins="calendarPlugins"
            :weekends="true"
            :events="calendarEvents"
            locale="zh-cn"
            :buttonText="buttonText"
            :height="calendarHeight"
            :eventLimit="true"
            allDayText="全天"
            :editable="false"
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
48
            :dayRender="onDayRender"
ad197adf   “wangming”   完成了基本的门店PC的设计
49
            @datesRender="datesRender"
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
50
51
            @dateClick="handleDateClick"
            @eventClick="handleEventClick"
ad197adf   “wangming”   完成了基本的门店PC的设计
52
53
54
          />
        </div>
      </div>
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  
      <booking-consume-dialog
        :visible.sync="consumeVisible"
        :prefill="consumePrefill"
        @saved="handleConsumeSaved"
      />
      <booking-consume-detail-dialog
        :visible.sync="detailVisible"
        :booking="selectedBooking"
        @cancel="handleDetailCancel"
        @edit="handleDetailEdit"
        @start="handleDetailStart"
        @convert="handleDetailConvert"
      />
ad197adf   “wangming”   完成了基本的门店PC的设计
69
70
71
72
73
74
75
76
    </el-dialog>
  </template>
  
  <script>
  import FullCalendar from '@fullcalendar/vue'
  import dayGridPlugin from '@fullcalendar/daygrid'
  import timeGridPlugin from '@fullcalendar/timegrid'
  import interactionPlugin from '@fullcalendar/interaction'
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
77
78
  import BookingConsumeDialog from '@/components/booking-consume-dialog.vue'
  import BookingConsumeDetailDialog from '@/components/booking-consume-detail-dialog.vue'
b5df6609   “wangming”   ```
79
80
81
82
83
84
85
86
87
88
  import { getYyjlList, getYyjlInfo, startYyjlService, cancelYyjl } from '@/api/lqYyjl'
  import {
    mapYyjlListRow,
    mapYyjlInfoToFormRecord,
    apiStatusToUi,
    statusText as appointmentStatusText,
    uiStatusToApi,
    formatDateYMD,
    buildYysjTimestampRange
  } from '@/utils/appointmentHelper'
ad197adf   “wangming”   完成了基本的门店PC的设计
89
90
91
  
  export default {
    name: 'BookingCalendarDialog',
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
92
    components: { FullCalendar, BookingConsumeDialog, BookingConsumeDetailDialog },
b5df6609   “wangming”   ```
93
94
95
96
97
    props: {
      visible: { type: Boolean, default: false },
      /** 与 dashboard 当前选中门店同步 */
      currentStoreId: { type: String, default: '' }
    },
ad197adf   “wangming”   完成了基本的门店PC的设计
98
99
100
    data() {
      return {
        loading: false,
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
101
        query: { status: undefined },
ad197adf   “wangming”   完成了基本的门店PC的设计
102
103
104
105
106
107
        calendarPlugins: [dayGridPlugin, timeGridPlugin, interactionPlugin],
        calendarEvents: [],
        calendarHeader: { left: 'prev,next today', center: 'title', right: 'dayGridMonth,timeGridWeek,timeGridDay' },
        buttonText: { today: '今日', month: '月', week: '周', day: '日' },
        startTime: null,
        endTime: null,
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
108
109
110
111
112
113
114
        calendarHeight: 600,
        consumeVisible: false,
        consumePrefill: {},
        detailVisible: false,
        selectedBooking: null,
        bookingList: [],
        bookingByDate: {}
ad197adf   “wangming”   完成了基本的门店PC的设计
115
116
117
118
119
120
121
122
123
124
125
      }
    },
    computed: {
      visibleProxy: {
        get() { return this.visible },
        set(v) { this.$emit('update:visible', v) }
      }
    },
    watch: {
      visible(v) {
        if (v) {
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
126
          this.setCurrentMonthRange()
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
127
128
129
130
131
          this._installBookingItemClickGuard()
          this.$nextTick(() => {
            this.calcHeight()
            this.initData()
          })
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
132
        } else {
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
133
          this._removeBookingItemClickGuard()
ad197adf   “wangming”   完成了基本的门店PC的设计
134
135
136
137
138
        }
      }
    },
    mounted() {
      window.addEventListener('resize', this.calcHeight)
b5df6609   “wangming”   ```
139
      window.addEventListener('store_pc_bookings_updated', this.onBookingsUpdated)
ad197adf   “wangming”   完成了基本的门店PC的设计
140
141
142
    },
    beforeDestroy() {
      window.removeEventListener('resize', this.calcHeight)
b5df6609   “wangming”   ```
143
      window.removeEventListener('store_pc_bookings_updated', this.onBookingsUpdated)
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
144
      this._removeBookingItemClickGuard()
ad197adf   “wangming”   完成了基本的门店PC的设计
145
146
    },
    methods: {
b5df6609   “wangming”   ```
147
148
      storeId() {
        return this.currentStoreId || (this.$store.getters.storeInfo || {}).storeId || ''
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
149
      },
b5df6609   “wangming”   ```
150
151
152
153
      onBookingsUpdated() {
        if (this.visibleProxy) {
          this.refreshBookingDataSync()
          this.initData()
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
154
        }
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
      },
      esc(s) {
        return String(s == null ? '' : s)
          .replace(/&/g, '&amp;')
          .replace(/</g, '&lt;')
          .replace(/>/g, '&gt;')
          .replace(/"/g, '&quot;')
          .replace(/'/g, '&#39;')
      },
      formatDate(d) {
        const dt = d instanceof Date ? d : new Date(d)
        const y = dt.getFullYear()
        const m = String(dt.getMonth() + 1).padStart(2, '0')
        const day = String(dt.getDate()).padStart(2, '0')
        return `${y}-${m}-${day}`
      },
      statusText(status) {
b5df6609   “wangming”   ```
172
        return appointmentStatusText(status)
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
173
174
175
176
177
178
179
180
      },
      statusColor(status) {
        if (status === 'booked') return '#409EFF'
        if (status === 'serving') return '#67C23A'
        if (status === 'converted') return '#909399'
        if (status === 'cancelled') return '#F56C6C'
        return '#909399'
      },
ad197adf   “wangming”   完成了基本的门店PC的设计
181
182
183
184
185
186
187
188
      calcHeight() {
        this.$nextTick(() => {
          const el = this.$el && this.$el.querySelector('.dialog-content')
          if (el) {
            this.calendarHeight = Math.max(el.clientHeight - 20, 500)
          }
        })
      },
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
189
190
191
192
193
194
195
196
197
198
199
200
      onDayRender(info) {
        const dateStr = this.formatDate(info.date)
        const frame = info.el && (info.el.querySelector('.fc-daygrid-day-frame') || info.el.querySelector('.fc-daygrid-day-events') || info.el)
        if (!frame) return
        let mount = frame.querySelector('.pc-booking-mount')
        if (!mount) {
          mount = document.createElement('div')
          mount.className = 'pc-booking-mount'
          frame.appendChild(mount)
        }
        mount.innerHTML = this.renderDayCell(dateStr)
      },
ad197adf   “wangming”   完成了基本的门店PC的设计
201
202
203
204
      datesRender(info) {
        const view = info.view
        this.startTime = view.activeStart
        this.endTime = view.activeEnd
ad197adf   “wangming”   完成了基本的门店PC的设计
205
206
        this.initData()
      },
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
207
208
209
210
211
212
213
214
215
216
217
218
      getCalendarRoot() {
        // append-to-body 时日历在 document.body,优先从 document 查找
        const fromDoc = document.querySelector('.booking-calendar-dialog .store-calendar')
        return fromDoc || (this.$el && this.$el.querySelector('.store-calendar')) || null
      },
      getVisibleMonthDate() {
        if (this.startTime && this.endTime) {
          const mid = (this.startTime.getTime() + this.endTime.getTime()) / 2
          return new Date(mid)
        }
        return new Date()
      },
b5df6609   “wangming”   ```
219
220
221
222
223
224
225
      async refreshBookingDataSync() {
        const storeId = this.storeId()
        if (!storeId) {
          this.bookingList = []
          this.bookingByDate = {}
          this.calendarEvents = []
          return
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
226
        }
b5df6609   “wangming”   ```
227
228
229
230
231
232
233
234
235
236
        try {
          const rangeStart = this.startTime || new Date()
          const rangeEnd = this.endTime || new Date()
          const yysjRange = buildYysjTimestampRange(rangeStart, rangeEnd)
          const params = {
            djmd: storeId,
            currentPage: 1,
            pageSize: 1000,
            sidx: 'yysj',
            sort: 'asc'
ad197adf   “wangming”   完成了基本的门店PC的设计
237
          }
b5df6609   “wangming”   ```
238
239
240
241
          if (yysjRange) params.yysj = yysjRange
          const apiStatus = uiStatusToApi(this.query.status)
          if (apiStatus && this.query.status !== 'converted') {
            params.F_Status = apiStatus
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
242
          }
b5df6609   “wangming”   ```
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
          const res = await getYyjlList(params)
          let list = (res.data?.list || []).map(mapYyjlListRow)
          if (this.query.status === 'converted') {
            list = list.filter(r => r.status === 'converted')
          } else if (this.query.status) {
            list = list.filter(r => r.status === this.query.status)
          }
          this.bookingList = list
          const map = {}
          list.forEach(r => {
            const key = r && r.date ? r.date : ''
            if (!key) return
            if (!map[key]) map[key] = []
            map[key].push(r)
          })
          Object.keys(map).forEach(k => {
            map[k] = map[k].slice().sort((a, b) => String(a.startTime || '').localeCompare(String(b.startTime || '')))
          })
          this.bookingByDate = map
          this.calendarEvents = list.map(item => {
            const dateStr = item.date || this.formatDate(new Date())
            const start = item.startTime ? `${dateStr}T${item.startTime}:00` : `${dateStr}T00:00:00`
            const end = item.endTime ? `${dateStr}T${item.endTime}:00` : start
            return {
              id: item.id,
              title: '',
              start,
              end,
              color: 'transparent',
              textColor: 'transparent',
              classNames: ['pc-booking-hidden-event'],
              editable: false,
              allDay: false
            }
          })
        } catch (e) {
          this.bookingList = []
          this.bookingByDate = {}
          this.calendarEvents = []
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
282
283
        }
      },
b5df6609   “wangming”   ```
284
285
286
287
288
      async loadBookingDetail(id) {
        const res = await getYyjlInfo(id)
        const info = res.data || {}
        return mapYyjlInfoToFormRecord(info, info.lqYyjlPxList || [])
      },
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
289
290
291
292
293
294
295
296
297
      setCurrentMonthRange() {
        const now = new Date()
        const y = now.getFullYear()
        const m = now.getMonth()
        this.startTime = new Date(y, m, 1, 0, 0, 0, 0)
        this.endTime = new Date(y, m + 1, 0, 23, 59, 59, 999)
      },
      initData() {
        this.loading = true
b5df6609   “wangming”   ```
298
299
300
301
302
303
304
305
306
307
        this.refreshBookingDataSync()
          .finally(() => {
            this.loading = false
            this.$nextTick(() => {
              this.installDayCellRenderer()
              this.patchAllCells()
              const api = this.$refs.fullCalendar && this.$refs.fullCalendar.getApi && this.$refs.fullCalendar.getApi()
              if (api && api.rerenderDates) api.rerenderDates()
              this.$nextTick(() => this.patchAllCells())
            })
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
308
          })
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
      },
      _installBookingItemClickGuard() {
        this._removeBookingItemClickGuard()
        if (this._pcBookingGuardInstalled) return
        const handler = (e) => {
          if (!this.visibleProxy) return
          const target = e.target
          if (!target || typeof target.closest !== 'function') return
          const itemEl = target.closest('.pc-booking-item')
          if (!itemEl) return
          const dialog = target.closest('.booking-calendar-dialog')
          if (!dialog) return
          e.preventDefault()
          e.stopPropagation()
          const id = itemEl.getAttribute('data-id')
          const rec = (this.bookingList || []).find(x => x && x.id === id)
          if (rec) {
b5df6609   “wangming”   ```
326
            this.openBookingDetail(rec)
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
          }
        }
        document.addEventListener('click', handler, true)
        this._pcBookingGuardHandler = handler
        this._pcBookingGuardTarget = document
        this._pcBookingGuardInstalled = true
      },
      _removeBookingItemClickGuard() {
        if (this._pcBookingGuardTarget && this._pcBookingGuardHandler) {
          this._pcBookingGuardTarget.removeEventListener('click', this._pcBookingGuardHandler, true)
          this._pcBookingGuardTarget = null
          this._pcBookingGuardHandler = null
        }
        this._pcBookingGuardInstalled = false
      },
      installDayCellRenderer() {
        const root = this.getCalendarRoot()
        if (!root) return
        if (this._pcBookingDelegationInstalled) return
        this._pcBookingDelegationInstalled = true
  
        // 监听 FullCalendar 月视图切换导致的 DOM 变动,及时重绘日格摘要
        this._pcBookingMutation && this._pcBookingMutation.disconnect && this._pcBookingMutation.disconnect()
        this._pcBookingMutation = new MutationObserver(() => {
          this.patchAllCells()
        })
        this._pcBookingMutation.observe(root, { childList: true, subtree: true })
      },
      renderDayCell(dateStr) {
        const list = (this.bookingByDate && this.bookingByDate[dateStr]) ? this.bookingByDate[dateStr] : []
        const total = list.length
        if (!total) return ''
  
        const maxShow = 2
        const showList = list.slice(0, maxShow)
        const rest = total - showList.length
        const itemsHtml = showList.map(r => {
          const time = `${this.esc(r.startTime || '')}-${this.esc(r.endTime || '')}`.replace(/^-|-$/g, '')
          const member = this.esc(r.memberName || '无')
          const room = this.esc(r.roomName || '无')
          const stText = this.esc(this.statusText(r.status))
          const stColor = this.statusColor(r.status)
          const brief = [time, member, room, stText].filter(Boolean).join(' ')
          return `<div class="pc-booking-item" data-id="${this.esc(r.id)}">
            <span class="pc-booking-dot" style="background:${stColor}"></span>
            <span class="pc-booking-brief" title="${brief}">${brief}</span>
          </div>`
        }).join('')
  
        const moreHtml = rest > 0 ? `<div class="pc-booking-more">+${rest}</div>` : ''
        return `<div class="pc-booking-wrap">
          <div class="pc-booking-badge">${total}</div>
          <div class="pc-booking-list">${itemsHtml}${moreHtml}</div>
        </div>`
      },
      patchAllCells() {
        const root = this.getCalendarRoot()
        if (!root) return
        const cells = root.querySelectorAll('.fc-daygrid-day')
        cells.forEach(cell => {
          const dateStr = cell.getAttribute('data-date')
          if (!dateStr) return
          let mount = cell.querySelector('.pc-booking-mount')
          if (!mount) {
            // 不能挂在 day-top(高度小/可能 overflow),挂到 day-frame/事件容器里更稳定
            const top = cell.querySelector('.fc-daygrid-day-frame') ||
              cell.querySelector('.fc-daygrid-day-events') ||
              cell
            mount = document.createElement('div')
            mount.className = 'pc-booking-mount'
            top.appendChild(mount)
          }
          mount.innerHTML = this.renderDayCell(dateStr)
        })
      },
      handleDateClick(arg) {
        // 若点击的是预约条目,不打开新建预约,由 capture 层只打开详情
        if (arg && arg.jsEvent && arg.jsEvent.target && arg.jsEvent.target.closest && arg.jsEvent.target.closest('.pc-booking-item')) {
          return
        }
        // 点击空白日期格:打开新建预约,预填点击的日期
        const dateStr = arg && arg.date ? this.formatDate(arg.date) : this.formatDate(new Date())
        this.consumePrefill = { date: dateStr }
        this.consumeVisible = true
      },
      handleEventClick(arg) {
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
413
414
415
        const id = arg && arg.event ? arg.event.id : ''
        if (!id) return
        const rec = (this.bookingList || []).find(x => x && x.id === id)
b5df6609   “wangming”   ```
416
417
418
419
420
421
422
423
424
425
426
        if (rec) this.openBookingDetail(rec)
      },
      async openBookingDetail(rec) {
        try {
          const detail = await this.loadBookingDetail(rec.id)
          this.selectedBooking = detail
          this.detailVisible = true
        } catch (e) {
          this.selectedBooking = { ...rec }
          this.detailVisible = true
        }
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
427
428
429
      },
      handleConsumeSaved() {
        this.consumeVisible = false
b5df6609   “wangming”   ```
430
        this.refreshBookingDataSync().then(() => this.initData())
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
431
432
      },
      handleDetailCancel(b) {
b5df6609   “wangming”   ```
433
        if (!b || !b.id) return
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
434
435
436
437
        this.$confirm(`确定取消「${b.memberName || '该会员'}」在 ${b.date} ${b.startTime || ''}-${b.endTime || ''} 的预约吗?`, '取消预约确认', {
          confirmButtonText: '确定',
          cancelButtonText: '再想想',
          type: 'warning'
b5df6609   “wangming”   ```
438
439
        }).then(async () => {
          await cancelYyjl(b.id, '')
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
440
441
          this.detailVisible = false
          this.selectedBooking = null
b5df6609   “wangming”   ```
442
          await this.refreshBookingDataSync()
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
443
444
445
446
447
448
449
450
451
452
453
454
          this.initData()
          this.$message.success('已取消预约')
        }).catch(() => {})
      },
      handleDetailEdit(b) {
        if (!b) return
        this.consumePrefill = { ...b }
        this.detailVisible = false
        this.$nextTick(() => {
          this.consumeVisible = true
        })
      },
b5df6609   “wangming”   ```
455
456
457
458
459
460
461
462
463
      async handleDetailStart(b) {
        if (!b || !b.id) return
        try {
          await startYyjlService(b.id)
          this.selectedBooking = { ...this.selectedBooking, status: 'serving', fStatus: '服务中' }
          await this.refreshBookingDataSync()
          this.initData()
          this.$message.success('已开始服务')
        } catch (e) {}
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
464
465
466
      },
      handleDetailConvert(b) {
        if (!b) return
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
467
        this.detailVisible = false
b5df6609   “wangming”   ```
468
469
470
471
472
        this.$emit('convert-consume', {
          appointmentId: b.id,
          memberId: b.memberId,
          memberName: b.memberName
        })
ad197adf   “wangming”   完成了基本的门店PC的设计
473
474
      },
      search() { this.initData() },
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
475
      reset() { this.query.status = undefined; this.initData() }
ad197adf   “wangming”   完成了基本的门店PC的设计
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
    }
  }
  </script>
  
  <style lang="scss">
  @import '~@fullcalendar/core/main.css';
  @import '~@fullcalendar/daygrid/main.css';
  @import '~@fullcalendar/timegrid/main.css';
  
  .booking-calendar-dialog .store-calendar {
    .fc-toolbar.fc-header-toolbar { padding: 16px 20px; margin-bottom: 0; border-bottom: 2px solid #f1f5f9; background: linear-gradient(135deg, rgba(59,130,246,0.02) 0%, rgba(96,165,250,0.02) 100%); }
    .fc-toolbar-title { font-size: 18px; font-weight: 700; color: #1e293b; }
    .fc-button-primary { background-color: #3b82f6; border-color: #3b82f6; border-radius: 10px; font-size: 13px; font-weight: 500; height: 34px; line-height: 34px; padding: 0 14px; transition: all 0.2s; &:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59,130,246,0.3); } }
    .fc-button-primary:not(:disabled):active, .fc-button-primary:not(:disabled).fc-button-active { background-color: #2563eb; border-color: #2563eb; box-shadow: 0 4px 12px rgba(59,130,246,0.3); }
    .fc-day-today { background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(96,165,250,0.05) 100%); .fc-daygrid-day-number { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; border-radius: 6px; box-shadow: 0 2px 8px rgba(59,130,246,0.3); } }
    .fc-event { cursor: pointer; border-radius: 6px; padding: 3px 6px; font-size: 12px; font-weight: 500; border: none; box-shadow: 0 2px 4px rgba(0,0,0,0.1); transition: all 0.2s; &:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); } }
    .fc-day-header { font-size: 14px !important; color: #64748b !important; font-weight: 700 !important; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important; border-bottom: 2px solid #e2e8f0 !important; padding: 12px 8px !important; }
    .fc-unthemed th, .fc-unthemed td { border-color: #f1f5f9; }
  }
f4739ed5   “wangming”   完成了基本的门店PC页面的设计
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
  
  .booking-calendar-dialog .store-calendar {
    .pc-booking-hidden-event { display: none !important; }
    .pc-booking-mount {
      position: relative;
      margin: 4px 6px 0 4px;
      pointer-events: auto;
      z-index: 2;
    }
    .pc-booking-wrap { position: relative; }
    .pc-booking-badge {
      position: absolute;
      top: -2px;
      right: 6px;
      min-width: 16px;
      height: 16px;
      line-height: 16px;
      padding: 0 5px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.12);
      color: #2563eb;
      font-size: 11px;
      font-weight: 700;
      text-align: center;
    }
    .pc-booking-list { margin-top: 18px; }
    .pc-booking-item {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 2px 0;
      padding: 2px 6px;
      border-radius: 8px;
      background: rgba(241, 245, 249, 0.55);
      cursor: pointer;
      user-select: none;
      transition: background 0.15s;
      &:hover { background: rgba(219, 234, 254, 0.8); }
    }
    .pc-booking-dot { width: 6px; height: 6px; border-radius: 999px; flex-shrink: 0; }
    .pc-booking-brief {
      font-size: 11px;
      color: #334155;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 16px;
      max-width: 140px;
    }
    .pc-booking-more {
      font-size: 11px;
      color: #64748b;
      padding: 0 6px;
      margin-top: 2px;
      white-space: nowrap;
    }
  }
ad197adf   “wangming”   完成了基本的门店PC的设计
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
  </style>
  
  <style lang="scss" scoped>
  ::v-deep .booking-calendar-dialog { max-width: 1600px; margin-top: 3vh !important; border-radius: 20px; padding: 0; background: radial-gradient(circle at 0 0, rgba(255,255,255,0.96) 0, rgba(248,250,252,0.98) 40%, rgba(241,245,249,0.98) 100%); box-shadow: 0 24px 48px rgba(15,23,42,0.18), 0 0 0 1px rgba(255,255,255,0.9); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
  ::v-deep .el-dialog__header { display: none; }
  ::v-deep .el-dialog__body { padding: 0; }
  .dialog-inner { display: flex; flex-direction: column; max-height: 92vh; height: 88vh; }
  .dialog-header { flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; margin: 18px 22px 0; padding: 10px 14px; border-radius: 14px; background: rgba(219,234,254,0.96); }
  .dialog-title { font-size: 17px; font-weight: 600; color: #0f172a; }
  .dialog-close { cursor: pointer; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 999px; color: #64748b; transition: all 0.15s; &:hover { background: rgba(0,0,0,0.06); color: #0f172a; } }
  .dialog-search { flex-shrink: 0; padding: 12px 22px 4px; }
  .dialog-content { flex: 1; min-height: 0; overflow: hidden; padding: 0 22px 14px; }
  ::v-deep .booking-calendar-dialog .el-input__inner { border-radius: 999px; height: 32px; line-height: 32px; border-color: #e5e7eb; background-color: #f9fafb; &:focus { border-color: #2563eb; } }
  ::v-deep .booking-calendar-dialog .el-button--primary { border-radius: 999px; background: #2563eb; border-color: #2563eb; box-shadow: 0 4px 10px rgba(37,99,235,0.35); }
  ::v-deep .booking-calendar-dialog .el-button--default { border-radius: 999px; }
  ::v-deep .booking-calendar-dialog .el-form-item { margin-bottom: 8px; }
  ::v-deep .booking-calendar-dialog .el-form-item__label { white-space: nowrap; }
  </style>