list.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <a-card size="small" :bordered="false" class="withdrawalManagementList-wrap">
  3. <!-- 搜索条件 -->
  4. <div ref="tableSearch" class="table-page-search-wrapper">
  5. <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
  6. <a-row :gutter="15">
  7. <a-col :md="6" :sm="24">
  8. <a-form-item label="提现时间">
  9. <rangeDateTime ref="rangeDate" @change="dateChange" />
  10. </a-form-item>
  11. </a-col>
  12. <a-col :md="6" :sm="24">
  13. <span class="table-page-search-submitButtons">
  14. <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="withdrawalManagementList-refresh">查询</a-button>
  15. <a-button style="margin-left: 8px" @click="resetSearchForm()" :disabled="disabled" id="withdrawalManagementList-reset">重置</a-button>
  16. </span>
  17. </a-col>
  18. </a-row>
  19. </a-form>
  20. </div>
  21. <!-- 操作按钮 -->
  22. <div class="table-operator">
  23. <a-button v-if="$hasPermissions('B_withdrawalManagement_cashOut')" id="withdrawalManagementList-tx" type="primary" class="button-warning" @click="handleCashOut">申请提现</a-button>
  24. <div style="display: inline-block;margin-left: 80px;">可提现余额: <strong>{{ accountInfo&&(accountInfo.balance || accountInfo.balance==0) ? '¥'+accountInfo.balance : '--' }}</strong> 元</div>
  25. </div>
  26. <!-- 列表 -->
  27. <s-table
  28. class="sTable fixPagination"
  29. ref="table"
  30. :style="{ height: tableHeight+84.5+'px' }"
  31. size="small"
  32. :rowKey="(record) => record.id"
  33. :columns="columns"
  34. :data="loadData"
  35. :scroll="{ x: 1320 }"
  36. bordered>
  37. </s-table>
  38. <!-- 提现说明 -->
  39. <div class="descriptions">
  40. <p class="descriptions-tit">提现说明:</p>
  41. <ul class="descriptions-list">
  42. <li><em>1、</em>提现手续费为元/笔,从可提现余额中扣除。</li>
  43. <li><em>2、</em>提现到账时间正常为T+1工作日(例如当天提现,则第二天到账。如果遇到周末或法定节假日,则依次顺延)。</li>
  44. <li><em>3、</em>页面上的【可提现余额】包含当天收款但支付公司未清算金额,该部分金额只能在第二天清算后才可提现,如果提示【提现失败】和【账户余额不足】,则表明【可提现金额】中会存在该部分金额,遇到这种情况时,请减少当日提现金额或在次日进行提现。</li>
  45. <li><em>4、</em>提现账户为申请开通支付结算账户时所提供的账户信息。</li>
  46. </ul>
  47. </div>
  48. <!-- 申请提现 -->
  49. <cashOutModal :openModal="openModal" :nowData="accountInfo" @ok="handleOk" @close="closeModal" />
  50. </a-card>
  51. </template>
  52. <script>
  53. import { STable, VSelect } from '@/components'
  54. import rangeDateTime from '@/views/common/rangeDateTime.vue'
  55. import cashOutModal from './cashOutModal.vue'
  56. import { satelliteWHWithdrawalList, satelliteWHWithdrawalAccount } from '@/api/satelliteWH'
  57. export default {
  58. components: { STable, VSelect, rangeDateTime, cashOutModal },
  59. data () {
  60. return {
  61. advanced: true, // 高级搜索 展开/关闭
  62. disabled: false, // 查询、重置按钮是否可操作
  63. tableHeight: 0,
  64. // 查询参数
  65. queryParam: {
  66. beginDate: '',
  67. endDate: ''
  68. },
  69. // 表头
  70. columns: [
  71. { title: '序号', dataIndex: 'no', width: 80, align: 'center', fixed: 'left' },
  72. { title: '提现时间', dataIndex: 'cashOutDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
  73. { title: '提现单号', dataIndex: 'withdrawalNo', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
  74. { title: '申请提现金额', dataIndex: 'amount', width: 120, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
  75. { title: '开户名', dataIndex: 'bankAccount', width: 150, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
  76. { title: '银行卡号', dataIndex: 'bankAccountNo', width: 220, align: 'center', customRender: function (text) { return text || '--' } },
  77. { title: '状态', dataIndex: 'stateDictValue', width: 150, align: 'center', customRender: function (text) { return text || '--' } },
  78. { title: '备注', dataIndex: 'resultDesc', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true }
  79. ],
  80. // 加载数据方法 必须为 Promise 对象
  81. loadData: parameter => {
  82. this.disabled = true
  83. return satelliteWHWithdrawalList(Object.assign(parameter, this.queryParam)).then(res => {
  84. const data = res.data
  85. const no = (data.pageNo - 1) * data.pageSize
  86. for (var i = 0; i < data.list.length; i++) {
  87. data.list[i].no = no + i + 1
  88. }
  89. this.disabled = false
  90. return data
  91. })
  92. },
  93. openModal: false, // 弹框
  94. itemId: '', // 当前id
  95. nowData: null, // 当前记录数据
  96. accountInfo: null
  97. }
  98. },
  99. methods: {
  100. // 时间 change
  101. dateChange (date) {
  102. this.queryParam.beginDate = date[0]
  103. this.queryParam.endDate = date[1]
  104. },
  105. // 账户信息
  106. getAccount () {
  107. satelliteWHWithdrawalAccount().then(res => {
  108. if (res.status == 200) {
  109. this.accountInfo = res.data
  110. } else {
  111. this.accountInfo = null
  112. }
  113. })
  114. },
  115. // 申请提现
  116. handleCashOut () {
  117. if (this.accountInfo && this.accountInfo.balance && this.accountInfo.serviceCharge) {
  118. const balance = Number(this.accountInfo.balance) * 100
  119. const serviceCharge = Number(this.accountInfo.serviceCharge) * 100
  120. if ((balance - serviceCharge) <= 0) {
  121. this.$message.warning('余额不足,暂不能提现!')
  122. } else {
  123. this.openModal = true
  124. }
  125. }
  126. },
  127. handleOk () {
  128. this.$refs.table.refresh(true)
  129. this.getAccount()
  130. },
  131. closeModal () {
  132. this.openModal = false
  133. },
  134. // 重置
  135. resetSearchForm () {
  136. this.$refs.rangeDate.resetDate()
  137. this.queryParam.beginDate = ''
  138. this.queryParam.endDate = ''
  139. this.$refs.table.refresh(true)
  140. },
  141. setTableH () {
  142. const tableSearchH = this.$refs.tableSearch.offsetHeight
  143. this.tableHeight = window.innerHeight - tableSearchH - 235 - 217.5
  144. }
  145. },
  146. mounted () {
  147. const _this = this
  148. this.$nextTick(() => { // 页面渲染完成后的回调
  149. _this.setTableH()
  150. })
  151. _this.getAccount()
  152. },
  153. watch: {
  154. advanced (newValue, oldValue) {
  155. const _this = this
  156. setTimeout(() => {
  157. _this.setTableH()
  158. }, 400)
  159. }
  160. },
  161. beforeRouteEnter (to, from, next) {
  162. next(vm => {
  163. vm.getAccount()
  164. })
  165. }
  166. }
  167. </script>
  168. <style lang="less">
  169. .withdrawalManagementList-wrap{
  170. .descriptions{
  171. margin-top: 45px;
  172. .descriptions-tit{
  173. font-size: 14px;
  174. font-weight: bold;
  175. }
  176. .descriptions-list{
  177. list-style: none;
  178. padding: 0;
  179. margin: 0;
  180. li{
  181. position: relative;
  182. padding: 5px 0 5px 20px;
  183. line-height: 1.5em;
  184. font-size: 13px;
  185. em{
  186. position: absolute;
  187. left: 0;
  188. top: 4px;
  189. font-style: normal;
  190. }
  191. }
  192. }
  193. }
  194. }
  195. </style>