songxingwei 2 năm trước cách đây
mục cha
commit
fac0fc61ea

+ 97 - 0
application/user/controller/MemberCollection.php

@@ -0,0 +1,97 @@
+<?php
+
+// +----------------------------------------------------------------------
+// | ThinkAdmin
+// +----------------------------------------------------------------------
+// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
+// +----------------------------------------------------------------------
+// | 官方网站: http://demo.thinkadmin.top
+// +----------------------------------------------------------------------
+// | 开源协议 ( https://mit-license.org )
+// +----------------------------------------------------------------------
+// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
+// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
+// +----------------------------------------------------------------------
+
+namespace app\user\controller;
+
+use library\Controller;
+use think\Db;
+use function GuzzleHttp\Psr7\build_query;
+
+/**
+ * 会员信息管理
+ * Class Member
+ * @package app\user\controller
+ */
+class MemberCollection extends Controller
+{
+    /**
+     * 绑定数据表
+     * @var string
+     */
+    protected $table = 'store_order_info';
+
+    /**
+     * 藏品管理
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function index()
+    {
+        $this->title = '藏品记录';
+        $hash_send=$this->request->get('hash_send');
+        $query = $this->_query($this->table)->whereIn('status','1,3');
+        if ($hash_send){
+            if ($hash_send==1){
+                $query->where('collectors_hash','neq','');
+            }else if ($hash_send==2){
+                $query->where('collectors_hash','eq','');
+            }
+        }
+        $query->dateBetween('create_at')->order('id desc')->page();
+    }
+    /**
+     * 数据列表处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    protected function _index_page_filter(&$data)
+    {
+        foreach ($data as $k=>&$v){
+            $v['pro_info'] =json_decode($v['pro_info'],true);
+            $info = Db::name('store_member')->where('id',$v['mid'])->field('name,phone,wallet_address')->find();
+            $v['scz'] = $info['name'].'('.$info['phone'].')';
+            $v['wallet_address'] = $info['wallet_address'];
+
+            $pro_info = Db::name('store_collection')->where('id',$v['c_id'])->field('one_given_day,other_given_day')->find();
+            $log = Db::name('store_collect_examples_log')
+                ->where('order_info_id',$v['id'])
+                ->count();
+            if (!$log){
+                if ($pro_info['one_given_day']!=0){
+                    $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['one_given_day']*24*60*60));
+                }else{
+                    $v['exam_time'] = $v['create_at'];
+                }
+            }else{
+                if ($pro_info['other_given_day']!=0){
+                    $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['other_given_day']*24*60*60));
+                }else{
+                    $v['exam_time'] = $v['create_at'];
+                }
+            }
+        }
+    }
+
+
+}

+ 61 - 0
application/user/view/member_collection/index.html

@@ -0,0 +1,61 @@
+{extend name='admin@main'}
+
+{block name="content"}
+<div class="think-box-shadow">
+    {include file='member_collection/index_search'}
+    <table class="layui-table margin-top-10" lay-skin="line">
+        {notempty name='list'}
+        <thead>
+        <tr>
+<!--            <th class='text-left ' >订单编号</th>-->
+            <th class='text-left ' >藏品信息</th>
+            <th class='text-left ' >流转信息</th>
+            <th class='text-left '>收藏者</th>
+            <th class='text-left '>收藏hash</th>
+            <th class="text-left ">发放时间</th>
+            <th class="text-left ">可转增时间</th>
+            <th class="text-left ">类型</th>
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr>
+<!--            <td class='text-left ' style="width: 10%">{$vo.order_no|default=''}</td>-->
+            <td class='text-left ' style="width: 10%">
+                藏品名称:{$vo.pro_info.name|default=''}<br />
+                价格:{$vo.pro_info.price|default=''}<br />
+                标签:{$vo.tag|default=''}
+            </td>
+            <td class='text-left ' style="width: 7%">
+                流转公司:{$vo.company|default=''}<br />
+                流转hash:{$vo.company_hash|default=''}<br />
+                ddcid:{$vo.ddcid|default=''}
+            </td>
+            <td class='text-left ' style="width: 15%">
+                {$vo.scz|default=''}<br />
+                钱包地址:{$vo.wallet_address}
+            </td>
+            <td class='text-left '>{$vo.collectors_hash|default='发放中'}</td>
+            <td class='text-left '>{$vo.create_at|default=''}</td>
+            <td class='text-left '>{$vo.exam_time|default=''}</td>
+            <td class='text-left '>
+                {eq name='vo.order_id' value='0'}后台赠送{else/}
+                {eq name='vo.status' value='1'}正常购买{/eq}
+                {eq name='vo.status' value='3'}获赠{/eq}
+                {/eq}
+
+
+            </td>
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+</div>
+<script>
+</script>
+{/block}
+
+
+

+ 33 - 0
application/user/view/member_collection/index_search.html

@@ -0,0 +1,33 @@
+<fieldset>
+    <legend>条件搜索</legend>
+    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
+
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">hash是否生成</label>
+            <div class="layui-input-inline">
+                <select class="layui-select" name="hash_send">
+                    {foreach [''=>'- 全部 -','1'=>'是','2'=>'否'] as $k=>$v}
+                    {eq name='Think.get.hash_send' value='$k.""'}
+                    <option selected value="{$k}">{$v}</option>
+                    {else}
+                    <option value="{$k}">{$v}</option>
+                    {/eq}
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+
+        <div class="layui-form-item layui-inline">
+            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
+       <!--     <button type="button" data-export-list class="layui-btn layui-btn-primary" id="download"><i class="layui-icon layui-icon-export"></i> 导 出</button>-->
+        </div>
+
+    </form>
+    <script>
+        form.render();
+        laydate.render({range: true, elem: '[name="create_at"]'})
+        $('#download').click(function () {
+            window.location.href = "{:url('export')}?phone={$Think.get.phone|default=''}&name={$Think.get.name|default=''}&create_at={$Think.get.create_at|default=''}" + $(this).parents('form').serialize();
+        });
+    </script>
+</fieldset>