Blame view

store-pc/src/components/InviteListDialog.vue 10.1 KB
ad197adf   “wangming”   完成了基本的门店PC的设计
1
2
3
4
5
6
7
8
9
10
11
  <template>
    <el-dialog
      :visible.sync="visibleProxy"
      :show-close="false"
      width="90%"
      :close-on-click-modal="false"
      custom-class="invite-list-dialog"
      append-to-body
    >
      <div class="dialog-inner">
        <div class="dialog-header">
7606a6ad   “wangming”   fix: update produ...
12
          <div class="dialog-title">沟通记录</div>
ad197adf   “wangming”   完成了基本的门店PC的设计
13
14
15
16
17
          <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">
7606a6ad   “wangming”   fix: update produ...
18
            <el-form-item label="沟通时间">
ad197adf   “wangming”   完成了基本的门店PC的设计
19
20
              <el-date-picker v-model="query.yysj" type="daterange" value-format="timestamp" format="yyyy-MM-dd" start-placeholder="开始" end-placeholder="结束" style="width:220px" />
            </el-form-item>
7606a6ad   “wangming”   fix: update produ...
21
            <el-form-item label="沟通客户">
ad197adf   “wangming”   完成了基本的门店PC的设计
22
23
24
25
26
27
28
29
30
31
              <el-select v-model="query.yykh" 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-select v-model="query.dhsfyx" placeholder="请选择" clearable style="width:120px">
                  <el-option label="是" value="是" /><el-option label="否" value="否" />
                </el-select>
              </el-form-item>
7606a6ad   “wangming”   fix: update produ...
32
33
34
35
36
37
38
39
40
41
42
43
44
              <el-form-item label="沟通方式">
                <el-select v-model="query.gtfs" placeholder="请选择" clearable style="width:120px">
                  <el-option label="电话" value="电话" />
                  <el-option label="微信" value="微信" />
                </el-select>
              </el-form-item>
              <el-form-item label="是否接听">
                <el-select v-model="query.sfjt" placeholder="请选择" clearable style="width:120px">
                  <el-option label="是" value="是" />
                  <el-option label="否" value="否" />
                  <el-option label="未拨通" value="未拨通" />
                </el-select>
              </el-form-item>
ad197adf   “wangming”   完成了基本的门店PC的设计
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
              <el-form-item label="联系时间">
                <el-date-picker v-model="query.lxsj" type="daterange" value-format="timestamp" format="yyyy-MM-dd" start-placeholder="开始" end-placeholder="结束" style="width:220px" />
              </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">
20099e65   “wangming”   1111
61
          <el-table v-loading="loading" :data="list" border size="small" :header-cell-style="{ background:'#f8fafc', color:'#64748b', fontWeight:600 }">
ad197adf   “wangming”   完成了基本的门店PC的设计
62
            <el-table-column prop="storeName" label="门店" show-overflow-tooltip />
7606a6ad   “wangming”   fix: update produ...
63
64
            <el-table-column prop="yyrName" label="沟通人" />
            <el-table-column label="沟通时间" width="140">
ad197adf   “wangming”   完成了基本的门店PC的设计
65
66
              <template slot-scope="{ row }">{{ formatDate(row.yysj) }}</template>
            </el-table-column>
7606a6ad   “wangming”   fix: update produ...
67
            <el-table-column prop="yykhxm" label="沟通客户" />
ad197adf   “wangming”   完成了基本的门店PC的设计
68
69
70
71
72
73
74
75
            <el-table-column label="电话是否有效" width="120">
              <template slot-scope="{ row }">{{ row.dhsfyx || '-' }}</template>
            </el-table-column>
            <el-table-column prop="tkbh" label="关联拓客号" width="160" show-overflow-tooltip />
            <el-table-column label="联系时间" width="140">
              <template slot-scope="{ row }">{{ formatDate(row.lxsj) }}</template>
            </el-table-column>
            <el-table-column prop="lxjl" label="联系记录" show-overflow-tooltip />
7606a6ad   “wangming”   fix: update produ...
76
77
78
79
80
81
82
            <el-table-column prop="gtfs" label="沟通方式" width="100" />
            <el-table-column label="是否接听" width="100">
              <template slot-scope="{ row }">{{ row.sfjt || '-' }}</template>
            </el-table-column>
            <el-table-column label="下次联系时间" width="140">
              <template slot-scope="{ row }">{{ formatDate(row.xcLxsj) }}</template>
            </el-table-column>
