index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. <template>
  2. <div class="custom_page">
  3. <div class="content">
  4. <!-- 顶部搜索 -->
  5. <div class="toolbar">
  6. <!-- 顶部搜索 -->
  7. <el-form :inline="true" :model="formInline">
  8. <el-form-item label="用户名称">
  9. <el-input v-model="formInline.name" maxlength="20" placeholder="请输入" />
  10. </el-form-item>
  11. <el-form-item label="手机号">
  12. <el-input v-model="formInline.phone" maxlength="11" placeholder="请输入" />
  13. </el-form-item>
  14. <el-form-item label="提现状态">
  15. <el-select v-model="formInline.state" placeholder="请选择">
  16. <el-option label="全部" :value="null" />
  17. <el-option label="待审核" value="0" />
  18. <el-option label="打款中" value="1" />
  19. <el-option label="拒绝" value="2" />
  20. <el-option label="打款成功" value="3" />
  21. <el-option label="打款失败" value="4" />
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item label-width="0">
  25. <el-button type="primary" plain @click="search">查询</el-button>
  26. <el-button plain @click="clear">重置</el-button>
  27. </el-form-item>
  28. </el-form>
  29. </div>
  30. <!-- 表格 -->
  31. <div class="content_table">
  32. <div class="table">
  33. <el-table :data="tableData" v-loading="tableLoading" border
  34. :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" style="width: 100%">
  35. >
  36. <el-table-column prop="orderSn" label="流水号"></el-table-column>
  37. <el-table-column prop="name" label="用户名称" />
  38. <el-table-column prop="phone" label="手机号码" />
  39. <el-table-column prop="withdrawalMoney" label="提现金额" />
  40. <el-table-column prop="cost" label="手续费"></el-table-column>
  41. <el-table-column label="处理状态">
  42. <template slot-scope="scope">
  43. <span v-if="scope.row.state == 0">审核中</span>
  44. <span v-if="scope.row.state == 1">打款中</span>
  45. <span v-if="scope.row.state == 2">拒绝</span>
  46. <span v-if="scope.row.state == 3">打款成功</span>
  47. <span v-if="scope.row.state == 4">打款失败</span>
  48. </template>
  49. </el-table-column>
  50. <el-table-column prop="applyTime" label="申请时间"></el-table-column>
  51. <el-table-column label="操作" show-overflow-tooltip>
  52. <template slot-scope="scope">
  53. <div class="btnList">
  54. <el-button v-if="scope.row.state == 1" type="text" @click="del(scope.row)">处理</el-button>
  55. <el-button v-else-if="scope.row.state !== 0" type="text" @click="seeMore(scope.row)">查看</el-button>
  56. <el-button v-else type="text" @click="del(scope.row)">处理</el-button>
  57. <el-button v-if="scope.row.state !== 3" type="text" @click="confirmTong(scope.row)">通联确认</el-button>
  58. </div>
  59. </template>
  60. </el-table-column>
  61. </el-table>
  62. <div class="fenye">
  63. <el-pagination :current-page="currentPage" :page-sizes="[10, 20, 50, 100]" :page-size="10"
  64. layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handleSizeChange"
  65. @current-change="handleCurrentChange" />
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. <!-- *****************弹框开始***************** -->
  71. <!-- 详情弹框 -->
  72. <el-dialog :visible.sync="dioObj.show" :title="dioObj.title" width="40%" center :close-on-click-modal="false"
  73. @close="closeDialog">
  74. <div class="box">
  75. <div class="dioBox">
  76. <div v-for="(item, index) in infoList" :key="index" class="inner">{{ item.name }}:{{ item.value }}</div>
  77. </div>
  78. <div v-if="dioObj.type === 2" class="botTitle">*请确认您已转账成功,再点击确认</div>
  79. </div>
  80. <span slot="footer" class="dialog-footer">
  81. <el-button v-if="dioObj.type === 2" type="primary" @click="agreeEn(1)">{{ confirmInfo }}</el-button>
  82. <el-button v-if="dioObj.type === 2" type="danger" @click="agreeEn(2)">拒绝打款</el-button>
  83. <el-button v-if="dioObj.type === 1" @click="closeDialog">关 闭</el-button>
  84. </span>
  85. <div class="statistics">
  86. <div class="statistics-item">
  87. <h1>{{ watherInfo.price }}</h1>
  88. <p>账户可提现金额</p>
  89. </div>
  90. <div class="statistics-item">
  91. <h1>{{ watherInfo.totalPrice }}</h1>
  92. <p>账户总金额</p>
  93. </div>
  94. <div class="statistics-item">
  95. <h1>{{ watherInfo.pendingWithdrawal }}</h1>
  96. <p>提现中</p>
  97. </div>
  98. <div class="statistics-item">
  99. <h1>{{ watherInfo.alreadyPrice }}</h1>
  100. <p>已提现</p>
  101. </div>
  102. </div>
  103. <div class="tabbar-list">
  104. <el-table :data="waterData" v-loading="watherFlag" border
  105. :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" style="width: 100%">
  106. >
  107. <el-table-column prop="price" label="支付金额"></el-table-column>
  108. <el-table-column prop="paymentTime" label="支付时间" />
  109. <el-table-column prop="customerName" label="支付名称" />
  110. <el-table-column prop="customerPhone" label="支付电话" />
  111. <el-table-column prop="transactionId" label="通联流水号" />
  112. <el-table-column label="来源类型">
  113. <template slot-scope="scope">
  114. <span v-if="scope.row.type == 1">关系链</span>
  115. <span v-if="scope.row.type == 2">商城</span>
  116. <span v-if="scope.row.type == 3">本地</span>
  117. <span v-if="scope.row.type == 4">服务</span>
  118. </template>
  119. </el-table-column>
  120. <el-table-column label="状态">
  121. <template slot-scope="scope">
  122. <span v-if="scope.row.isTo == 0">订单</span>
  123. <span v-if="scope.row.isTo == 1">确认收货</span>
  124. </template>
  125. </el-table-column>
  126. <el-table-column prop="proportion" label="佣金比例" />
  127. <el-table-column prop="amount" label="分配的佣金" />
  128. <el-table-column prop="totalAmount" label="佣金总金额" />
  129. </el-table>
  130. </div>
  131. <div class="dialog-pagination">
  132. <el-pagination layout="prev, pager, next" :total="waterData.length" :page-size="5"
  133. @current-change="waterChange">
  134. </el-pagination>
  135. </div>
  136. </el-dialog>
  137. </div>
  138. </template>
  139. <script>
  140. // import { getShopId } from '@/utils/auth'
  141. import { hidden } from '@/utils/index'
  142. import {
  143. applicationGetAll,
  144. applicationGetById,
  145. applicationHandle,
  146. getUserWater,
  147. getWaterRecord,
  148. getTonglian
  149. } from '@/api/application'
  150. export default {
  151. data() {
  152. return {
  153. formInline: {
  154. name: '', // 用户名称
  155. phone: '', // 手机号码
  156. state: null, // 提现状态 空-全部 0-待审核 1-通过 2-拒绝
  157. page: 1,
  158. pageSize: 10
  159. },
  160. total: 1,
  161. tableData: [],
  162. // 控制表格的加载
  163. tableLoading: true,
  164. infoList: [
  165. { name: '手机号码', value: '', fields: 'phone' },
  166. { name: '银行名称', value: '', fields: 'bankName' },
  167. { name: '银行卡号', value: '', fields: 'bankCard' },
  168. { name: '收款人姓名', value: '', fields: 'name' },
  169. { name: '提现金额', value: '', fields: 'withdrawalMoney' },
  170. { name: "实际到账", value: '', fields: "actualReceipt" },
  171. { name: '申请时间', value: '', fields: 'applyTime' },
  172. { name: '处理时间', value: '', fields: 'handleTime' }
  173. ],
  174. currentPage: 1,
  175. multipleSelection: [],
  176. dioObj: {},
  177. // 拒绝打款理由
  178. rejectReason: "",
  179. // 控制确认信息和确认打款
  180. confirmInfo: "确认信息",
  181. // 流水信息表格数据
  182. waterData: [],
  183. watherInfo: {},
  184. // 获取流水数据参数
  185. watherParameter: {
  186. page: 1,
  187. pageSize: 5,
  188. // buyerUserId: ""
  189. acquirerId: ""
  190. },
  191. watherFlag: true
  192. }
  193. },
  194. created() {
  195. this.getAll(this.formInline)
  196. },
  197. methods: {
  198. handleSizeChange(val) {
  199. this.formInline.pageSize = val
  200. this.getAll(this.formInline)
  201. },
  202. handleCurrentChange(val) {
  203. this.formInline.page = val
  204. this.getAll(this.formInline)
  205. },
  206. handleSelectionChange(val) {
  207. this.multipleSelection = val
  208. },
  209. // 查询
  210. search() {
  211. this.total = 1
  212. this.formInline.page = 1
  213. this.getAll(this.formInline)
  214. },
  215. // 清除
  216. clear() {
  217. this.formInline = {
  218. name: '', // 用户名称
  219. phone: '', // 手机号码
  220. state: null, // 提现状态 空-全部 0-待审核 1-通过 2-拒绝
  221. page: 1,
  222. pageSize: 10
  223. }
  224. this.getAll(this.formInline)
  225. },
  226. async getTopList(o) {
  227. this.infoList.map((item) => {
  228. item.value = o[item.fields]
  229. })
  230. // 在这里获取统计的流水
  231. try {
  232. let res = await getUserWater({ userId: o.buyerUserId })
  233. this.watherInfo = res.data
  234. } catch (error) {
  235. }
  236. this.getWatherTable(o.buyerUserId)
  237. },
  238. // 查看
  239. seeMore(row) {
  240. this.dioObj = {
  241. title: '查看',
  242. show: true,
  243. arr: row,
  244. type: 1
  245. }
  246. this.getDetails(row.withdrawalId)
  247. },
  248. // 处理
  249. del(row) {
  250. this.dioObj = {
  251. title: '处理',
  252. show: true,
  253. arr: row,
  254. type: 2
  255. }
  256. this.getDetails(row.withdrawalId)
  257. },
  258. // 确认
  259. async agreeEn(index) {
  260. // console.log(index)
  261. if (index === 1 && this.confirmInfo == "确认信息") {
  262. const res = await applicationHandle({
  263. withdrawalId: this.dioObj.arr.withdrawalId,
  264. state: 1
  265. });
  266. this.$message.success('确认信息成功,请确认打款')
  267. this.confirmInfo = "确认打款";
  268. } else if (index === 1 && this.confirmInfo == "确认打款") {
  269. this.$confirm('此操作将把款项打给用户, 是否继续?', '打款', {
  270. confirmButtonText: '确定',
  271. cancelButtonText: '取消',
  272. type: 'warning'
  273. }).then(async () => {
  274. const res = await applicationHandle({
  275. withdrawalId: this.dioObj.arr.withdrawalId,
  276. state: 3
  277. });
  278. if (res.code === '') {
  279. this.$message.success('确认打款成功')
  280. this.dioObj.show = false
  281. this.getAll(this.formInline)
  282. }
  283. }).catch(() => {
  284. this.$message({
  285. type: 'info',
  286. message: '已取消打款'
  287. });
  288. });
  289. } else if (index === 2) {
  290. if (this.rejectReason == "") {
  291. this.$prompt('请输入拒绝打款理由', '提示', {
  292. confirmButtonText: '确定',
  293. cancelButtonText: '取消',
  294. inputPattern: /^\s*[\S]+\s*$/,
  295. inputErrorMessage: '输入的拒绝打款理由不能为空!!!'
  296. }).then(({ value }) => {
  297. this.rejectReason = value
  298. // console.log(value);
  299. this.infoList.push({ name: "拒绝打款理由", value: value, fields: 'rejectReason' })
  300. }).catch(() => {
  301. this.rejectReason = ""
  302. });
  303. return false
  304. }
  305. const res = await applicationHandle({
  306. withdrawalId: this.dioObj.arr.withdrawalId,
  307. state: 2,
  308. rejectReason: this.rejectReason
  309. })
  310. if (res.code === '') {
  311. this.$message.success('成功拒绝打款')
  312. this.dioObj.show = false
  313. this.getAll(this.formInline)
  314. }
  315. }
  316. },
  317. // 查询详情
  318. async getDetails(withdrawalId) {
  319. const res = await applicationGetById({ withdrawalId })
  320. if (res.code === '') {
  321. this.details = res.data
  322. this.getTopList(res.data)
  323. }
  324. // 判断是不是有拒绝打款理由
  325. if (res.data.rejectReason && res.data.state == 2 || res.data.rejectReason && res.data.state == 4) {
  326. this.infoList.push({ name: "拒绝打款理由", value: res.data.rejectReason, fields: 'rejectReason' })
  327. }
  328. },
  329. // 通联确认
  330. async confirmTong(item) {
  331. let obj = {
  332. orderSn: item.orderSn,
  333. withdrawalId: item.withdrawalId
  334. }
  335. try {
  336. let res = await getTonglian(obj);
  337. if (res.code === '') {
  338. this.$message.success('通联确认成功')
  339. this.getAll(this.formInline)
  340. }
  341. } catch (error) {
  342. }
  343. },
  344. // 初始化查询所有数据
  345. async getAll(formInline) {
  346. // 加载状态
  347. this.tableLoading = true
  348. const res = await applicationGetAll(formInline)
  349. // 清除加载状态
  350. this.tableLoading = false
  351. this.tableData = res.data.list
  352. this.tableData.forEach((item) => {
  353. item.phone = hidden(item.phone, 3, 4)
  354. })
  355. this.total = res.data.total
  356. },
  357. // 获取流水表格数据
  358. async getWatherTable(id) {
  359. this.watherFlag = true
  360. // 获取流水表格数据
  361. this.watherParameter.acquirerId = id
  362. try {
  363. let res = await getWaterRecord(this.watherParameter)
  364. this.waterData = res.data.list
  365. this.watherFlag = false
  366. } catch (error) {
  367. }
  368. },
  369. // 表格分页
  370. waterChange(e) {
  371. this.watherParameter.page = e
  372. this.getWatherTable(this.watherParameter.acquirerId)
  373. },
  374. // 关闭弹窗的回调
  375. closeDialog() {
  376. this.dioObj.show = false
  377. this.rejectReason = "";
  378. this.confirmInfo = "确认信息";
  379. // 清除流水表格信息 以及 load加载状态
  380. this.waterData = []
  381. console.log(this.dioObj);
  382. this.infoList = this.infoList.filter(item => item.fields != 'rejectReason');
  383. }
  384. }
  385. }
  386. </script>
  387. <style lang='scss' scoped>
  388. @import url("../../../styles/elDialog.scss");
  389. .custom_page {
  390. padding: 20px;
  391. }
  392. .box {
  393. .dioBox {
  394. display: flex;
  395. justify-content: flex-start;
  396. align-items: center;
  397. flex-wrap: wrap;
  398. .inner {
  399. width: 50%;
  400. padding: 20px;
  401. }
  402. }
  403. .botTitle {
  404. color: red;
  405. text-align: center;
  406. }
  407. }
  408. .statistics {
  409. display: flex;
  410. align-items: center;
  411. justify-content: space-around;
  412. width: 100%;
  413. margin: 10px 0 15px;
  414. .statistics-item {
  415. text-align: center;
  416. h1 {
  417. color: #ffae11;
  418. font-size: 20px;
  419. }
  420. }
  421. }
  422. .dialog-pagination {
  423. display: flex;
  424. align-items: center;
  425. justify-content: center;
  426. margin-top: 15px;
  427. }
  428. </style>