layUI 将数据库中获取到的数值0,1,2转为文字

layUI 将数据库中获取到的数值0,1,2转为文字:

 table.render({
            elem: '#test'
            , data: showData
            , cols: [[
                {
                    align: 'center', title: '序号', width: 80, templet: function (data) {
                        return (data.LAY_TABLE_INDEX + 1);
                    }
                }
                , { field: 'Title', title: '流程名称', align: 'center', }
                , { field: 'XingMing', title: '评价人', width: 100, align: 'center' }
                , {
                    field: 'MYD', title: '满意度', width: 100, align: 'center', templet: function (item) {
                        if (item.MYD == '0') {
                                return "满意";
                        } else if (item.MYD == '1') {
                                return "一般";
                        } else if (item.MYD == '2') {
                                return "不满意";
                        } else {
                            return "";
                        }
                    } }
                , { field: 'MYDDZ_Note', title: '意见',width:100, align: 'center' }
                , { field: 'MYDDZ_RDT', title: '评价时间', width: 100, align: 'center' }
                , { field: 'FlowEmps', title: '流程参与人', align: 'center' }
            ]]
            , page: true
        });

layUI 将数据库中获取到的数值0,1,2转为文字_第1张图片

你可能感兴趣的:(layUI)