3f535f30
杨鑫
'初始'
|
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
|
</el-input>
</el-form-item>
<el-form-item>
<el-button
style="background-color: #3F9B6A;color: #fff;"
@click="onSubmit"
>查询
</el-button>
<el-button
class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="resetting"
>重置
</el-button>
</el-form-item>
</el-form>
</div>
<div style="padding-bottom:20px;">
<!-- <el-button
style="background-color: #3F9B6A;color: #fff;"
@click="resetting"
>导出
</el-button> -->
</div>
<!-- 表格 -->
<el-table
:data="tableData"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
>
<el-table-column
label="序号"
min-width="4%"
>
<template slot-scope="scope">
{{scope.$index+1}}
</template>
</el-table-column>
<el-table-column
label="商品名称"
prop="merchantName"
width="auto"
min-width="12%"
>
</el-table-column>
<el-table-column
label="订单编号"
prop="orderNo"
width="auto"
min-width="12%"
>
</el-table-column>
<el-table-column
label="订单金额"
prop="amount"
width="auto"
min-width="5%"
>
</el-table-column>
<el-table-column
label="支付金额"
prop="realAmount"
width="auto"
min-width="10%"
>
</el-table-column>
<el-table-column
prop="payId"
label="交易号"
width="auto"
min-width="10%"
>
</el-table-column>
<el-table-column
prop="createDate"
label="支付完成时间"
width="auto"
min-width="10%"
>
</el-table-column>
<el-table-column
prop="times"
label="对账日期"
width="auto"
min-width="10%"
>
</el-table-column>
<el-table-column
prop="zt"
label="核对状态"
width="auto"
min-width="10%"
>
</el-table-column>
<el-table-column
label="操作"
width="auto"
min-width="17%">
<template slot-scope="scope">
<div @click="addbuss(scope.row,scope.$index)" class="tableBtn greens">对账</div>
</template>
</el-table-column>
</el-table>
<div class="fenye">
<el-pagination
class="pagination"
:hide-on-single-page="flag"
background
small
:current-page="currentPage"
:page-sizes="[10, 20, 50, 100]"
:page-size="pageSize"
layout="total,sizes,prev, pager,next"
:total="total "
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
</div>
</div>
</div>
</template>
<script>
import {merchantQueries} from '../../../api/online.js'
export default {
data () {
return {
rules: {},
currentPage: 1,
total: 100,
flag: false,
pageSize: 10,
ggXin: false,
index:1,
|
3f535f30
杨鑫
'初始'
|
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
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
|
tableData: [],
pageindex: {
merchantId:'9E602E5977EC48DEA06D42C67F4C93F0',
page: 1,
limit: 10,
orderTimeStart:'',
orderTimeEnd:'',
},
}
},
computed: {},
mounted(){
this.getOrder()
},
methods: {
async getOrder(){
this.getFirstDayOfYear()
this.getLastDayOfYear()
const res = await merchantQueries(this.pageindex)
this.tableData = JSON.parse(res.data).records
this.total = JSON.parse(res.data).records.length
},
getFirstDayOfYear() {
const now = new Date();
const year = now.getFullYear();
const firstDay = new Date(year, 0, 1, 0, 0, 0, 0);
this.pageindex.orderTimeStart = this.formatDate(firstDay);
},
getLastDayOfYear() {
const now = new Date()
const year = now.getFullYear()
const lastDay = new Date(year, 11, 31, 23, 59, 59, 999)
this.pageindex.orderTimeEnd = this.formatDate(lastDay)
},
formatDate(date) {
const year = date.getFullYear()
const month = String(date.getMonth() + 1).padStart(2, '0')
const day = String(date.getDate()).padStart(2, '0')
const hours = String(date.getHours()).padStart(2, '0')
const minutes = String(date.getMinutes()).padStart(2, '0')
const seconds = String(date.getSeconds()).padStart(2, '0')
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
},
addbuss (item,val) {
const h = this.$createElement;
this.$msgbox({
title: '对账',
message: h('p', null, [
h('span', null, '是否已对账 '),
]),
showCancelButton: true,
showClose:false,
confirmButtonText: '确定',
cancelButtonText: '取消',
customClass:'oe-dialog-btn',
beforeClose: (action, instance, done) => {
if (action === 'confirm') {
|
3f535f30
杨鑫
'初始'
|
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
done();
} else {
done();
}
}
})
},
onSubmit(){
if(this.formInline.paryTime.length !=0){
this.pageindex.orderTimeStart = this.formInline.paryTime[0]
this.pageindex.orderTimeEnd = this.formInline.paryTime[1]
const res = merchantQueries(this.pageindex).then(res=>{
this.tableData = JSON.parse(res.data).records
this.total = JSON.parse(res.data).records.length
})
}
},
resetting(){
this.pageindex={
merchantId:'9E602E5977EC48DEA06D42C67F4C93F0',
page: 1,
limit: 10,
orderTimeStart:'',
orderTimeEnd:'',
}
this.getOrder()
},
handleSizeChange(){
},
handleCurrentChange(){
},
closeFn () {
this.ggXin = false
this.index = 1
}
}
}
</script>
<style scoped >
.zhuti {
padding: 0 20px 20px 20px;
min-height: calc(100vh - 50px - 20px);
background-color: #Fff;
position: relative;
}
/deep/ .el-form-item__content {
line-height: 0;
}
|