Commit fce1e7d3 authored by agping's avatar agping

开盘广场

parent aa8d88d9
<?php
namespace app\index\controller;
/**
* Created by PhpStorm.
* User: liu yin ping
* Date: 2018/3/13
* Time: 15:48
*/
use app\index\extend\Basic;
class OpenSquareLog extends Basic
{
public function opensquarelogList()
{
if (!$this->request->isAjax()) {
return view('opensquare/opensquareLogList');
}
}
}
This diff is collapsed.
...@@ -335,6 +335,7 @@ Route::group('index', [ ...@@ -335,6 +335,7 @@ Route::group('index', [
'inspectionRecordList' => [ 'index/InspectionRecord/inspectionRecordList', [ 'method' => 'GET' ] ],//约带看记录liu 'inspectionRecordList' => [ 'index/InspectionRecord/inspectionRecordList', [ 'method' => 'GET' ] ],//约带看记录liu
'realtimePerformance' => [ 'index/RealTimePerformance/realtimePerformanceList', [ 'method' => 'GET' ] ],//实时业绩liu 'realtimePerformance' => [ 'index/RealTimePerformance/realtimePerformanceList', [ 'method' => 'GET' ] ],//实时业绩liu
'shopinspectionLog' => [ 'index/ShopInspectionLog/shopinspectionLogList', [ 'method' => 'POST|GET' ] ],//商铺查看日志liu 'shopinspectionLog' => [ 'index/ShopInspectionLog/shopinspectionLogList', [ 'method' => 'POST|GET' ] ],//商铺查看日志liu
'opensquareLog' => [ 'index/OpenSquareLog/opensquarelogList', [ 'method' => 'POST|GET' ] ],//开盘广场liu
'redEnvelope' => [ 'index/RedEnvelope/redEnvelopeList', [ 'method' => 'POST|GET' ] ],//活动列表liu 'redEnvelope' => [ 'index/RedEnvelope/redEnvelopeList', [ 'method' => 'POST|GET' ] ],//活动列表liu
'CashBack' => [ 'index/CashBack/cashBackList', [ 'method' => 'POST|GET' ] ],//返现红包liu 'CashBack' => [ 'index/CashBack/cashBackList', [ 'method' => 'POST|GET' ] ],//返现红包liu
'CashAccount' => [ 'index/CashAccount/cashAccountList', [ 'method' => 'POST|GET' ] ],//现金账户liu 'CashAccount' => [ 'index/CashAccount/cashAccountList', [ 'method' => 'POST|GET' ] ],//现金账户liu
......
This diff is collapsed.
<script id="opensquare_list_tpl" type="text/template">
[% if(it) { %]
[% for(var item in it){ %]
<tr>
<td>[%= it[item]['create_time'] %]</td>
<!--<td>[%= hideTel(it[item]["name"]) %]</td>-->
<td>[% if(it[item]["name"] != null) { %]
[%= it[item]["name"] %]
[% } %]
</td>
<td>[%= it[item]["title"] %]</td>
<td>[% if(it[item]["label_name"] != null) { %]
[%= it[item]["label_name"] %]
[% } %]
</td>
<!--<td>[%= it[item]["label_name"] %]</td>-->
<!--没有评论数字段-->
<td>[%= it[item]["comment_number"] %]</td>
<td>
<a href="#show_modal" class="btn1 btn-success show_modal_btn" data-toggle="modal" data-id="[%= it[item]['id'] %]"> 查看</a>
<!--<a class="btn1 btn-success" href="new_text.html?id=[%= it[item]['id'] %]" data-createTime='[%= it[item]["create_time"] %]' data-title='[%= it[item]["title"] %]' data-id='[%= it[item]["id"] %]' data-content='[%= it[item]["content"] %]' target="_self">-->
<a class="btn1 btn-success" href="new_text.html?id=[%= it[item]['id'] %]" data-id="[%= it[item]['id'] %]">
编辑
</a>
[% if(check_auth('index/delNews')) { %]
<!--删除权限-->
<a class="btn1 btn-danger announcement-del" href="#modal-delete" data-toggle="modal" data-id='[%= it[item]["id"] %]'>删除</a>
[% } %]
</td>
</tr>
[% } %]
[% }else{ %]
<tr>
<td colspan="7" style="text-align:center;"> 暂无数据</td>
</tr>
[% } %]
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment