记得上下班打卡 | git大法好,push需谨慎

Commit 490f0d06 authored by 胡佳晨's avatar 胡佳晨

Merge remote-tracking branch 'origin/dev' into dev

parents 7ec033ae 591f8364
s<!DOCTYPE html>
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('【请填写功能名称】列表')" />
......@@ -100,11 +100,11 @@ s<!DOCTYPE html>
title: '订单号'
},
{
field: 'uid',
field: 'state',
title: '订单状态'
},
{
field: 'mode',
field: 'payType',
title: '支付方式'
},
{
......@@ -112,15 +112,15 @@ s<!DOCTYPE html>
title: '价格(元)'
},
{
field: 'pricePaid',
field: 'paymentAt',
title: '支付时间'
},
{
field: 'memberName',
field: 'createdAt',
title: '创建时间'
},
{
field: 'memberId',
field: 'uid',
title: '用户ID'
},
{
......@@ -128,7 +128,7 @@ s<!DOCTYPE html>
title: '手机号'
},
{
field: 'days',
field: 'source',
title: '客户端'
},
{
......@@ -140,7 +140,7 @@ s<!DOCTYPE html>
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.mid + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.orderNo + '\')"><i class="fa fa-search"></i>详细</a>');
return actions.join('');
}
}]
......
......@@ -107,6 +107,9 @@
<script th:inline="javascript">
var detailFlag = [[${@permission.hasPermi('kylin:order:orderlist:detail')}]];
var prefix = ctx + "kylin/order/orderList";
var orderStatusDic = [[${@dict.getType('zhengzai_order_status')}]];
var getTicketTypeDic = [[${@dict.getType('zhengzai_get_ticket_type')}]];
var payTypeDic = [[${@dict.getType('zhengzai_pay_type')}]];
$(function() {
var options = {
......@@ -117,32 +120,45 @@
columns: [{
checkbox: true
},
{
field: '-',
title: '第三方'
},
{
field: 'orderCode',
title: '订单号'
},
{
field: 'performanceTitle',
title: '订单状态'
field: 'title',
title: '演出名称'
},
{
field: 'getTicketType',
title: '支付方式'
field: 'status',
title: '订单状态',
formatter: function(value, row, index) {
return $.table.selectDictLabel(orderStatusDic, value);
}
},
{
field: 'getTicketType',
title: '取票方式'
title: '取票方式',
formatter: function(value, row, index) {
return $.table.selectDictLabel(getTicketTypeDic, value);
}
},
{
field: 'paymentType',
title: '支付方式'
// formatter: function(value, row, index) {
// return $.table.selectDictLabel(payTypeDic, value);
// }
},
{
field: 'userId',
field: 'tied',
title: '搭售'
},
{
field: 'userName',
field: 'priceActual',
title: '总价格'
},
{
......@@ -162,7 +178,7 @@
title: '手机号'
},
{
field: 'qrCode',
field: 'orderSource',
title: '客户端'
},
{
......
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