Blame view

yanshouban/src/views/online/detailQuery/index.vue 12.4 KB
6ee6b0b7   杨鑫   '最新'
1
2
3
4
5
6
7
8
9
10
11
12
13
  <template>
    <div style="background-color:#f7f7f7;padding:10px 10px;">
      <div class="zhuti">
        <div style="height:58px;line-height:58px;">
          <div style="color:#0006"> <span>交易联机</span> <span style="padding:0 5px;">></span> <span
              style="color:#000000e6">交易明细</span></div>
        </div>
        <div>
  
          <!-- 搜索 -->
          <div class="formSearch">
            <el-form
              :inline="true"
8550d958   杨鑫   '最新'
14
              :model="pageindex"
6ee6b0b7   杨鑫   '最新'
15
16
              label-position="left"
            >
8550d958   杨鑫   '最新'
17
18
  
  
a6a3878d   杨鑫   最新绿道
19
              <el-form-item label="" v-if="concat.one">
6ee6b0b7   杨鑫   '最新'
20
21
22
23
                <el-input
                  placeholder="请输入订单号"
  
                  style="width: 168px"
a6a3878d   杨鑫   最新绿道
24
                  v-model="pageindex.orderFormId">
6ee6b0b7   杨鑫   '最新'
25
26
27
                </el-input>
              </el-form-item>
  
a6a3878d   杨鑫   最新绿道
28
              <el-form-item label="账单金额"  v-if="concat.two">
6ee6b0b7   杨鑫   '最新'
29
30
31
32
33
                  <div>
                    <el-input
                      placeholder="请输入"
  
                      style="width: 168px"
a6a3878d   杨鑫   最新绿道
34
                      v-model="pageindex.minPrice">
6ee6b0b7   杨鑫   '最新'
35
                    </el-input>
8550d958   杨鑫   '最新'
36
  
6ee6b0b7   杨鑫   '最新'
37
38
39
40
                    <el-input
                      placeholder="请输入"
  
                      style="width:168px"
a6a3878d   杨鑫   最新绿道
41
                      v-model="pageindex.maxPrice">
6ee6b0b7   杨鑫   '最新'
42
43
44
                    </el-input>
                  </div>
              </el-form-item>
a6a3878d   杨鑫   最新绿道
45
              <el-form-item label="支付记录查询"  v-if="concat.three">
6ee6b0b7   杨鑫   '最新'
46
               <el-select
a6a3878d   杨鑫   最新绿道
47
                 v-model="pageindex.paymentState"
6ee6b0b7   杨鑫   '最新'
48
49
50
51
                 placeholder="请选择"
  
                 style="width: 100px;"
               >
a6a3878d   杨鑫   最新绿道
52
53
54
55
                 <el-option label="未支付
  " value="0" />
   <el-option label="已支付
  " value="1" />
6ee6b0b7   杨鑫   '最新'
56
57
               </el-select>
              </el-form-item>
a6a3878d   杨鑫   最新绿道
58
59
60
61
62
63
64
65
66
67
68
              <el-form-item label="退款记录查询"  v-if="concat.three">
                           <el-select
                             v-model="pageindex.paymentState"
                             placeholder="请选择"
              
                             style="width: 100px;"
                           >
              <el-option label="已退款
              " value="2" />
                           </el-select>
                          </el-form-item>
6ee6b0b7   杨鑫   '最新'
69
            </el-form>
a6a3878d   杨鑫   最新绿道
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  		<div>
  			<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>
  		</div>
6ee6b0b7   杨鑫   '最新'
85
          </div>
a6a3878d   杨鑫   最新绿道
86
87
88
89
  		<div style="margin-bottom:20px;">
  			<el-button style="background-color: #3F9B6A;color: #fff;" @click="conShow=true">查询条件设置
  			</el-button>
  		</div>
6ee6b0b7   杨鑫   '最新'
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
          <!-- 表格 -->
          <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="订单号"
a6a3878d   杨鑫   最新绿道
105
              prop="orderFormId"
6ee6b0b7   杨鑫   '最新'
106
107
              min-width="12%"
            >
8550d958   杨鑫   '最新'
108
  
