|  | @@ -129,8 +129,7 @@
 | 
											
												
													
														|  |          </el-table>
 |  |          </el-table>
 | 
											
												
													
														|  |        </div>
 |  |        </div>
 | 
											
												
													
														|  |        <div class="dialog-pagination">
 |  |        <div class="dialog-pagination">
 | 
											
												
													
														|  | -        <el-pagination layout="prev, pager, next" :total="waterData.length" :page-size="5"
 |  | 
 | 
											
												
													
														|  | -          @current-change="waterChange">
 |  | 
 | 
											
												
													
														|  | 
 |  | +        <el-pagination layout="prev, pager, next" :total="waterTotal" :page-size="5" @current-change="waterChange">
 | 
											
												
													
														|  |          </el-pagination>
 |  |          </el-pagination>
 | 
											
												
													
														|  |        </div>
 |  |        </div>
 | 
											
												
													
														|  |      </el-dialog>
 |  |      </el-dialog>
 | 
											
										
											
												
													
														|  | @@ -181,6 +180,7 @@ export default {
 | 
											
												
													
														|  |        confirmInfo: "确认信息",
 |  |        confirmInfo: "确认信息",
 | 
											
												
													
														|  |        // 流水信息表格数据
 |  |        // 流水信息表格数据
 | 
											
												
													
														|  |        waterData: [],
 |  |        waterData: [],
 | 
											
												
													
														|  | 
 |  | +      waterTotal: null,
 | 
											
												
													
														|  |        watherInfo: {},
 |  |        watherInfo: {},
 | 
											
												
													
														|  |        // 获取流水数据参数
 |  |        // 获取流水数据参数
 | 
											
												
													
														|  |        watherParameter: {
 |  |        watherParameter: {
 | 
											
										
											
												
													
														|  | @@ -296,23 +296,35 @@ export default {
 | 
											
												
													
														|  |              inputErrorMessage: '输入的拒绝打款理由不能为空!!!'
 |  |              inputErrorMessage: '输入的拒绝打款理由不能为空!!!'
 | 
											
												
													
														|  |            }).then(({ value }) => {
 |  |            }).then(({ value }) => {
 | 
											
												
													
														|  |              this.rejectReason = value
 |  |              this.rejectReason = value
 | 
											
												
													
														|  | -            // console.log(value);
 |  | 
 | 
											
												
													
														|  | 
 |  | +            //  二次确认是否拒绝打款
 | 
											
												
													
														|  | 
 |  | +            this.$confirm('此操作将决绝为该用户打款, 是否继续?', '提示', {
 | 
											
												
													
														|  | 
 |  | +              confirmButtonText: '确定',
 | 
											
												
													
														|  | 
 |  | +              cancelButtonText: '取消',
 | 
											
												
													
														|  | 
 |  | +              type: 'warning'
 | 
											
												
													
														|  | 
 |  | +            }).then(async () => {
 | 
											
												
													
														|  | 
 |  | +              const res = await applicationHandle({
 | 
											
												
													
														|  | 
 |  | +                withdrawalId: this.dioObj.arr.withdrawalId,
 | 
											
												
													
														|  | 
 |  | +                state: 2,
 | 
											
												
													
														|  | 
 |  | +                rejectReason: this.rejectReason
 | 
											
												
													
														|  | 
 |  | +              })
 | 
											
												
													
														|  | 
 |  | +              if (res.code === '') {
 | 
											
												
													
														|  | 
 |  | +                this.$message.success('成功拒绝打款')
 | 
											
												
													
														|  | 
 |  | +                this.dioObj.show = false
 | 
											
												
													
														|  | 
 |  | +                this.getAll(this.formInline)
 | 
											
												
													
														|  | 
 |  | +              }
 | 
											
												
													
														|  | 
 |  | +            }).catch(() => {
 | 
											
												
													
														|  | 
 |  | +              this.$message({
 | 
											
												
													
														|  | 
 |  | +                type: 'info',
 | 
											
												
													
														|  | 
 |  | +                message: '已取消拒绝打款'
 | 
											
												
													
														|  | 
 |  | +              });
 | 
											
												
													
														|  | 
 |  | +            });
 | 
											
												
													
														|  |              this.infoList.push({ name: "拒绝打款理由", value: value, fields: 'rejectReason' })
 |  |              this.infoList.push({ name: "拒绝打款理由", value: value, fields: 'rejectReason' })
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |            }).catch(() => {
 |  |            }).catch(() => {
 | 
											
												
													
														|  |              this.rejectReason = ""
 |  |              this.rejectReason = ""
 | 
											
												
													
														|  |            });
 |  |            });
 | 
											
												
													
														|  |            return false
 |  |            return false
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  | -        const res = await applicationHandle({
 |  | 
 | 
											
												
													
														|  | -          withdrawalId: this.dioObj.arr.withdrawalId,
 |  | 
 | 
											
												
													
														|  | -          state: 2,
 |  | 
 | 
											
												
													
														|  | -          rejectReason: this.rejectReason
 |  | 
 | 
											
												
													
														|  | -        })
 |  | 
 | 
											
												
													
														|  | -        if (res.code === '') {
 |  | 
 | 
											
												
													
														|  | -          this.$message.success('成功拒绝打款')
 |  | 
 | 
											
												
													
														|  | -          this.dioObj.show = false
 |  | 
 | 
											
												
													
														|  | -          this.getAll(this.formInline)
 |  | 
 | 
											
												
													
														|  | -        }
 |  | 
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      // 查询详情
 |  |      // 查询详情
 | 
											
										
											
												
													
														|  | @@ -365,6 +377,7 @@ export default {
 | 
											
												
													
														|  |        try {
 |  |        try {
 | 
											
												
													
														|  |          let res = await getWaterRecord(this.watherParameter)
 |  |          let res = await getWaterRecord(this.watherParameter)
 | 
											
												
													
														|  |          this.waterData = res.data.list
 |  |          this.waterData = res.data.list
 | 
											
												
													
														|  | 
 |  | +        this.waterTotal = res.data.total
 | 
											
												
													
														|  |          this.watherFlag = false
 |  |          this.watherFlag = false
 | 
											
												
													
														|  |        } catch (error) {
 |  |        } catch (error) {
 | 
											
												
													
														|  |  
 |  |  
 |