| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- @extends('layouts.base')
- @section('title', '认证信息')
- @section('content')
- <style>
- .panel{
- margin-bottom:10px!important;
- border-radius: 10px;
- padding-left: 20px;
- }
- .panel .active a {
- background-color: #29ba9c!important;
- border-radius: 18px!important;
- color:#fff;
- }
- .panel a{
- border:none!important;
- background-color:#fff!important;
- }
- .content{
- background: #eff3f6;
- padding: 10px!important;
- }
- .con{
- padding-bottom:20px;
- position:relative;
- border-radius: 8px;
- min-height: 100vh;
- background: #fff;
- }
- .con .setting .block{
- padding:10px;
- background-color:#fff;
- border-radius: 8px;
- margin-bottom:10px;
- }
- .con .setting .block .title{
- font-size:18px;
- margin-bottom:32px;
- display:flex;
- align-items:center;
- justify-content:space-between;
- }
- .confirm-btn{
- width: 100%;
- position:absolute;
- bottom:0;
- left:0;
- line-height:63px;
- background-color: #ffffff;
- box-shadow: 0px 8px 23px 1px
- rgba(51, 51, 51, 0.3);
- background-color:#fff;
- text-align:center;
- }
- .add{
- width: 154px;
- height: 36px;
- border-radius: 4px;
- border: solid 1px #29ba9c;
- color:#29ba9c;
- display:flex;
- align-items:center;
- justify-content:center;
- }
- .el-table--fit{
- margin-top:-10px;
- }
- b{
- font-size:14px;
- }
- .el-table--border::after, .el-table--group::after, .el-table::before{
- background-color:#fff;
- }
- </style>
- <div id='re_content' >
- <div class="con">
- <div class="setting">
- <div class="block">
- <div class="title">
- <div style="display:flex;align-items:center;">
- <span style="width: 4px;height: 18px;background-color: #29ba9c;margin-right:15px;display:inline-block;"></span><b>收费记录</b>
- </div>
- </div>
- <el-input v-model="search_form.member_id" style="width:auto;margin-right:16px;margin-bottom:16px;" placeholder="会员ID"></el-input>
- <el-input v-model="search_form.member" style="width:auto;margin-right:16px;" placeholder="昵称/姓名/手机号"></el-input>
- <el-input v-model="search_form.pay_number" style="width:auto;margin-right:16px;" placeholder="支付流水号"></el-input>
- <template>
- <el-select v-model="search_form.pay_type" placeholder="支付方式" style="width:auto;margin-right:16px;">
- <el-option v-for="item in pay_type_list" :key="item.status" :label="item.label" :value="item.status"></el-option>
- </el-select>
- </template>
- <template>
- <span class="demonstration"></span>
- <el-date-picker
- v-model="search_form.time"
- type="datetimerange"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- align="right">
- </el-date-picker>
- </template>
- <el-button type="primary" style="margin-left:16px;" @click="search">搜索</el-button>
- </div>
- <div style="background: #eff3f6;width:100%;height:15px;"></div>
- <div class="block">
- <div class="title">
- <div style="display:flex;align-items:center;">
- <span style="width: 4px;height: 18px;background-color: #29ba9c;margin-right:15px;display:inline-block;"></span>
- <b>记录列表</b>
- <span style="width: 4px;height: 18px;margin-right:10px;"></span>
- <b>总数:[[ page_total ]]</b>
- <span style="width: 4px;height: 18px;margin-right:10px;"></span>
- <b>支付金额:[[ amount_total ]]</b>
- </div>
- </div>
- </div>
- <el-table :data="tableData" style="padding:0 10px" style="width: 100%">
- <el-table-column align="center" label="时间">
- <template slot-scope="scope">
- <div>[[scope.row.created_at]]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="会员">
- <template slot-scope="scope">
- <img style='width:40px;height:40px' v-if="scope.row.member" :src=scope.row.member.avatar_image style="max-width:100px">
- <div>[[scope.row.member?scope.row.member.nickname:'未更新']]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="支付流水号">
- <template slot-scope="scope">
- <div>[[scope.row.pay_number]]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="支付金额">
- <template slot-scope="scope">
- <div v-if="scope.row.pay_amount">¥[[scope.row.pay_amount]]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="支付方式">
- <template slot-scope="scope">
- <div>[[scope.row.pay_type_name]]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作">
- <template slot-scope="scope">
- <div v-if="scope.row.pay_type!=54">
- <div v-if="scope.row.status==1">
- <el-button @click="doRefund(scope.row.id)">退款</el-button>
- </div>
- <div v-if="scope.row.status==-1">
- <el-button type="text" disabled>已退款</el-button>
- </div>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <el-row style="background-color:#fff;">
- <el-col :span="24" align="center" migra style="padding:15px 5% 15px 0" v-loading="loading">
- <el-pagination background @current-change="currentChange"
- layout="prev, pager, next"
- :page-size="page_size" :current-page="current_page" :total="page_total">
- </el-pagination>
- </el-col>
- </el-row>
- </div>
- </div>
- </div>
- <script>
- var vm = new Vue({
- el: "#re_content",
- delimiters: ['[[', ']]'],
- data() {
- return {
- dataList:[],
- loading:false,
- search_loading:false,
- all_loading:false,
- amount_total:0.00,
- page_total:0,
- page_size:0,
- current_page:0,
- search_form:{},
- real_search_form:{},
- pay_type_list: [
- {
- status: 2,
- label: '支付宝'
- },
- {
- status: 55,
- label: '微信'
- },
- ],
- tableData: []
- }
- },
- mounted () {
- this.getData();
- },
- methods: {
- search() {
- this.search_loading = true;
- let json={
- search:this.search_form,
- };
- this.$http.post('{!! yzWebFullUrl('plugin.real-name-auth.admin.controllers.charge-log.search') !!}',json
- ).then(function (response) {
- if (response.data.result){
- let datas = response.data.data.list;
- this.dataList=datas.data
- this.tableData=datas.data
- this.page_total = datas.total;
- this.page_size = datas.per_page;
- this.current_page = datas.current_page;
- this.amount_total = response.data.data.amount_total;
- this.loading = false;
- this.real_search_form=Object.assign({},this.search_form);
- }
- else {
- this.$message({message: response.data.msg,type: 'error'});
- }
- this.search_loading = false;
- },function (response) {
- this.search_loading = false;
- this.$message({message: response.data.msg,type: 'error'});
- }
- );
- },
- currentChange(val) {
- this.loading = true;
- this.$http.post('{!! yzWebFullUrl('plugin.real-name-auth.admin.controllers.charge-log.search') !!}',{page:val,search:this.real_search_form}).then(function (response){
- if (response.data.result){
- let datas = response.data.data.list;
- this.tableData = datas.data
- this.page_total = datas.total;
- this.page_size = datas.per_page;
- this.current_page = datas.current_page;
- this.amount_total = response.data.data.amount_total;
- this.loading = false;
- } else {
- this.$message({message: response.data.msg,type: 'error'});
- }
- },function (response) {
- console.log(response);
- this.loading = false;
- }
- );
- },
- getData(){
- this.$http.post('{!! yzWebFullUrl('plugin.real-name-auth.admin.controllers.charge-log.search') !!}').then(function (response){
- if (response.data.result) {
- let datas = response.data.data.list;
- this.tableData = datas.data;
- this.page_total = datas.total;
- this.page_size = datas.per_page;
- this.current_page = datas.current_page;
- this.amount_total = response.data.data.amount_total;
- this.loading = false;
- }else{
- this.$message({message: response.data.msg,type: 'error'});
- }
- },function (response) {
- this.$message({message: response.data.msg,type: 'error'});
- })
- },
- doRefund(id){
- let json = {
- id:id,
- };
- this.$confirm('确认退款?', '提示', {confirmButtonText: '确定',cancelButtonText: '取消',type: 'warning'}).then(() => {
- this.$http.post("{!! yzWebFullUrl('plugin.real-name-auth.admin.controllers.charge-log.doRefund') !!}",json).then(response => {
- if(response.data.result==1){
- this.$message.success(response.data.msg);
- this.currentChange(this.current_page);
- }else{
- this.$message.error(response.data.msg);
- }
- this.loading = false;
- }),function(res){
- console.log(res);
- this.loading = false;
- };
- }).catch(() => {
- this.loading = false;
- this.$message({type: 'info',message: '已取消操作'});
- });
- },
- },
- });
- </script>
- @endsection
|