6ee6b0b7   杨鑫   '最新'
109
110
111
112
113
114
            </el-table-column>
            <el-table-column
              label="交易号"
              prop="payId"
              width="auto"
              min-width="12%"
a6a3878d   杨鑫   最新绿道
115
  			show-overflow-tooltip
6ee6b0b7   杨鑫   '最新'
116
117
118
119
120
            >
  
            </el-table-column>
            <el-table-column
              label="账单金额"
a6a3878d   杨鑫   最新绿道
121
              prop="price"
6ee6b0b7   杨鑫   '最新'
122
              width="auto"
a6a3878d   杨鑫   最新绿道
123
              min-width="7%"
6ee6b0b7   杨鑫   '最新'
124
125
126
127
128
            >
  
            </el-table-column>
            <el-table-column
              label="支付方式"
a6a3878d   杨鑫   最新绿道
129
              prop="paymentMode"
6ee6b0b7   杨鑫   '最新'
130
131
132
133
              width="auto"
              min-width="10%"
  
            >
a6a3878d   杨鑫   最新绿道
134
135
136
137
  		  <template slot-scope="scope">
  		    {{scope.row.paymentMode=='1'?'微信':''}}
  		  
  		  </template>
6ee6b0b7   杨鑫   '最新'
138
139
            </el-table-column>
            <el-table-column
a6a3878d   杨鑫   最新绿道
140
              prop="createTime"
6ee6b0b7   杨鑫   '最新'
141
142
143
              label="交易创建时间"
              width="auto"
              min-width="10%"
a6a3878d   杨鑫   最新绿道
144
  show-overflow-tooltip
6ee6b0b7   杨鑫   '最新'
145
146
147
148
            >
  
            </el-table-column>
            <el-table-column
a6a3878d   杨鑫   最新绿道
149
              prop="payType"
6ee6b0b7   杨鑫   '最新'
150
151
152
153
154
              label="交易类型"
              width="auto"
              min-width="10%"
  
            >
a6a3878d   杨鑫   最新绿道
155
156
157
158
  <template slot-scope="scope">
  		  {{scope.row.payType=='1'?'线上支付':''}}
  		
  		</template>
6ee6b0b7   杨鑫   '最新'
159
160
            </el-table-column>
  <el-table-column
a6a3878d   杨鑫   最新绿道
161
              prop="paymentState"
6ee6b0b7   杨鑫   '最新'
162
163
164
165
166
              label="交易状态"
              width="auto"
              min-width="10%"
  
            >
a6a3878d   杨鑫   最新绿道
167
168
169
170
  		<template slot-scope="scope">
  				  {{scope.row.paymentState=='1'?'已支付':'未支付'}}
  				
  				</template>
6ee6b0b7   杨鑫   '最新'
171
            </el-table-column>
a6a3878d   杨鑫   最新绿道
172
            
6ee6b0b7   杨鑫   '最新'
173
174
175
            <el-table-column
              label="操作"
              width="auto"
a6a3878d   杨鑫   最新绿道
176
              min-width="5%">
6ee6b0b7   杨鑫   '最新'
177
178
179
180
181
182
183
              <template slot-scope="scope">
                <div @click="addbuss(scope.row)" class="tableBtn greens">查看</div>
  
              </template>
            </el-table-column>
          </el-table>
          <div class="fenye">
a6a3878d   杨鑫   最新绿道
184
  			<div>共{{total}}条</div>
6ee6b0b7   杨鑫   '最新'
185
186
187
188
            <el-pagination
              class="pagination"
              :hide-on-single-page="flag"
              background
a6a3878d   杨鑫   最新绿道
189
              :current-page="pageindex.pageNumber+1"
6ee6b0b7   杨鑫   '最新'
190
              :page-sizes="[10, 20, 50, 100]"
a6a3878d   杨鑫   最新绿道
191
192
193
              :page-size="pageindex.pageSize"
              layout="prev, pager,next"
              :total="total"
6ee6b0b7   杨鑫   '最新'
194
195
196
197
198
199
200
201
202
              @size-change="handleSizeChange"
              @current-change="handleCurrentChange"
            />
          </div>
  
  
          <el-dialog title="详情"  :visible.sync="ggXin" custom-class="diaslog_zhong" style="padding: 0;" width="80%" class="dialog_css_Xq"  center :close-on-click-modal="false" :show-close="false"	>
                      <div >
                            <el-descriptions :column="2">
