1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
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
223
224
225
226
| <template>
| <page-header-wrapper
| :breadcrumb="false"
| >
| <a-card :bordered="false">
| <div class="table-page-search-wrapper" style="background-color: #fff;">
| <a-form layout="inline">
| <a-row :gutter="48">
| <a-col :md="8" :sm="24">
| <a-form-item label="用户id">
| <a-input v-model="queryParam.memberid" placeholder="请输入用户id查询"/>
| </a-form-item>
| </a-col>
| <!-- <a-col :md="8" :sm="24">
| <a-form-item label="日期">
| <a-range-picker v-model="queryParam.rangetime"/>
| </a-form-item>
| </a-col> -->
| <a-col :md="8" :sm="24">
| <a-form-item>
| <a-button type="primary" @click="onSearch">查询</a-button>
| </a-form-item>
| </a-col>
| </a-row>
| </a-form>
| </div>
| <!-- <div>
| <a-button style="margin-bottom: 10px;" type="primary" @click="createtask">新建任务</a-button>
| </div> -->
| <a-table
| rowKey="id"
| ref="table"
| size="default"
| :pagination="pagination"
| :columns="columns"
| :data-source="data"
| :loading="loading"
| >
| <span v-if="record.sendstatus==6" slot="action" slot-scope="text, record">
| <!-- <template>
| <a-popconfirm
| title="是否确认删除该任务?"
| ok-text="是"
| cancel-text="否"
| @confirm="delRecord(record)"
| >
| <a>删除</a>
| </a-popconfirm>
| </template> -->
|
| <template>
| <a-popconfirm
| title="是否确认激活该任务?"
| ok-text="是"
| cancel-text="否"
| @confirm="handleStop(record)"
| >
| <a>激活</a>
| </a-popconfirm>
| </template>
| </span>
| <span v-else>
| --
| </span>
| </a-table>
| </a-card>
|
| </page-header-wrapper>
| </template>
|
| <script>
| import { ref } from 'vue'
|
| import { GetAllSmsSend,DeleteSmsSend,ActivateSmsSend } from '@/api/smsapi'
| const columns = [
| {
| title: '用户id',
| dataIndex: 'memberid'
| },
| {
| title: '发送手机号',
| dataIndex: 'mobile'
| },
| {
| title: '定时类型',
| dataIndex: 'wantsendtype',
| width: '150px',
| customRender: (text, record) => text == '1' ? '立即发送' : ('定时发送:' + record.wantsendtime)
| },
| {
| title: '创建时间',
| dataIndex: 'createtime',
| with: '100px'
| },
| {
| title: '发送时间',
| dataIndex: 'sendtime'
| },
| {
| title: '短信内容',
| dataIndex: 'smsname',
| ellipsis: true,
| customRender: (text, record) => record.smscontent
| },
| {
| title: '发送状态',
| dataIndex: 'sendstatus',
| customRender: (text, record) => {
| switch (text) {
| case 0:
| return '审核中';
| case 1:
| return '审核成功';
| case 2:
| return '审核失败';
| case 3:
| return '等待发送';
| case 4:
| return '发送中';
| case 5:
| return '发送成功';
| case 6:
| return '发送失败';
| case 7:
| return '接收中';
| case 8:
| return '接收成功';
| case 9:
| return '接收失败';
| default:
| return '异常'
| }
| }
| },
| {
| title: '操作',
| dataIndex: 'action',
| scopedSlots: { customRender: 'action' }
| }
| ]
| export default {
| name: 'smslist',
| components: {
| },
| data () {
| return {
| queryParam: {},
|
| columns,
| loading: false,
| data: [],
| pagination: {
| current: 1,
| pageSize: 10,
| total: 0,
| pageSizeOptions: ['10', '20'],
| onChange: this.onPageChange,
| onShowSizeChange: this.onPageChange
| }
| }
| },
| setup () {
|
| },
| created () {
| this.onSearch()
| },
| methods: {
|
| // 删除任务
| delRecord (record) {
| const parameter = {
| id: record.id
| }
| DeleteSmsSend(parameter).then(res => {
| if (res.result) {
| this.$message.success(`操作成功!`)
| } else {
| this.$message.error(`操作失败!`)
| }
| }).finally(() => {
| this.onSearch()
| })
| },
| // 激活任务
| activateSmsSend (record) {
| const parameter = {
| id: record.id
| }
| ActivateSmsSend(parameter).then(res => {
| if (res.result) {
| this.$message.success(`操作成功!`)
| } else {
| this.$message.error(`操作失败!`)
| }
| }).finally(() => {
| this.onSearch()
| })
| },
| onPageChange (current, size) {
| this.pagination.current = current
| this.pagination.pageSize = size
| this.onSearch()
| },
| onSearch () {
| this.loading = true
| var parameter = {
| PageNo: this.pagination.current,
| PageSize: this.pagination.pageSize,
| MemberId: this.queryParam.memberid
| }
| GetAllSmsSend(parameter).then(res => {
| this.data = res.result.data
| this.pagination.total = res.result.totalCount
| }).finally(() => {
| this.loading = false
| })
| },
| createtask () {
| this.$router.push({ path: '/opmarketing/smsSend' })
| }
|
| }
| }
| </script>
|
|
|