ad197adf   “wangming”   完成了基本的门店PC的设计
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
          </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>
7606a6ad   “wangming”   fix: update produ...
103
  import request from '@/utils/request'
ad197adf   “wangming”   完成了基本的门店PC的设计
104
105
106
107
108
109
110
111
112
113
114
115
  
  export default {
    name: 'InviteListDialog',
    props: { visible: { type: Boolean, default: false } },
    data() {
      return {
        showAll: false,
        loading: false,
        memberLoading: false,
        memberOptions: [],
        list: [],
        total: 0,
7606a6ad   “wangming”   fix: update produ...
116
        query: { yysj: undefined, yykh: undefined, dhsfyx: undefined, lxsj: undefined, gtfs: undefined, sfjt: undefined },
ad197adf   “wangming”   完成了基本的门店PC的设计
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
        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() } }
    },
    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')}`
      },
      loadMembers() {
7606a6ad   “wangming”   fix: update produ...
138
139
140
141
142
143
144
145
146
147
148
        request({
          url: '/api/Extend/LqKhxx?page=1&pageSize=10',
          method: 'GET'
        }).then(res => {
          if (res.code === 200 && res.data.list && res.data.list.length > 0) {
            this.memberOptions = res.data.list.map(item => ({
              value: item.id,
              label: item.khmc + (item.sjh ? '(' + item.sjh + ')' : '')
            }))
          }
        })
ad197adf   “wangming”   完成了基本的门店PC的设计
149
150
151
152
      },
      searchMember(keyword) {
        if (!keyword) { this.loadMembers(); return }
        this.memberLoading = true
7606a6ad   “wangming”   fix: update produ...
153
154
155
156
        request({
          url: '/api/Extend/LqKhxx?page=1&pageSize=20&keyword=' + keyword,
          method: 'GET'
        }).then(res => {
ad197adf   “wangming”   完成了基本的门店PC的设计
157
          this.memberLoading = false
7606a6ad   “wangming”   fix: update produ...
158
159
160
161
162
163
164
165
166
          if (res.code === 200 && res.data.list && res.data.list.length > 0) {
            this.memberOptions = res.data.list.map(item => ({
              value: item.id,
              label: item.khmc + (item.sjh ? '(' + item.sjh + ')' : '')
            }))
          } else {
            this.memberOptions = []
          }
        }).catch(() => { this.memberLoading = false })
ad197adf   “wangming”   完成了基本的门店PC的设计
167
168
169
      },
      initData() {
        this.loading = true
7606a6ad   “wangming”   fix: update produ...
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
        const params = {
          ...this.listQuery
        }
        if (this.query.yysj && this.query.yysj.length === 2) {
          params.yysj = this.query.yysj.join(',')
        }
        if (this.query.yykh) params.yykh = this.query.yykh
        if (this.query.dhsfyx) params.dhsfyx = this.query.dhsfyx
        if (this.query.lxsj && this.query.lxsj.length === 2) {
          params.lxsj = this.query.lxsj.join(',')
        }
        if (this.query.gtfs) params.gtfs = this.query.gtfs
        if (this.query.sfjt) params.sfjt = this.query.sfjt
        request({
          url: '/api/Extend/LqYaoyjl',
          method: 'GET',
          data: params
        }).then(res => {
          this.list = res.data.list || []
          this.total = res.data.pagination ? res.data.pagination.total : 0
          this.loading = false
        }).catch(() => {
ad197adf   “wangming”   完成了基本的门店PC的设计
192
          this.loading = false
7606a6ad   “wangming”   fix: update produ...
193
        })
ad197adf   “wangming”   完成了基本的门店PC的设计
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
      },
      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 .invite-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); }
  ::v-deep .invite-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 .invite-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 .invite-list-dialog .el-button--default { border-radius: 999px; }
  ::v-deep .invite-list-dialog .el-form-item { margin-bottom: 8px; }
  ::v-deep .invite-list-dialog .el-form-item__label { white-space: nowrap; }
  ::v-deep .invite-list-dialog .el-range-editor.el-input__inner { border-radius: 999px; }
  </style>