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

Commit 7d02cfca authored by jiangxiulong's avatar jiangxiulong

快递方式 快递产品

parent 2415c808
...@@ -69,13 +69,22 @@ ...@@ -69,13 +69,22 @@
</li> </li>
<li> <li>
<label>快递方式:</label> <label>快递方式:</label>
<select name="prizeType" <select name="expressType"
th:with="type=${@dict.getType('zhengzai_kylin_express_type')}"> th:with="type=${@dict.getType('zhengzai_kylin_express_type')}">
<option value="">全部</option> <option value="">全部</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" <option th:each="dict : ${type}" th:text="${dict.dictLabel}"
th:value="${dict.dictValue}"></option> th:value="${dict.dictValue}"></option>
</select> </select>
</li> </li>
<li>
<label>快递产品:</label>
<select name="productCode">
<option value="">所有</option>
<option th:each="module : ${expressModuleList}"
th:text="${module.title}"
th:value="${module.productCode}"></option>
</select>
</li>
<li> <li>
<label>票种:</label> <label>票种:</label>
<select name="ticketsId"> <select name="ticketsId">
...@@ -439,7 +448,11 @@ ...@@ -439,7 +448,11 @@
title: '购票数量' title: '购票数量'
}, },
{ {
field: '', field: 'produceTitle',
title: '快递产品'
},
{
field: 'expressType',
title: '快递方式', title: '快递方式',
formatter: function (value, row) { formatter: function (value, row) {
let dictLabel = $.table.selectDictLabel(expressType, value); let dictLabel = $.table.selectDictLabel(expressType, value);
......
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