|
|
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- </a-row>
- </a-form>
- </div>
- <!-- 查询区域-END -->
-
- <!-- 操作按钮区域 -->
- <div class="table-operator">
- <!-- <a-button type="primary" icon="download" @click="handleExportXls('mer_recharge_info_log')">导出</a-button>-->
- <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
- <!-- <a-button type="primary" icon="import">导入</a-button>-->
- <!-- </a-upload>-->
- <!-- 高级查询区域 -->
- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
- <a-dropdown v-if="selectedRowKeys.length > 0">
- <!-- <a-menu slot="overlay">-->
- <!-- <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>-->
- <!-- </a-menu>-->
- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
- </a-dropdown>
- </div>
-
- <!-- table区域-begin -->
- <div>
- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
- <a style="margin-left: 24px" @click="onClearSelected">清空</a>
- </div>
-
- <a-table
- ref="table"
- size="middle"
- :scroll="{x:true}"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
- class="j-table-force-nowrap"
- @change="handleTableChange">
-
- <template slot="ellipsisSlot" slot-scope="text">
- <j-ellipsis :value="text"/>
- </template>
-
- <template slot="htmlSlot" slot-scope="text">
- <div v-html="text"></div>
- </template>
- <template slot="imgSlot" slot-scope="text">
- <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
- <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
- </template>
- <template slot="fileSlot" slot-scope="text">
- <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
- <a-button
- v-else
- :ghost="true"
- type="primary"
- icon="download"
- size="small"
- @click="downloadFile(text)">
- 下载
- </a-button>
- </template>
-
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">编辑</a>
-
- <div v-if="record.state==0">
- <a-popconfirm title="确定通过吗?" @confirm="() => handleAudit(record.id,true)">
- <a>通过</a>
- </a-popconfirm>
- <a-divider type="vertical" />
- <!-- <a-popconfirm title="确定不通过吗?" @prompt="() => handleAudit(record.id,false)">-->
- <a @click="handleAudit(record.id,false)">不通过</a>
- <!-- </a-popconfirm>-->
- </div>
- <div v-if="record.state == 1">
- <a-divider type="vertical" />
- <a-popconfirm title="确定打款吗?" @confirm="() => handleWithdrawal(record.id)">
- <a>打款</a>
- </a-popconfirm>
- </div>
- <a-divider type="vertical" />
- <a-dropdown>
- <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
- <a-menu slot="overlay">
- <a-menu-item>
- <a @click="handleDetail(record)">详情</a>
- </a-menu-item>
- <!-- <a-menu-item>-->
- <!-- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
- <!-- <a>删除</a>-->
- <!-- </a-popconfirm>-->
- <!-- </a-menu-item>-->
- </a-menu>
- </a-dropdown>
- </span>
-
- </a-table>
- </div>
-
- <mer-recharge-info-log-modal ref="modalForm" @ok="modalFormOk"></mer-recharge-info-log-modal>
- </a-card>
- </template>
-
- <script>
-
- import '@/assets/less/TableExpand.less'
- import { mixinDevice } from '@/utils/mixin'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import MerRechargeInfoLogModal from './modules/MerRechargeInfoLogModal'
- import { httpAction, getAction } from '@/api/manage'
-
- export default {
- name: 'MerRechargeInfoLogList',
- mixins:[JeecgListMixin, mixinDevice],
- components: {
- MerRechargeInfoLogModal
- },
- data () {
- return {
- description: '提现申请管理页面',
- // 表头
- columns: [
- {
- title: '#',
- dataIndex: '',
- key:'rowIndex',
- width:60,
- align:"center",
- customRender:function (t,r,index) {
- return parseInt(index)+1;
- }
- },
- {
- title:'标题',
- align:"center",
- dataIndex: 'title'
- },
- {
- title:'用户Id',
- align:"center",
- dataIndex: 'memberId'
- },
- {
- title:'用户名',
- align:"center",
- dataIndex: 'memberId_dictText'
- },
- {
- title:'真实姓名',
- align:"center",
- dataIndex: 'realName'
- },
-
- {
- title:'金额',
- align:"center",
- dataIndex: 'money'
- },
- {
- title:'用户原本金额',
- align:"center",
- dataIndex: 'userMoney'
- },
-
- {
- title:'备注说明',
- align:"center",
- dataIndex: 'info',
- scopedSlots: {customRender: 'ellipsisSlot'}
- },
- {
- title:'支付时间',
- align:"center",
- dataIndex: 'payTime'
- },
-
- {
- title:'类型',
- align:"center",
- dataIndex: 'type_dictText'
- },
-
- {
- title:'服务费',
- align:"center",
- dataIndex: 'serviceCharge'
- },
- {
- title:'审核未通过原因',
- align:"center",
- dataIndex: 'checkInfo'
- },
-
- {
- title:'提现审核',
- align:"center",
- dataIndex: 'state_dictText'
- },
- {
- title: '操作',
- dataIndex: 'action',
- align:"center",
- fixed:"right",
- width:147,
- scopedSlots: { customRender: 'action' }
- }
- ],
- url: {
- list: "/rechargeInfoLog/tbRechargeInfoLog/list2",
- delete: "/rechargeInfoLog/tbRechargeInfoLog/delete",
- deleteBatch: "/rechargeInfoLog/tbRechargeInfoLog/deleteBatch",
- exportXlsUrl: "/rechargeInfoLog/tbRechargeInfoLog/exportXls",
- importExcelUrl: "/rechargeInfoLog/tbRechargeInfoLog/importExcel",
- auidt: "/rechargeInfoLog/tbRechargeInfoLog/audit",
- withdrawal: "/rechargeInfoLog/tbRechargeInfoLog/withdrawal"
-
- },
- dictOptions:{},
- superFieldList:[],
- }
- },
- created() {
- this.getSuperFieldList();
- },
- computed: {
- importExcelUrl: function(){
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
- },
- },
- methods: {
- initDictConfig(){
- },
- getSuperFieldList(){
- let fieldList=[];
- fieldList.push({type:'string',value:'title',text:'标题',dictCode:''})
- fieldList.push({type:'BigDecimal',value:'money',text:'金额',dictCode:''})
- fieldList.push({type:'BigDecimal',value:'userMoney',text:'用户原本金额',dictCode:''})
- fieldList.push({type:'int',value:'isPay',text:'是否支付 0否 1是',dictCode:''})
- fieldList.push({type:'string',value:'info',text:'备注说明',dictCode:''})
- fieldList.push({type:'date',value:'payTime',text:'支付时间'})
- fieldList.push({type:'string',value:'memberId',text:'用户Id',dictCode:''})
- fieldList.push({type:'string',value:'wxCode',text:'微信支付返回流水',dictCode:''})
- fieldList.push({type:'string',value:'wxInfo',text:'微信支付返回信息',dictCode:''})
- fieldList.push({type:'int',value:'type',text:'类型 0支出 1支入',dictCode:''})
- fieldList.push({type:'string',value:'orderId',text:'订单id',dictCode:''})
- fieldList.push({type:'BigDecimal',value:'serviceCharge',text:'服务费',dictCode:''})
- fieldList.push({type:'int',value:'state',text:'提现审核 0未审核 1已审核 2已打款',dictCode:''})
- this.superFieldList = fieldList
- },
- handleAudit(id,status){
- let checkInfo= '';
- if(status === false){
- checkInfo = prompt("请输入不通过的原因")
- if(checkInfo === ''){
- return;
- }
- }
-
- let param = {
- id:id,
- status:status,
- checkInfo: checkInfo
- }
- getAction(this.url.auidt,param).then((res)=>{
- if(res.success){
- this.reCalculatePage(1)
- this.$message.success(res.message);
- this.loadData();
- }else{
- this.$message.warning(res.message);
- }
- }).finally(() => {
- this.confirmLoading = false;
- })
-
- },
- handleWithdrawal(id){
- let param = {
- id:id
- }
- getAction(this.url.withdrawal,param).then((res)=>{
- if(res.success){
- this.reCalculatePage(1)
- this.$message.success(res.message);
- this.loadData();
- }else{
- this.$message.warning(res.message);
- }
- }).finally(() => {
- this.confirmLoading = false;
- })
- }
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less';
- </style>
|