|
@@ -1,457 +1,191 @@
|
|
|
<template>
|
|
|
- <div class="custom_page">
|
|
|
- <div class="content">
|
|
|
- <!-- 顶部搜索 -->
|
|
|
- <div class="toolbar">
|
|
|
- <!-- 顶部搜索 -->
|
|
|
- <el-form :inline="true" :model="formInline">
|
|
|
- <el-form-item label="用户名称">
|
|
|
- <el-input v-model="formInline.name" maxlength="20" placeholder="请输入" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="手机号">
|
|
|
- <el-input v-model="formInline.phone" maxlength="11" placeholder="请输入" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="提现状态">
|
|
|
- <el-select v-model="formInline.state" placeholder="请选择">
|
|
|
- <el-option label="全部" :value="null" />
|
|
|
- <el-option label="待审核" value="0" />
|
|
|
- <el-option label="打款中" value="1" />
|
|
|
- <el-option label="通过" value="1" />
|
|
|
- <el-option label="拒绝" value="2" />
|
|
|
- <el-option label="打款成功" value="3" />
|
|
|
- <el-option label="打款失败" value="4" />
|
|
|
- <el-option label="待确认" value="5" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label-width="0">
|
|
|
- <el-button type="primary" plain @click="search">查询</el-button>
|
|
|
- <el-button plain @click="clear">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <!-- 表格 -->
|
|
|
- <div class="content_table">
|
|
|
- <div class="table">
|
|
|
- <el-table
|
|
|
- v-loading="tableLoading" :data="tableData" border
|
|
|
- :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" style="width: 100%"
|
|
|
- >
|
|
|
- >
|
|
|
- <el-table-column prop="orderSn" label="流水号"></el-table-column>
|
|
|
- <el-table-column prop="name" label="用户名称" />
|
|
|
- <el-table-column prop="phone" label="手机号码" />
|
|
|
- <el-table-column prop="withdrawalMoney" label="提现金额" />
|
|
|
- <el-table-column prop="cost" label="手续费"></el-table-column>
|
|
|
- <el-table-column label="处理状态">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.state == 0">审核中</span>
|
|
|
- <!-- <span v-if="scope.row.state == 1">打款中</span> -->
|
|
|
- <span v-if="scope.row.state == 1">通过</span>
|
|
|
- <span v-if="scope.row.state == 2">拒绝</span>
|
|
|
- <span v-if="scope.row.state == 3">打款成功</span>
|
|
|
- <span v-if="scope.row.state == 4">打款失败</span>
|
|
|
- <span v-if="scope.row.state == 5">待确认</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="applyTime" label="申请时间"></el-table-column>
|
|
|
- <el-table-column label="操作" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <div class="btnList">
|
|
|
- <el-button v-if="scope.row.state == 1" type="text" @click="del(scope.row)">处理</el-button>
|
|
|
- <el-button v-else-if="scope.row.state !== 0" type="text" @click="seeMore(scope.row)">查看</el-button>
|
|
|
- <el-button v-else type="text" @click="del(scope.row)">处理</el-button>
|
|
|
- <el-button v-if="scope.row.state !== 3" type="text" @click="confirmTong(scope.row)">通联确认</el-button>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- <div class="fenye">
|
|
|
- <el-pagination
|
|
|
- :current-page="currentPage" :page-sizes="[10, 20, 50, 100]" :page-size="10"
|
|
|
- layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handleSizeChange"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div class="app-container">
|
|
|
+ <!-- 查询和其他操作 -->
|
|
|
+ <div class="filter-container">
|
|
|
+ <el-input
|
|
|
+ v-model="listQuery.name" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;"
|
|
|
+ placeholder="请输入用户名称"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ v-model="listQuery.phone" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;margin-left: 10px;" placeholder="请输入手机号"
|
|
|
+ />
|
|
|
+ <el-select
|
|
|
+ v-model="listQuery.state" clearable size="mini" class="filter-item"
|
|
|
+ style="width: 200px;margin-left: 10px;" placeholder="请选择提现状态"
|
|
|
+ >
|
|
|
+ <el-option label="全部" :value="null" />
|
|
|
+ <el-option label="待审核" value="0" />
|
|
|
+ <el-option label="打款中" value="1" />
|
|
|
+ <el-option label="通过" value="1" />
|
|
|
+ <el-option label="拒绝" value="2" />
|
|
|
+ <el-option label="打款成功" value="3" />
|
|
|
+ <el-option label="打款失败" value="4" />
|
|
|
+ <el-option label="待确认" value="5" />
|
|
|
+ </el-select>
|
|
|
+ <el-button
|
|
|
+ size="mini" class="filter-item" type="primary" icon="el-icon-search"
|
|
|
+ style="margin-left: 10px;"
|
|
|
+ @click="handleSearch"
|
|
|
+ >
|
|
|
+ 查找
|
|
|
+ </el-button>
|
|
|
+ <el-button size="mini" type="info" class="filter-item" @click="handleReset">
|
|
|
+ 重置
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
|
|
|
- <!-- 详情弹框 -->
|
|
|
- <el-dialog
|
|
|
- :visible.sync="dioObj.show" :title="dioObj.title" width="40%" center
|
|
|
- :close-on-click-modal="false"
|
|
|
- @close="closeDialog"
|
|
|
- >
|
|
|
- <div class="box">
|
|
|
- <div class="dioBox">
|
|
|
- <div v-for="(item, index) in infoList" :key="index" class="inner">{{ item.name }}:{{ item.value }}</div>
|
|
|
- </div>
|
|
|
- <div v-if="dioObj.type === 2" class="botTitle">*请确认您已转账成功,再点击确认</div>
|
|
|
- </div>
|
|
|
- <template #footer>
|
|
|
- <span class="dialog-footer">
|
|
|
- <el-button v-if="dioObj.type === 2" type="primary" @click="agreeEn(1)">{{ confirmInfo }}</el-button>
|
|
|
- <el-button v-if="dioObj.type === 2" type="danger" @click="agreeEn(2)">拒绝打款</el-button>
|
|
|
- <el-button v-if="dioObj.type === 1" @click="closeDialog">关 闭</el-button>
|
|
|
- </span>
|
|
|
- </template>
|
|
|
- <div class="statistics">
|
|
|
- <div class="statistics-item">
|
|
|
- <h1>{{ watherInfo.price }}</h1>
|
|
|
- <p>账户可提现金额</p>
|
|
|
- </div>
|
|
|
- <div class="statistics-item">
|
|
|
- <h1>{{ watherInfo.totalPrice }}</h1>
|
|
|
- <p>账户总金额</p>
|
|
|
- </div>
|
|
|
- <div class="statistics-item">
|
|
|
- <h1>{{ watherInfo.pendingWithdrawal }}</h1>
|
|
|
- <p>提现中</p>
|
|
|
- </div>
|
|
|
- <div class="statistics-item">
|
|
|
- <h1>{{ watherInfo.alreadyPrice }}</h1>
|
|
|
- <p>已提现</p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="tabbar-list">
|
|
|
- <el-table
|
|
|
- v-loading="watherFlag" :data="waterData" border
|
|
|
- :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" style="width: 100%"
|
|
|
- >
|
|
|
- >
|
|
|
- <el-table-column prop="price" label="支付金额"></el-table-column>
|
|
|
- <el-table-column prop="paymentTime" label="支付时间" />
|
|
|
- <el-table-column prop="customerName" label="支付名称" />
|
|
|
- <el-table-column prop="customerPhone" label="支付电话" />
|
|
|
- <el-table-column prop="transactionId" label="通联流水号" />
|
|
|
- <el-table-column label="来源类型">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.type == 1">关系链</span>
|
|
|
- <span v-if="scope.row.type == 2">商城</span>
|
|
|
- <span v-if="scope.row.type == 3">本地</span>
|
|
|
- <span v-if="scope.row.type == 4">服务</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="状态">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.isTo == 0">订单</span>
|
|
|
- <span v-if="scope.row.isTo == 1">确认收货</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="proportion" label="佣金比例" />
|
|
|
- <el-table-column prop="amount" label="分配的佣金" />
|
|
|
- <el-table-column prop="totalAmount" label="佣金总金额" />
|
|
|
- </el-table>
|
|
|
- </div>
|
|
|
- <div class="dialog-pagination">
|
|
|
- <el-pagination layout="prev, pager, next" :total="waterTotal" :page-size="5" @current-change="waterChange">
|
|
|
- </el-pagination>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
+ <!-- 查询结果 -->
|
|
|
+ <div v-tableHeight>
|
|
|
+ <el-table
|
|
|
+ v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list"
|
|
|
+ v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
|
|
|
+ >
|
|
|
+ <el-table-column align="center" width="150" label="流水号" prop="orderSn"></el-table-column>
|
|
|
+ <el-table-column align="center" min-width="150" label="用户名称" prop="name" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="phone" label="手机号码" />
|
|
|
+ <el-table-column prop="withdrawalMoney" label="提现金额" />
|
|
|
+ <el-table-column prop="cost" label="手续费"></el-table-column>
|
|
|
+ <el-table-column label="处理状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.state == 0">审核中</span>
|
|
|
+ <!-- <span v-if="scope.row.state == 1">打款中</span> -->
|
|
|
+ <span v-if="scope.row.state == 1">通过</span>
|
|
|
+ <span v-if="scope.row.state == 2">拒绝</span>
|
|
|
+ <span v-if="scope.row.state == 3">打款成功</span>
|
|
|
+ <span v-if="scope.row.state == 4">打款失败</span>
|
|
|
+ <span v-if="scope.row.state == 5">待确认</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="applyTime" label="申请时间"></el-table-column>
|
|
|
+ <el-table-column align="center" width="150" label="备注" prop="cause" show-overflow-tooltip />
|
|
|
+ <el-table-column label="操作" width="180" fixed="right" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-button type="warning" size="mini" @click="handleDetail(row)">
|
|
|
+ 详情
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="(row.state == 0) || (row.state == 1)" size="mini" @click="handleResolve(row)">
|
|
|
+ 处理
|
|
|
+ </el-button>
|
|
|
+ <el-button v-if="row.state !== 3" type="text" @click="handleConfirmTong(row)">
|
|
|
+ 通联确认
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div>
|
|
|
+ <el-pagination
|
|
|
+ :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="listQuery.pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="total"
|
|
|
+ @size-change="(val) => ((listQuery.pageSize = val) && getList())"
|
|
|
+ @current-change="(val) => ((listQuery.page = val) && getList())"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 提现处理 -->
|
|
|
+ <WithdrawalProcessing ref="WithdrawalProcessing" @success="getList" />
|
|
|
+ <!-- 查看详情 -->
|
|
|
+ <DetailModal ref="DetailModal" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {
|
|
|
applicationGetAll,
|
|
|
- applicationGetById,
|
|
|
- applicationHandle,
|
|
|
- getUserWater,
|
|
|
- getWaterRecord,
|
|
|
getTonglian
|
|
|
} from '@/api/application'
|
|
|
+import WithdrawalProcessing from './components/WithdrawalProcessing'
|
|
|
+import DetailModal from './components/DetailModal'
|
|
|
export default {
|
|
|
name: 'Application',
|
|
|
+ components: {
|
|
|
+ WithdrawalProcessing,
|
|
|
+ DetailModal
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
- formInline: {
|
|
|
+ listQuery: {
|
|
|
name: '', // 用户名称
|
|
|
phone: '', // 手机号码
|
|
|
state: null, // 提现状态 空-全部 0-待审核 1-通过 2-拒绝
|
|
|
page: 1,
|
|
|
pageSize: 10
|
|
|
},
|
|
|
- total: 1,
|
|
|
- tableData: [],
|
|
|
- // 控制表格的加载
|
|
|
- tableLoading: true,
|
|
|
- infoList: [
|
|
|
- { name: '手机号码', value: '', fields: 'phone' },
|
|
|
- { name: '银行名称', value: '', fields: 'bankName' },
|
|
|
- { name: '银行卡号', value: '', fields: 'bankCard' },
|
|
|
- { name: '收款人姓名', value: '', fields: 'name' },
|
|
|
- { name: '提现金额', value: '', fields: 'withdrawalMoney' },
|
|
|
- { name: '实际到账', value: '', fields: 'actualReceipt' },
|
|
|
- { name: '申请时间', value: '', fields: 'applyTime' },
|
|
|
- { name: '处理时间', value: '', fields: 'handleTime' }
|
|
|
- ],
|
|
|
- currentPage: 1,
|
|
|
- multipleSelection: [],
|
|
|
- dioObj: {},
|
|
|
- // 拒绝打款理由
|
|
|
- rejectReason: '',
|
|
|
- // 控制确认信息和确认打款
|
|
|
- confirmInfo: '确认信息',
|
|
|
- // 流水信息表格数据
|
|
|
- waterData: [],
|
|
|
- waterTotal: null,
|
|
|
- watherInfo: {},
|
|
|
- // 获取流水数据参数
|
|
|
- watherParameter: {
|
|
|
- page: 1,
|
|
|
- pageSize: 5,
|
|
|
- acquirerId: ''
|
|
|
- },
|
|
|
- watherFlag: true
|
|
|
+ list: [],
|
|
|
+ total: 0,
|
|
|
+ listLoading: true
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
- this.getAll(this.formInline)
|
|
|
+ mounted() {
|
|
|
+ this.getList()
|
|
|
},
|
|
|
methods: {
|
|
|
- handleSizeChange(val) {
|
|
|
- this.formInline.pageSize = val
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- handleCurrentChange(val) {
|
|
|
- this.formInline.page = val
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- handleSelectionChange(val) {
|
|
|
- this.multipleSelection = val
|
|
|
- },
|
|
|
- // 查询
|
|
|
- search() {
|
|
|
- this.total = 1
|
|
|
- this.formInline.page = 1
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- // 清除
|
|
|
- clear() {
|
|
|
- this.formInline = {
|
|
|
- name: '', // 用户名称
|
|
|
- phone: '', // 手机号码
|
|
|
- state: null, // 提现状态 空-全部 0-待审核 1-通过 2-拒绝
|
|
|
- page: 1,
|
|
|
- pageSize: 10
|
|
|
+ async getList() {
|
|
|
+ this.listLoading = true
|
|
|
+ try {
|
|
|
+ const res = await applicationGetAll(this.listQuery)
|
|
|
+ this.list = res.data.list
|
|
|
+ this.total = res.data.total
|
|
|
+ } finally {
|
|
|
+ this.listLoading = false
|
|
|
}
|
|
|
- this.getAll(this.formInline)
|
|
|
},
|
|
|
- // 查看
|
|
|
- seeMore(row) {
|
|
|
- this.dioObj = {
|
|
|
- title: '查看',
|
|
|
- show: true,
|
|
|
- arr: row,
|
|
|
- type: 1
|
|
|
- }
|
|
|
- this.getDetails(row.withdrawalId)
|
|
|
+ handleSearch() {
|
|
|
+ this.listQuery.page = 1
|
|
|
+ this.getList()
|
|
|
},
|
|
|
- // 处理
|
|
|
- del(row) {
|
|
|
- this.dioObj = {
|
|
|
- title: '处理',
|
|
|
- show: true,
|
|
|
- arr: row,
|
|
|
- type: 2
|
|
|
- }
|
|
|
- this.getDetails(row.withdrawalId)
|
|
|
+ handleReset() {
|
|
|
+ this.listQuery = { name: '', phone: '', state: null, page: 1, pageSize: 10 }
|
|
|
+ this.getList()
|
|
|
},
|
|
|
- // 确认
|
|
|
- async agreeEn(index) {
|
|
|
- // console.log(index)
|
|
|
- if (index === 1 && this.confirmInfo == '确认信息') {
|
|
|
- const res = await applicationHandle({
|
|
|
- withdrawalId: this.dioObj.arr.withdrawalId,
|
|
|
- state: 1
|
|
|
- })
|
|
|
- this.$message.success('确认信息成功,请确认打款')
|
|
|
- this.confirmInfo = '确认打款'
|
|
|
- } else if (index === 1 && this.confirmInfo == '确认打款') {
|
|
|
- this.$confirm('此操作将把款项打给用户, 是否继续?', '打款', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning'
|
|
|
- }).then(async () => {
|
|
|
- const res = await applicationHandle({
|
|
|
- withdrawalId: this.dioObj.arr.withdrawalId,
|
|
|
- withdrawalType: 1, // 1佣金
|
|
|
- state: 3
|
|
|
- })
|
|
|
- if (res.code === '') {
|
|
|
- this.$message.success('确认打款成功')
|
|
|
- this.dioObj.show = false
|
|
|
- this.getAll(this.formInline)
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.$message({
|
|
|
- type: 'info',
|
|
|
- message: '已取消打款'
|
|
|
- })
|
|
|
- })
|
|
|
- } else if (index === 2) {
|
|
|
- if (this.rejectReason == '') {
|
|
|
- this.$prompt('请输入拒绝打款理由', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- inputPattern: /^\s*[\S]+\s*$/,
|
|
|
- inputErrorMessage: '输入的拒绝打款理由不能为空!!!'
|
|
|
- }).then(({ value }) => {
|
|
|
- this.rejectReason = 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, fields: 'rejectReason' })
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.rejectReason = ''
|
|
|
- })
|
|
|
- return false
|
|
|
- }
|
|
|
- }
|
|
|
+ handleDetail(row) {
|
|
|
+ this.$refs.DetailModal && this.$refs.DetailModal.handleOpen(row)
|
|
|
},
|
|
|
- // 查询详情
|
|
|
- async getDetails(withdrawalId) {
|
|
|
- const res = await applicationGetById({ withdrawalId })
|
|
|
- if (res.code === '') {
|
|
|
- this.details = res.data
|
|
|
- this.getTopList(res.data)
|
|
|
- }
|
|
|
- // 判断是不是有拒绝打款理由
|
|
|
- if (res.data.rejectReason && res.data.state == 2 || res.data.rejectReason && res.data.state == 4) {
|
|
|
- this.infoList.push({ name: '拒绝打款理由', value: res.data.rejectReason, fields: 'rejectReason' })
|
|
|
- }
|
|
|
- },
|
|
|
- async getTopList(o) {
|
|
|
- this.infoList.map((item) => {
|
|
|
- item.value = o[item.fields]
|
|
|
- })
|
|
|
- // 在这里获取统计的流水
|
|
|
- const res = await getUserWater({ userId: o.buyerUserId })
|
|
|
- this.watherInfo = res.data
|
|
|
- this.getWatherTable(o.buyerUserId)
|
|
|
- },
|
|
|
-
|
|
|
- // 通联确认
|
|
|
- async confirmTong(item) {
|
|
|
- const obj = {
|
|
|
- orderSn: item.orderSn,
|
|
|
- withdrawalId: item.withdrawalId
|
|
|
- }
|
|
|
- await getTonglian(obj)
|
|
|
- this.$message.success('通联确认成功')
|
|
|
- this.getAll(this.formInline)
|
|
|
- },
|
|
|
- // 初始化查询所有数据
|
|
|
- async getAll(formInline) {
|
|
|
- // 加载状态
|
|
|
- this.tableLoading = true
|
|
|
- const res = await applicationGetAll(formInline)
|
|
|
- // 清除加载状态
|
|
|
- this.tableLoading = false
|
|
|
- this.tableData = res.data.list
|
|
|
- this.tableData.forEach((item) => {
|
|
|
- item.phone = item.phone.replace(/(\d{3})\d+(\d{4})$/, '$1****$2')
|
|
|
- })
|
|
|
- this.total = res.data.total
|
|
|
+ handleResolve(row) {
|
|
|
+ this.$refs.WithdrawalProcessing && this.$refs.WithdrawalProcessing.handleOpen(row)
|
|
|
},
|
|
|
- // 获取流水表格数据
|
|
|
- async getWatherTable(id) {
|
|
|
- this.watherFlag = true
|
|
|
- // 获取流水表格数据
|
|
|
- this.watherParameter.acquirerId = id
|
|
|
- const res = await getWaterRecord(this.watherParameter)
|
|
|
- this.waterData = res.data.list
|
|
|
- this.waterTotal = res.data.total
|
|
|
- this.watherFlag = false
|
|
|
- },
|
|
|
- // 表格分页
|
|
|
- waterChange(e) {
|
|
|
- this.watherParameter.page = e
|
|
|
- this.getWatherTable(this.watherParameter.acquirerId)
|
|
|
- },
|
|
|
- // 关闭弹窗的回调
|
|
|
- closeDialog() {
|
|
|
- this.dioObj.show = false
|
|
|
- this.rejectReason = ''
|
|
|
- this.confirmInfo = '确认信息'
|
|
|
- // 清除流水表格信息 以及 load加载状态
|
|
|
- this.waterData = []
|
|
|
- console.log(this.dioObj)
|
|
|
- this.infoList = this.infoList.filter((item) => item.fields != 'rejectReason')
|
|
|
+ // 通联确认
|
|
|
+ handleConfirmTong(row) {
|
|
|
+ this.$confirm('确定此项通联确认?')
|
|
|
+ .then(async () => {
|
|
|
+ await getTonglian({ orderSn: row.orderSn, withdrawalId: row.withdrawalId })
|
|
|
+ this.$message({ message: '操作成功!', type: 'success' })
|
|
|
+ this.handleSearch()
|
|
|
+ })
|
|
|
+ .catch(() => { })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style lang='scss' scoped>
|
|
|
-@import url("../../../styles/elDialog.scss");
|
|
|
-
|
|
|
-.custom_page {
|
|
|
+<style lang="scss" scoped>
|
|
|
+.app-container {
|
|
|
padding: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.box {
|
|
|
- .dioBox {
|
|
|
- display: flex;
|
|
|
- justify-content: flex-start;
|
|
|
- align-items: center;
|
|
|
- flex-wrap: wrap;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
|
|
|
- .inner {
|
|
|
- width: 50%;
|
|
|
- padding: 20px;
|
|
|
+ .filter-container {
|
|
|
+ .filter-item {
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-bottom: 10px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .botTitle {
|
|
|
- color: red;
|
|
|
- text-align: center;
|
|
|
+ .small-padding {
|
|
|
+ .cell {
|
|
|
+ padding-left: 5px;
|
|
|
+ padding-right: 5px;
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-.statistics {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-around;
|
|
|
- width: 100%;
|
|
|
- margin: 10px 0 15px;
|
|
|
-
|
|
|
- .statistics-item {
|
|
|
- text-align: center;
|
|
|
|
|
|
- h1 {
|
|
|
- color: #ffae11;
|
|
|
- font-size: 20px;
|
|
|
+ .fixed-width {
|
|
|
+ .el-button--mini {
|
|
|
+ padding: 7px 10px;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-.dialog-pagination {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- margin-top: 15px;
|
|
|
-}
|
|
|
</style>
|