| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- @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.name" style="width:auto;margin-right:16px;" placeholder="实名认证姓名"></el-input>
- <el-input v-model="search_form.mobile" style="width:auto;margin-right:16px;" placeholder="实名认证手机号"></el-input>
- <el-input v-model="search_form.id_card" style="width:auto;margin-right:16px;" placeholder="实名认证身份证号"></el-input>
- <template>
- <el-select v-model="search_form.level_id" placeholder="会员等级" style="width:auto;margin-right:16px;">
- <el-option v-for="item in level" :key="item.value" :label="item.level_name" :value="item.id"></el-option>
- </el-select>
- </template>
- <template>
- <el-select v-model="search_form.group_id" placeholder="会员分组" style="width:auto;margin-right:16px;">
- <el-option v-for="item in group" :key="item.value" :label="item.group_name" :value="item.id"></el-option>
- </el-select>
- </template>
- <template>
- <el-select v-model="search_form.auth_type" placeholder="实名认证方式" style="width:auto;margin-right:16px;">
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.status"></el-option>
- </el-select>
- </template>
- <template>
- <span class="demonstration"></span>
- <el-date-picker
- v-model="search_form.create_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>
- </div>
- </div>
- </div>
- <el-table :data="tableData" style="padding:0 10px" style="width: 100%">
- <el-table-column prop="member_id" align="center" label="会员id"></el-table-column>
- <el-table-column align="center" label="粉丝">
- <template slot-scope="scope">
- <img style='width:40px;height:40px' v-if="scope.row.has_one_member" :src=scope.row.has_one_member.avatar_image style="max-width:100px">
- <div>[[scope.row.has_one_member?scope.row.has_one_member.nickname:'未更新']]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="姓名/手机号码">
- <template slot-scope="scope">
- <div>[[scope.row.has_one_member?scope.row.has_one_member.realname:'未更新']]</div>
- <div>[[scope.row.has_one_member?scope.row.has_one_member.mobile:'']]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="等级/分组">
- <template slot-scope="scope">
- <div v-if="scope.row.yz_member">[[scope.row.yz_member.level?scope.row.yz_member.level.level_name:'普通会员']]</div>
- <div v-if="scope.row.yz_member">[[scope.row.yz_member.group?scope.row.yz_member.group.group_name:'无分组']]</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="注册时间/认证时间">
- <template slot-scope="scope">
- <div>[[scope.row.has_one_member?scope.row.has_one_member.createtime:'']]</div>
- <div>[[scope.row.created_at]]</div>
- </template>
- </el-table-column>
- <el-table-column prop="name" align="center" label="认证姓名"></el-table-column>
- <el-table-column align="center" label="认证方式">
- <template slot-scope="scope">
- <div v-if="scope.row.auth_type==1">刷脸认证</div>
- <div v-if="scope.row.auth_type==2">手机认证</div>
- <div v-if="scope.row.auth_type==3">银行卡认证</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="认证状态">
- <template slot-scope="scope">
- <div v-if="scope.row.auth_status==0">认证中</div>
- <div v-if="scope.row.auth_status==1">已认证</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作">
- <template slot-scope="scope">
- <a style="color: #00a2ff" v-bind:href="'{{ yzWebUrl('plugin.real-name-auth.admin.controllers.list.detail', ['id'=>'']) }}'+[[scope.row.id]]">
- <i style="font-size:15px;">详情</i>
- </a>
- </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() {
- let level = {!! json_encode($level) ?: '{}' !!};
- let group = {!! json_encode($group) ?: '{}' !!};
- return {
- dataList:[],
- loading:false,
- search_loading:false,
- all_loading:false,
- page_total:0,
- page_size:0,
- current_page:0,
- search_form:{},
- real_search_form:{},
- options: [
- {
- status: 1,
- label: '刷脸认证'
- },
- {
- status: 2,
- label: '手机号认证'
- },
- {
- status: 3,
- label: '银行卡认证'
- }
- ],
- level:level,
- group:group,
- tableData: []
- }
- },
- mounted () {
- this.getData();
- },
- methods: {
- search() {
- this.search_loading = true;
- if(this.search_form.create_time){
- this.search_form.create_time[0] = Math.round(this.search_form.create_time[0]/1000).valueOf();
- this.search_form.create_time[1] = Math.round(this.search_form.create_time[1]/1000).valueOf();
- }
- let json={
- search:this.search_form,
- };
- this.$http.post('{!! yzWebFullUrl('plugin.real-name-auth.admin.controllers.list.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.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.list.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.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.list.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.loading = false;
- }else{
- this.$message({message: response.data.msg,type: 'error'});
- }
- },function (response) {
- this.$message({message: response.data.msg,type: 'error'});
- })
- },
- },
- });
- </script>
- @endsection
|