bztang-admin/resources/views/coupon/share-log.blade.php

274 lines
12 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layouts.base')
@section('title', '优惠券分享领取记录')
@section('content')
<link rel="stylesheet" type="text/css" href="{{static_url('yunshop/goods/vue-goods1.css')}}" />
<style>
.edit-i{display:none;}
.el-table_1_column_2:hover .edit-i{font-weight:900;padding:0;margin:0;display:inline-block;}
.el-tabs__item,.is-top{font-size:16px}
.el-tabs__active-bar { height: 3px;}
</style>
<div class="all">
<div id="app" v-cloak>
<div class="vue-nav" style="margin-bottom:15px">
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="优惠券设置" name="1"></el-tab-pane>
<el-tab-pane label="优惠券列表" name="2"></el-tab-pane>
<el-tab-pane label="领取发放记录" name="3"></el-tab-pane>
<el-tab-pane label="分享领取记录" name="4"></el-tab-pane>
<el-tab-pane label="使用记录" name="5"></el-tab-pane>
<el-tab-pane label="领券中心幻灯片" name="6"></el-tab-pane>
<el-tab-pane label="会员优惠券" name="7"></el-tab-pane>
</el-tabs>
</div>
<div class="vue-head">
<div class="vue-main-title" style="margin-bottom:20px">
<div class="vue-main-title-left"></div>
<div class="vue-main-title-content">优惠券领取发放记录</div>
<div class="vue-main-title-button">
</div>
</div>
<div class="vue-search">
<el-form :inline="true" :model="search_form" class="demo-form-inline">
<el-form-item label="">
<el-input v-model="search_form.coupon_name" placeholder="优惠券名称"></el-input>
</el-form-item>
<el-form-item label="">
<el-input v-model="search_form.share_uid" placeholder="分享者会员ID"></el-input>
</el-form-item>
<el-form-item label="">
<el-input v-model="search_form.share_name" placeholder="分享者会员昵称/姓名/手机号"></el-input>
</el-form-item>
<el-form-item label="">
<el-input v-model="search_form.receive_uid" placeholder="领取者会员ID"></el-input>
</el-form-item>
<el-form-item label="">
<el-input v-model="search_form.receive_name" placeholder="领取者会员昵称/姓名/手机号"></el-input>
</el-form-item>
<el-form-item label="">
<el-select v-model="search_form.time_search" clearable placeholder="是否搜索时间">
<el-option label="不搜索时间" value="0"></el-option>
<el-option label="搜索时间" value="1"></el-option>
</el-select>
</el-form-item>
<el-form-item label="">
<el-date-picker
v-model="times"
type="datetimerange"
value-format="timestamp"
range-separator=""
start-placeholder="开始日期"
end-placeholder="结束日期"
style="margin-left:5px;"
align="right">
</el-date-picker>
</el-form-item>
<el-form-item label="">
<el-button type="primary" @click="search(1)">搜索</el-button>
</el-form-item>
<el-form-item label="">
<el-button type="success" @click="export1()">导出</el-button>
</el-form-item>
</el-form>
</div>
</div>
<div class="vue-main">
<div class="vue-main-form">
<div style="font-weight:600;font-size:16px">领取数量 [[total]] )张</div>
<el-table :data="list" style="width: 100%">
<el-table-column label="ID" align="center" prop="id" width="80"></el-table-column>
<el-table-column label="优惠券名称" align="center" prop="coupon_name"></el-table-column>
<el-table-column label="分享者" align="center" width="150">
<template slot-scope="scope">
<div v-if="scope.row.share_member">
<img v-if="scope.row.share_member&&scope.row.share_member.avatar" :src="scope.row.share_member.avatar" style="width:50px;height:50px" />
<div v-if="scope.row.share_member&&scope.row.share_member.nickname">[[scope.row.share_member.nickname]]</div>
</div>
<div v-else>
未更新
</div>
</template>
</el-table-column>
<el-table-column label="领取者" align="center" width="150">
<template slot-scope="scope">
<div v-if="scope.row.receive_member">
<img v-if="scope.row.receive_member&&scope.row.receive_member.avatar" :src="scope.row.receive_member.avatar" style="width:50px;height:50px" />
<div v-if="scope.row.receive_member&&scope.row.receive_member.nickname">[[scope.row.receive_member.nickname]]</div>
</div>
<div v-else>
未更新
</div>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="created_at"></el-table-column>
<el-table-column label="日志详情" align="center" prop="log"></el-table-column>
</el-table>
</div>
</div>
<!-- 分页 -->
<div class="vue-page" v-if="total>0">
<el-row>
<el-col align="right">
<el-pagination layout="prev, pager, next,jumper" @current-change="search" :total="total"
:page-size="per_page" :current-page="current_page" background
></el-pagination>
</el-col>
</el-row>
</div>
</div>
</div>
<script>
let receive_uid = {!! $receive_uid?:'0' !!};
var app = new Vue({
el: "#app",
delimiters: ['[[', ']]'],
name: 'test',
data() {
return {
activeName:'4',
list:[],
times:[],
receive_uid:receive_uid,
search_form:{
},
rules: {},
current_page:1,
total:0,
per_page:1,
}
},
created() {
},
mounted() {
this.getData(1);
},
methods: {
getData(page) {
console.log(this.times);
let that = this;
let json = {
// page:page,
coupon_name:this.search_form.coupon_name,
share_uid:this.search_form.share_uid,
share_name:this.search_form.share_name,
receive_uid:this.search_form.receive_uid,
receive_name:this.search_form.receive_name,
time_search:this.search_form.time_search,
};
if(this.times && this.times.length>0) {
json.time = [];
json.time = {start:this.times[0]/1000,end:this.times[1]/1000}
}
if (this.receive_uid) {
json.receive_uid = this.receive_uid
}
console.log(json)
let loading = this.$loading({target:document.querySelector(".content"),background: 'rgba(0, 0, 0, 0)'});
this.$http.post('{!! yzWebFullUrl('coupon.share-coupon.share-log-data') !!}',{page:page,search:json}).then(function(response) {
if (response.data.result) {
this.list = response.data.data.list.data;
// if(that.list){
// that.list.forEach(item => {
// if(item.createtime!=0){
// item.createtime = that.timeStyle(item.createtime);//时间格式转换
// }
// });
// }
this.current_page=response.data.data.list.current_page;
this.total=response.data.data.list.total;
this.per_page=response.data.data.list.per_page;
loading.close();
} else {
this.$message({
message: response.data.msg,
type: 'error'
});
}
loading.close();
}, function(response) {
this.$message({
message: response.data.msg,
type: 'error'
});
loading.close();
});
},
search(val) {
this.getData(val);
},
export1(){
let url = "{!! yzWebFullUrl('coupon.share-coupon.export') !!}";
for(let i in this.search_form) {
if(this.search_form[i]) {
url += "&search["+i+"]="+this.search_form[i]
}
}
if (this.search_form.time_search == 1) {
url += "&search[time_start]="+this.times[0]/1000+"&search[time_end]="+this.times[1]/1000
}
console.log(url)
window.location.href = url;
},
handleClick(val) {
console.log(val.name)
if(val.name == 1) {
window.location.href = `{!! yzWebFullUrl('coupon.base-set.see') !!}`;
}
else if(val.name == 2) {
window.location.href = `{!! yzWebFullUrl('coupon.coupon.index') !!}`;
}
else if(val.name == 3) {
window.location.href = `{!! yzWebFullUrl('coupon.coupon.log-view') !!}`;
}
else if(val.name == 4) {
window.location.href = `{!! yzWebFullUrl('coupon.share-coupon.log') !!}`;
}
else if(val.name == 5) {
window.location.href = `{!! yzWebFullUrl('coupon.coupon-use.index') !!}`;
}
else if(val.name == 6) {
window.location.href = `{!! yzWebFullUrl('coupon.slide-show') !!}`;
}
else if(val.name == 7) {
window.location.href = `{!! yzWebFullUrl('coupon.member-coupon.index') !!}`;
}
},
// 字符转义
escapeHTML(a) {
a = "" + a;
return a.replace(/&amp;/g, "&").replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&quot;/g, "\"").replace(/&apos;/g, "'");;
},
add0(m) {
return m<10?'0'+m:m
},
timeStyle(time) {
let time1 = new Date(time*1000);
let y = time1.getFullYear();
let m = time1.getMonth()+1;
let d = time1.getDate();
let h = time1.getHours();
let mm = time1.getMinutes();
let s = time1.getSeconds();
return y+'-'+this.add0(m)+'-'+this.add0(d)+' '+this.add0(h)+':'+this.add0(mm)+':'+this.add0(s);
},
},
})
</script>
@endsection