Authored by xuhongyun

build

... ... @@ -270,10 +270,14 @@ webpackJsonp([8],[
hidden: true,
render: function (item) {
var searchAndLabel = item.searchAndLabel ? item.searchAndLabel : '',
searchKeys = item.searchKeys ? item.searchKeys : '',
style = item.style ? item.style : '',
pattern = item.pattern ? item.pattern : '',
makeCrafts = item.makeCrafts ? item.makeCrafts : '';
return '关键词:' + searchAndLabel + '<br>' +
if(searchKeys.length>15){
searchKeys=searchKeys.substr(0,15)+"...";
}
return '关键词:' + searchKeys + '<br>' +
'风格:' + style + '<br>' +
'纹理:' + pattern + '<br>' +
'工艺:' + makeCrafts + '<br>';
... ...