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

Commit fea9fa1d authored by jiangxiulong's avatar jiangxiulong

view

parent 3c5b7b8f
...@@ -72,6 +72,10 @@ ...@@ -72,6 +72,10 @@
<label>兑换码:</label> <label>兑换码:</label>
<input type="text" name="exCode"/> <input type="text" name="exCode"/>
</li> </li>
<li>
<label>用户手机号:</label>
<input type="text" name="userMobile"/>
</li>
<li> <li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i
class="fa fa-search"></i>&nbsp;搜索</a> class="fa fa-search"></i>&nbsp;搜索</a>
...@@ -171,11 +175,18 @@ ...@@ -171,11 +175,18 @@
{ {
field: 'name', field: 'name',
title: '藏品名称', title: '藏品名称',
formatter: function (value, row) { formatter: function (value) {
if (row.boxSkuId) { return value.trim().split(" ")[0];
return value.trim().split(" ")[0] + " (盲盒)"; }
},
{
field: 'boxSkuId',
title: '藏品类型',
formatter: function (value) {
if (value) {
return "盲盒";
} else { } else {
return value.trim().split(" ")[0]; return "明盒";
} }
} }
}, },
......
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