|
@@ -45,50 +45,127 @@
|
|
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
|
<button class="layui-btn layui-btn-primary"><i class="layui-icon"></i> 搜 索</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</form>
|
|
- <table id="NewsTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
|
|
|
|
|
+ <div class="layui-tab-content">
|
|
|
|
+
|
|
|
|
+ <table class="layui-table margin-top-10" lay-skin="line">
|
|
|
|
+ {notempty name='list'}
|
|
|
|
+ <thead>
|
|
|
|
+ <tr>
|
|
|
|
+ <th>ID</th>
|
|
|
|
+ <th>订单号</th>
|
|
|
|
+ <th>商家名称</th>
|
|
|
|
+ <th>联系人</th>
|
|
|
|
+ <th>联系方式</th>
|
|
|
|
+ <th>包装形式</th>
|
|
|
|
+ <th>装货码头</th>
|
|
|
|
+ <th>到港码头</th>
|
|
|
|
+ <th>发布时间</th>
|
|
|
|
+ <th>操作面板</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ {/notempty}
|
|
|
|
+ <tbody>
|
|
|
|
+ {foreach $list as $key=>$vo}
|
|
|
|
+ <tr>
|
|
|
|
+ <!-- <td class='list-table-check-td think-checkbox'>-->
|
|
|
|
+ <!-- <label><input class="list-check-box" type='checkbox' value='{$vo.id}'></label>-->
|
|
|
|
+ <!-- </td>-->
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.id}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.order_no}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.merchant.name}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.real_name}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.mobile}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.form}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.wharf_to}
|
|
|
|
+ </td>
|
|
|
|
+ <!-- <td class="nowrap">-->
|
|
|
|
+ <!-- {if $vo.amount == 0.00}-->
|
|
|
|
+ <!-- '未匹配'-->
|
|
|
|
+ <!-- {else}-->
|
|
|
|
+ <!-- {$vo.amount}-->
|
|
|
|
+ <!-- {/if}-->
|
|
|
|
+ <!-- </td>-->
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.wharf_for}
|
|
|
|
+ </td>
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ {$vo.create_time}
|
|
|
|
+ </td>
|
|
|
|
+
|
|
|
|
+ <td class="nowrap">
|
|
|
|
+ <div>
|
|
|
|
+ <a class="layui-btn layui-btn-primary layui-btn-sm" data-modal="{:url('detail')}?id={$vo.id}" data-area='["1200px","90%"]'>查看详情</a>
|
|
|
|
+ {if $vo.status == 1}
|
|
|
|
+ <a class="layui-btn layui-btn-primary layui-btn-sm" data-open="{:url('edit')}?id={$vo.id}" data-area='["1200px","90%"]'>编辑</a>
|
|
|
|
+
|
|
|
|
+ <a class="layui-btn layui-btn-primary layui-btn-sm" data-confirm="确定要取消订单吗?" data-action="{:url('cancellation')}?id={$vo.id}" data-area='["1200px","90%"]'>取消订单</a>
|
|
|
|
+ {/if}
|
|
|
|
+ </div>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ {/foreach}
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
|
|
+ {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+<!-- <table id="NewsTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
{/block}
|
|
|
|
|
|
{block name='script'}
|
|
{block name='script'}
|
|
<script>
|
|
<script>
|
|
- let status={:json_encode($status,256)};
|
|
|
|
- $(function () {
|
|
|
|
- // 初始化表格组件
|
|
|
|
- $('#NewsTable').layTable({
|
|
|
|
- even: true, height: 'full',
|
|
|
|
- sort: {field: 'id desc', type: 'desc'},
|
|
|
|
- where: {},
|
|
|
|
- cols: [[
|
|
|
|
- //{checkbox: true, fixed: true},
|
|
|
|
- {field: 'id', title: 'ID', align: "center"},
|
|
|
|
- {field: 'order_no', title: '订单号', align: "center"},
|
|
|
|
- {field: '', title: '商家名称', align: "center",templet(a){
|
|
|
|
- return a.merchant?a.merchant.name:''
|
|
|
|
- }},
|
|
|
|
- {field: 'real_name', title: '联系人', align: "center"},
|
|
|
|
- {field: 'mobile', title: '联系方式', align: "center"},
|
|
|
|
- {field: 'form', title: '包装形式', align: "left"},
|
|
|
|
- {field: 'wharf_to', title: '装货码头', align: "left"},
|
|
|
|
- {field: 'wharf_for', title: '到港码头', align: "left"},
|
|
|
|
- {field: 'create_time', title: '发布时间', align: 'center', minWidth: 170, sort: true},
|
|
|
|
- {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 80, fixed: 'right'},
|
|
|
|
- ]]
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- // 数据状态切换操作
|
|
|
|
- layui.form.on('switch(StatusSwitch)', function (obj) {
|
|
|
|
- var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
|
|
|
- $.form.load("{:url('state')}", data, 'post', function (ret) {
|
|
|
|
- if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
|
|
|
- $('#NewsTable').trigger('reload');
|
|
|
|
- }); else {
|
|
|
|
- $('#NewsTable').trigger('reload');
|
|
|
|
- }
|
|
|
|
- return false;
|
|
|
|
- }, false);
|
|
|
|
- });
|
|
|
|
- });
|
|
|
|
|
|
+ // let status={:json_encode($status,256)};
|
|
|
|
+ // $(function () {
|
|
|
|
+ // // 初始化表格组件
|
|
|
|
+ // $('#NewsTable').layTable({
|
|
|
|
+ // even: true, height: 'full',
|
|
|
|
+ // sort: {field: 'id desc', type: 'desc'},
|
|
|
|
+ // where: {},
|
|
|
|
+ // cols: [[
|
|
|
|
+ // //{checkbox: true, fixed: true},
|
|
|
|
+ // {field: 'id', title: 'ID', align: "center"},
|
|
|
|
+ // {field: 'order_no', title: '订单号', align: "center"},
|
|
|
|
+ // {field: '', title: '商家名称', align: "center",templet(a){
|
|
|
|
+ // return a.merchant?a.merchant.name:''
|
|
|
|
+ // }},
|
|
|
|
+ // {field: 'real_name', title: '联系人', align: "center"},
|
|
|
|
+ // {field: 'mobile', title: '联系方式', align: "center"},
|
|
|
|
+ // {field: 'form', title: '包装形式', align: "left"},
|
|
|
|
+ // {field: 'wharf_to', title: '装货码头', align: "left"},
|
|
|
|
+ // {field: 'wharf_for', title: '到港码头', align: "left"},
|
|
|
|
+ // {field: 'create_time', title: '发布时间', align: 'center', minWidth: 170, sort: true},
|
|
|
|
+ // {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 80, fixed: 'right'},
|
|
|
|
+ // ]]
|
|
|
|
+ // });
|
|
|
|
+ //
|
|
|
|
+ // // 数据状态切换操作
|
|
|
|
+ // layui.form.on('switch(StatusSwitch)', function (obj) {
|
|
|
|
+ // var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
|
|
|
+ // $.form.load("{:url('state')}", data, 'post', function (ret) {
|
|
|
|
+ // if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
|
|
|
+ // $('#NewsTable').trigger('reload');
|
|
|
|
+ // }); else {
|
|
|
|
+ // $('#NewsTable').trigger('reload');
|
|
|
|
+ // }
|
|
|
|
+ // return false;
|
|
|
|
+ // }, false);
|
|
|
|
+ // });
|
|
|
|
+ // });
|
|
|
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
@@ -114,4 +191,4 @@
|
|
<a class="layui-btn layui-btn-primary layui-btn-sm" data-modal="{:url('detail')}?id={{d.id}}" data-area='["1200px","90%"]'>查看详情</a>
|
|
<a class="layui-btn layui-btn-primary layui-btn-sm" data-modal="{:url('detail')}?id={{d.id}}" data-area='["1200px","90%"]'>查看详情</a>
|
|
<!--{/if}-->
|
|
<!--{/if}-->
|
|
</script>
|
|
</script>
|
|
-{/block}
|
|
|
|
|
|
+{/block}
|