a6a3878d   杨鑫   最新绿道
203
204
205
206
207
208
209
210
211
212
213
                                <el-descriptions-item label="用户名称">{{rules.shopName}}</el-descriptions-item>
                                <el-descriptions-item label="商户号">{{rules.shopCode}}</el-descriptions-item>
                                <el-descriptions-item label="交易类型">{{rules.payType=='1'?'线上支付':''}}</el-descriptions-item>
                                <el-descriptions-item label="交易状态">{{rules.payStatus}}</el-descriptions-item>
                                <el-descriptions-item label="订单金额(元)">{{rules.price}}</el-descriptions-item>
                                <el-descriptions-item label="交易金额(元)">{{rules.realPrice}}</el-descriptions-item>
                                <el-descriptions-item label="交易创建时间">{{rules.createTime}}</el-descriptions-item>
                                <el-descriptions-item label="交易完成时间">{{rules.payTime}}</el-descriptions-item>
                                <el-descriptions-item label="支付工具">{{rules.paymentMode=='1'?'微信':''}}</el-descriptions-item>
                                <el-descriptions-item label="商户订单号">{{rules.orderFormId}}</el-descriptions-item>
                                <el-descriptions-item label="系统交易订单号">{{rules.subOrderId}}</el-descriptions-item>
6ee6b0b7   杨鑫   '最新'
214
215
216
217
218
219
220
221
222
223
                            </el-descriptions>
  
                            <div style="display: flex;justify-content: flex-end;">
                              <el-button  @click="closeFn(1)"  style="background-color: #fff;color: #000;width: 70px;height: 30px;border-color: #B2B2B2;">返回</el-button>
                            <!-- <el-button  @click="addCheck(0)"  style="background-color: #3F9B6A;color: #fff;width: 70px;height: 30px;border-color: #3F9B6A;">发起退款</el-button> -->
                              </div>
                      </div>
          </el-dialog>
        </div>
      </div>
a6a3878d   杨鑫   最新绿道
224
225
226
227
228
229
230
231
232
233
234
235
236
237
  <el-dialog title="查询条件设置" :visible.sync="conShow"  style="padding: 0;" width="30%" center
  			:close-on-click-modal="false">
  		 <div style="padding: 20px;">
  			<div><el-checkbox v-model="concat.one" label="订单号"></el-checkbox></div> 
  			<div><el-checkbox v-model="concat.two" label="账单金额"></el-checkbox></div>
  			<div><el-checkbox v-model="concat.three" label="交易状态"></el-checkbox></div>
  		 </div>
  			<div style="display: flex;justify-content: flex-end;padding: 0px;">
  				<el-button @click="close" class="buttonHover"
  					style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">返回</el-button>
  				<el-button @click="Check" 
  					style="background-color: #3F9B6A;color: #fff;padding:8px 15px;">确定</el-button>
  			</div>
  		</el-dialog>
