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

Commit 62a3bf1d authored by jiangxiulong's avatar jiangxiulong

抽奖列表的发放搜索、抽奖列表增加relationId展示、prizeType注释更改

parent f246f592
...@@ -78,7 +78,12 @@ ...@@ -78,7 +78,12 @@
field: 'prizeType', field: 'prizeType',
title: '奖品类型', title: '奖品类型',
formatter: function (value, row) { formatter: function (value, row) {
return $.table.selectDictLabel(prizeType, value); let dictLabel = $.table.selectDictLabel(prizeType, value);
if (row.relationId) {
return dictLabel + "(" + row.relationId + ")";
} else {
return dictLabel;
}
} }
}, },
{ {
......
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