若依框架. 仿ThymeLeaf前端SelectDictLable方法

  1. 在framework项目下新增所需服务

 

2. 在admin项目下,编辑ry-ui.js,新增table的方法。

  若依框架. 仿ThymeLeaf前端SelectDictLable方法_第1张图片

 

 若依框架. 仿ThymeLeaf前端SelectDictLable方法_第2张图片

// ry-ui.js中代码:
selectUserName: function(datas, value) {
var actions = [];
$.each(datas,
function(index, user) {
if (user.userId == ('' + value)) {
actions.push($.common.sprintf("%s", "", user.userName));
return false;
}
});
return actions.join('');
},

 

//页面中js代码
var
userList = [[$ {@user.getUserList()}]]; {   field: 'consultantId',   title: '业务经理',   sortable: true,   formatter: function(value, row, index) {       return $.table.selectUserName(userList, value);   } },

 

 

 

你可能感兴趣的:(若依框架. 仿ThymeLeaf前端SelectDictLable方法)