RefundListDialog.vue 16 KB
<template>
  <el-dialog
    :visible.sync="visibleProxy"
    :show-close="false"
    width="90%"
    :close-on-click-modal="false"
    custom-class="refund-list-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="会员">
            <el-select v-model="query.hy" filterable remote reserve-keyword clearable placeholder="搜索会员" :remote-method="searchMember" :loading="memberLoading" style="width:200px">
              <el-option v-for="m in memberOptions" :key="m.value" :label="m.label" :value="m.value" />
            </el-select>
          </el-form-item>
          <template v-if="showAll">
            <el-form-item label="退卡时间">
              <el-date-picker v-model="query.tksj" type="daterange" value-format="timestamp" format="yyyy-MM-dd" start-placeholder="开始" end-placeholder="结束" style="width:220px" />
            </el-form-item>
            <el-form-item label="健康师">
              <el-select v-model="query.jksId" placeholder="健康师" clearable filterable style="width:150px">
                <el-option v-for="h in jksOptions" :key="h.id" :label="h.fullName" :value="h.id" />
              </el-select>
            </el-form-item>
            <el-form-item label="科技老师">
              <el-select v-model="query.kjblsId" placeholder="科技老师" clearable filterable style="width:150px">
                <el-option v-for="t in kjbOptions" :key="t.id" :label="t.fullName" :value="t.id" />
              </el-select>
            </el-form-item>
            <el-form-item label="是否作废">
              <el-select v-model="query.isEffective" placeholder="请选择" clearable style="width:100px">
                <el-option label="正常" value="1" /><el-option label="作废" value="-1" />
              </el-select>
            </el-form-item>
          </template>
          <el-form-item>
            <el-button type="primary" @click="search">查询</el-button>
            <el-button @click="reset">重置</el-button>
            <el-button type="text" @click="showAll = !showAll">
              {{ showAll ? '收起' : '展开' }} <i :class="showAll ? 'el-icon-arrow-up' : 'el-icon-arrow-down'"></i>
            </el-button>
          </el-form-item>
        </el-form>
      </div>

      <div class="dialog-content">
        <el-table v-loading="loading" :data="list" border size="small" :header-cell-style="{ background:'#f5f7fa', color:'#606266', fontWeight:600 }">
          <el-table-column type="expand" width="50">
            <template slot-scope="{ row }">
              <div class="expand-box" v-if="row.lqHytkMxList && row.lqHytkMxList.length">
                <div class="expand-title"><i class="el-icon-goods"></i> 退卡明细</div>
                <el-table :data="row.lqHytkMxList" border size="mini" :header-cell-style="{ background:'#f5f7fa', color:'#606266' }">
                  <el-table-column prop="pxmc" label="项目名称" width="180" />
                  <el-table-column label="项目价格" width="120" align="right">
                    <template slot-scope="s">¥{{ formatMoney(s.row.pxjg) }}</template>
                  </el-table-column>
                  <el-table-column prop="projectNumber" label="次数" width="80" align="right" />
                  <el-table-column label="退款金额" width="120" align="right">
                    <template slot-scope="s"><span style="color:#F56C6C;font-weight:600">¥{{ formatMoney(s.row.tkje) }}</span></template>
                  </el-table-column>
                  <el-table-column label="总价" width="120" align="right">
                    <template slot-scope="s">¥{{ formatMoney(s.row.totalPrice) }}</template>
                  </el-table-column>
                  <el-table-column label="来源" width="100">
                    <template slot-scope="s"><el-tag size="mini" type="info">{{ s.row.sourceType || '-' }}</el-tag></template>
                  </el-table-column>
                  <el-table-column label="是否有效" width="90" align="center">
                    <template slot-scope="s">{{ s.row.isEffective == 1 ? '有效' : '无效' }}</template>
                  </el-table-column>
                </el-table>
              </div>
              <div v-else class="expand-empty"><i class="el-icon-info"></i> 暂无退卡明细</div>
            </template>
          </el-table-column>
          <el-table-column prop="mdmc" label="门店名称" show-overflow-tooltip />
          <el-table-column prop="hymc" label="会员姓名" />
          <el-table-column prop="hyPhone" label="手机号" width="120" />
          <el-table-column label="退款金额" width="110" align="right">
            <template slot-scope="{ row }"><span style="color:#409EFF;font-weight:600">{{ row.tkje || '-' }}</span></template>
          </el-table-column>
          <el-table-column label="实际退款金额" width="130" align="right">
            <template slot-scope="{ row }"><span style="color:#F56C6C;font-weight:600">{{ row.actualRefundAmount || '-' }}</span></template>
          </el-table-column>
          <el-table-column label="退卡时间" width="110">
            <template slot-scope="{ row }">{{ formatDate(row.tksj) }}</template>
          </el-table-column>
          <el-table-column label="是否作废" width="90" align="center">
            <template slot-scope="{ row }">{{ row.isEffective == '1' ? '正常' : '作废' }}</template>
          </el-table-column>
          <el-table-column prop="bz" label="备注" show-overflow-tooltip />
          <el-table-column label="操作人" width="120" show-overflow-tooltip>
            <template slot-scope="{ row }">{{ row.czry || '-' }}</template>
          </el-table-column>
        </el-table>
      </div>

      <div class="dialog-footer">
        <el-pagination background layout="total, sizes, prev, pager, next, jumper" :total="total" :page-size.sync="listQuery.pageSize" :current-page.sync="listQuery.currentPage" :page-sizes="[10, 20, 50, 100]" @size-change="initData" @current-change="initData" />
      </div>
    </div>
  </el-dialog>