6ee6b0b7   杨鑫   '最新'
238
239
240
241
242
243
244
245
246
    </div>
  </template>
  
  <script>
  import {merchantQueries} from '../../../api/online.js'
  export default {
    data () {
      return {
        rules: {},
a6a3878d   杨鑫   最新绿道
247
        total: 0,
6ee6b0b7   杨鑫   '最新'
248
        flag: false,
6ee6b0b7   杨鑫   '最新'
249
        ggXin: false,
6ee6b0b7   杨鑫   '最新'
250
        pageindex: {
a6a3878d   杨鑫   最新绿道
251
252
253
254
255
256
          orderFormId:'',
          paymentState:'',
          pageSize: 10,
           pageNumber: 0,
          minPrice:'',
          maxPrice:'',
6ee6b0b7   杨鑫   '最新'
257
        },
a6a3878d   杨鑫   最新绿道
258
259
260
261
262
263
264
        tableData: [],
  	  conShow:false,
  	  concat:{
  		  one:true,
  		  two:true,
  		  three:true
  	  }
6ee6b0b7   杨鑫   '最新'
265
266
267
268
269
270
271
      }
    },
    computed: {},
    mounted(){
      this.getOrder()
    },
    methods: {
a6a3878d   杨鑫   最新绿道
272
273
274
275
276
277
278
279
280
281
282
  	  close(){
  		  this.concat = {
  		  one:true,
  		  two:true,
  		  three:true
  	  }
  		this.conShow = false
  	  },
  	  Check(){
  		this.conShow = false
  	  },
6ee6b0b7   杨鑫   '最新'
283
      async getOrder(){
6ee6b0b7   杨鑫   '最新'
284
       const res =   await merchantQueries(this.pageindex)
a6a3878d   杨鑫   最新绿道
285
286
        this.tableData = res.data.content
      this.total = res.data.totalElements
6ee6b0b7   杨鑫   '最新'
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
  
        },
        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) {
        this.ggXin = true
a6a3878d   杨鑫   最新绿道
312
  	  this.rules = item
6ee6b0b7   杨鑫   '最新'
313
314
315
316
      },
  
      onSubmit(){
  
a6a3878d   杨鑫   最新绿道
317
  	this.pageindex.pageNumber = 0
8550d958   杨鑫   '最新'
318
        this.getOrder()
6ee6b0b7   杨鑫   '最新'
319
320
321
322
  
          },
          resetting(){
            this.pageindex={
a6a3878d   杨鑫   最新绿道
323
324
325
326
327
328
          orderFormId:'',
          paymentState:'',
          pageSize: 10,
           pageNumber: 0,
          minPrice:'',
          maxPrice:'',
8550d958   杨鑫   '最新'
329
        }
6ee6b0b7   杨鑫   '最新'
330
331
332
          this.getOrder()
  
          },
a6a3878d   杨鑫   最新绿道
333
      handleSizeChange(val){
6ee6b0b7   杨鑫   '最新'
334
335
  
      },
a6a3878d   杨鑫   最新绿道
336
337
338
      handleCurrentChange(val){
  	this.pageindex.pageNumber = val-1
  	this.getOrder()
6ee6b0b7   杨鑫   '最新'
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
      },
      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;
  }
  
  .tableBtn {
    display: inline-block;
    margin-right: 10px;
  }
  
  ::v-deep .formSearch {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    height: 30px;
    font-size: 14px;
    justify-content: space-between;
    .el-form-item__label{
      line-height: 28px;
      font-size: 14px;
      color: #000;
      font-weight: 100;
    }
  }
  
  .greens {
    color: #3F9B6A;
  }
  
  /deep/ .el-table__row {
    font-size: 14px;
  }
  
  .fenye {
    margin-top: 20px;
    display: flex;
a6a3878d   杨鑫   最新绿道
392
    justify-content:space-between;
6ee6b0b7   杨鑫   '最新'
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
    position: relative;
  }
  
  /deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #3F9B6A;
  }
  
  .el-row {
    margin-bottom: 20px;
  }
  :last-child {
    margin-bottom: 0;
  }
  
  .el-col {
    border-radius: 4px;
  }
  
  .bg-purple-dark {
    background: #99a9bf;
  }
  
  .bg-purple {
    background: #d3dce6;
  }
  
  .bg-purple-light {
    background: #e5e9f2;
  }
  
  .grid-content {
    border-radius: 4px;
    min-height: 36px;
  }
  
  .row-bg {
    padding: 10px 0;
    background-color: #f9fafc;
  }
  
  /deep/ .bg-purple[data-v-0e3fe4ec] {
    background: #fff;
    height: 50px;
  }
  
  /deep/ .el-form--label-top .el-form-item__label {
    padding: 0;
  }
  .demo-input-suffix{
    display: flex;
    margin-right: 20px;
  }
  .pagination{
    text-align:right;
    line-height: 20px;
  }
  /deep/ .el-pagination__total{
    margin-top:4px;
  }
a6a3878d   杨鑫   最新绿道
452
  
6ee6b0b7   杨鑫   '最新'
453
454
455
456
457
458
459
  ::v-deep .buttonHover:hover {
      color: #3f9b6a !important;
      border-color: #c5e1d2 !important;
      background-color: #ecf5f0 !important;
      outline: none;
    }
  </style>