</template>

<script>
const MOCK_REFUND = [
  { id: '1', mdmc: '绿纤西站店', hymc: '何文慧', hyPhone: '19114671036', tkje: '133.34', actualRefundAmount: '133.00', tksj: '2026-02-11 15:48:40', bz: '', isEffective: 1, czry: '李经理', lqHytkMxList: [{ pxmc: '女神卡', pxjg: '66.67', projectNumber: '2', tkje: '133.34', totalPrice: '133.34', sourceType: '购买', isEffective: 1 }, { pxmc: '水氧-面部', pxjg: '0.00', projectNumber: '1', tkje: '0.00', totalPrice: '0.00', sourceType: '赠送', isEffective: 1 }] },
  { id: '2', mdmc: '绿纤南湖店', hymc: '沈雪莲', hyPhone: '19914258613', tkje: '1199.00', actualRefundAmount: '1199.00', tksj: '2026-02-11 15:34:05', bz: '人去了新疆', isEffective: 1, czry: '郝莉娜', lqHytkMxList: [{ pxmc: '年卡', pxjg: '1199.00', projectNumber: '1', tkje: '1199.00', totalPrice: '1199.00', sourceType: '购买', isEffective: 1 }] },
  { id: '3', mdmc: '绿纤保利店', hymc: '陈秋媛', hyPhone: '13350688821', tkje: '3054.59', actualRefundAmount: '868.00', tksj: '2026-02-11 13:48:53', bz: '', isEffective: 1, czry: '贾琳', lqHytkMxList: [{ pxmc: '美容套卡', pxjg: '1000.00', projectNumber: '2', tkje: '2000.00', totalPrice: '2000.00', sourceType: '购买', isEffective: 1 }, { pxmc: '胶原宝宝-双部位', pxjg: '527.30', projectNumber: '2', tkje: '1054.59', totalPrice: '1054.59', sourceType: '购买', isEffective: 1 }] },
  { id: '4', mdmc: '绿纤双流店', hymc: '唐糠琼', hyPhone: '15108382205', tkje: '1000.00', actualRefundAmount: '1000.00', tksj: '2026-02-08 15:36:01', bz: '', isEffective: 1, czry: '张经理', lqHytkMxList: [{ pxmc: '美容套卡', pxjg: '1000.00', projectNumber: '1', tkje: '1000.00', totalPrice: '1000.00', sourceType: '购买', isEffective: 1 }] },
  { id: '5', mdmc: '绿纤融创店', hymc: '何虹霖', hyPhone: '18200502182', tkje: '10000.00', actualRefundAmount: '10000.00', tksj: '2026-02-06 18:12:39', bz: '', isEffective: 1, czry: '王经理', lqHytkMxList: [{ pxmc: '钻石卡', pxjg: '10000.00', projectNumber: '1', tkje: '10000.00', totalPrice: '10000.00', sourceType: '购买', isEffective: 1 }] },
  { id: '6', mdmc: '绿纤骑士郡店', hymc: '陈玲', hyPhone: '17340223822', tkje: '1998.96', actualRefundAmount: '1998.96', tksj: '2026-02-05 09:32:05', bz: '转卡给会员:陈倩', isEffective: -1, czry: '刘经理', lqHytkMxList: [{ pxmc: '季卡', pxjg: '999.48', projectNumber: '2', tkje: '1998.96', totalPrice: '1998.96', sourceType: '购买', isEffective: 1 }] },
  { id: '7', mdmc: '绿纤西站店', hymc: '廖艳琼', hyPhone: '13551188224', tkje: '1000.00', actualRefundAmount: '1000.00', tksj: '2026-02-03 18:11:45', bz: '', isEffective: 1, czry: '李经理', lqHytkMxList: [{ pxmc: '美容套卡', pxjg: '1000.00', projectNumber: '1', tkje: '1000.00', totalPrice: '1000.00', sourceType: '购买', isEffective: 1 }] },
  { id: '8', mdmc: '绿纤川音店', hymc: '王雁', hyPhone: '13679057358', tkje: '10000.00', actualRefundAmount: '10000.00', tksj: '2026-02-03 17:33:54', bz: '', isEffective: 1, czry: '陈经理', lqHytkMxList: [{ pxmc: '钻石卡', pxjg: '10000.00', projectNumber: '1', tkje: '10000.00', totalPrice: '10000.00', sourceType: '购买', isEffective: 1 }] },
  { id: '9', mdmc: '绿纤凤凰山店', hymc: '陈小丽', hyPhone: '18122879216', tkje: '308.90', actualRefundAmount: '308.90', tksj: '2026-01-31 12:04:38', bz: '', isEffective: 1, czry: '周经理', lqHytkMxList: [{ pxmc: '基础护理', pxjg: '308.90', projectNumber: '1', tkje: '308.90', totalPrice: '308.90', sourceType: '购买', isEffective: 1 }] },
  { id: '10', mdmc: '绿纤龙城国际店', hymc: '蒋女士', hyPhone: '18982067793', tkje: '0.00', actualRefundAmount: '0.00', tksj: '2026-02-02 18:51:19', bz: '', isEffective: 1, czry: '赵经理', lqHytkMxList: [{ pxmc: '水氧-面部', pxjg: '0.00', projectNumber: '1', tkje: '0.00', totalPrice: '0.00', sourceType: '赠送', isEffective: 1 }] }
]
export default {
  name: 'RefundListDialog',
  props: { visible: { type: Boolean, default: false } },
  data() {
    return {
      mockData: MOCK_REFUND,
      showAll: false, loading: false, memberLoading: false,
      memberOptions: [], jksOptions: [], kjbOptions: [],
      list: [], total: 0,
      query: { hy: undefined, tksj: undefined, jksId: undefined, kjblsId: undefined, isEffective: undefined },
      listQuery: { currentPage: 1, pageSize: 10, sort: 'desc', sidx: '' }
    }
  },
  computed: {
    visibleProxy: { get() { return this.visible }, set(v) { this.$emit('update:visible', v) } }
  },
  watch: {
    visible(v) { if (v) { this.initData(); this.loadMembers(); this.loadStaff() } }
  },
  methods: {
    formatDate(ts) {
      if (!ts) return '-'
      if (typeof ts === 'string' && ts.includes('-')) return ts.substring(0, 10)
      const d = new Date(typeof ts === 'number' ? ts : Number(ts))
      if (isNaN(d.getTime())) return '-'
      return `${d.getFullYear()}-${String(d.getMonth()+1).padStart(2,'0')}-${String(d.getDate()).padStart(2,'0')}`
    },
    formatMoney(v) { return v != null ? Number(v).toFixed(2) : '0.00' },
    loadMembers() {
      const seen = new Map()
      this.mockData.forEach(r => { if (!seen.has(r.hyPhone)) { seen.set(r.hyPhone, true); this.memberOptions.push({ value: r.hyPhone, label: `${r.hymc}(${r.hyPhone})` }) } })
    },
    searchMember(kw) {
      if (!kw) return
      this.memberLoading = true
      setTimeout(() => {
        const lower = kw.toLowerCase()
        this.memberOptions = this.mockData
          .filter(r => r.hymc.toLowerCase().includes(lower) || r.hyPhone.includes(kw))
          .reduce((acc, r) => { if (!acc.find(a => a.value === r.hyPhone)) acc.push({ value: r.hyPhone, label: `${r.hymc}(${r.hyPhone})` }); return acc }, [])
        this.memberLoading = false
      }, 300)
    },
    loadStaff() {
      const jksSet = new Map(), kjbSet = new Map()
      this.mockData.forEach(r => {
        if (r.czry) { const name = r.czry.trim(); if (name && !jksSet.has(name)) { jksSet.set(name, true); this.jksOptions.push({ id: name, fullName: name }) } }
        if (r.kjbName) r.kjbName.split(',').forEach(n => { const name = n.trim(); if (name && !kjbSet.has(name)) { kjbSet.set(name, true); this.kjbOptions.push({ id: name, fullName: name }) } })
      })
    },
    initData() {
      this.loading = true
      setTimeout(() => {
        let filtered = [...this.mockData]
        if (this.query.tksj && this.query.tksj.length === 2) {
          const [s, e] = this.query.tksj
          filtered = filtered.filter(r => { const t = new Date(r.tksj).getTime(); return t >= s && t <= e + 86400000 })
        }
        if (this.query.hy) filtered = filtered.filter(r => r.hyPhone === this.query.hy)
        if (this.query.jksId) filtered = filtered.filter(r => r.czry && r.czry.includes(this.query.jksId))
        if (this.query.kjblsId) filtered = filtered.filter(r => r.kjbName && r.kjbName.includes(this.query.kjblsId))
        if (this.query.isEffective) filtered = filtered.filter(r => String(r.isEffective) === this.query.isEffective)
        this.total = filtered.length
        const start = (this.listQuery.currentPage - 1) * this.listQuery.pageSize
        this.list = filtered.slice(start, start + this.listQuery.pageSize)
        this.loading = false
      }, 300)
    },
    search() { this.listQuery.currentPage = 1; this.initData() },
    reset() { for (const k in this.query) this.query[k] = undefined; this.listQuery = { currentPage: 1, pageSize: 10, sort: 'desc', sidx: '' }; this.initData() }
  }
}
</script>

<style lang="scss" scoped>
::v-deep .refund-list-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; }
.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: auto; padding: 0 22px; }
.dialog-footer { flex-shrink: 0; display: flex; align-items: center; justify-content: flex-end; padding: 10px 22px 14px; border-top: 1px solid rgba(229,231,235,0.6); }
.expand-box { padding: 14px; background: #fafafa; border-radius: 8px; margin: 6px 0; .expand-title { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #303133; margin-bottom: 10px; i { color: #409EFF; } } }
.expand-empty { padding: 16px; text-align: center; color: #909399; font-size: 13px; }
::v-deep .refund-list-dialog .el-input__inner { border-radius: 999px; height: 32px; line-height: 32px; border-color: #e5e7eb; background-color: #f9fafb; &:focus { border-color: #2563eb; box-shadow: 0 0 0 1px rgba(37,99,235,0.18); } }
::v-deep .refund-list-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 .refund-list-dialog .el-button--default { border-radius: 999px; }
::v-deep .refund-list-dialog .el-form-item { margin-bottom: 8px; }
::v-deep .refund-list-dialog .el-form-item__label { white-space: nowrap; }
::v-deep .refund-list-dialog .el-range-editor.el-input__inner { border-radius: 999px; }
</style>