|
|
@ -130,7 +130,8 @@ |
|
|
|
{ |
|
|
|
title:'商品图片', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'image' |
|
|
|
dataIndex: 'image', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'商品价格', |
|
|
@ -178,27 +179,32 @@ |
|
|
|
{ |
|
|
|
title:'车辆照片(前)', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'imageFront' |
|
|
|
dataIndex: 'imageFront', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'车辆照片(后)', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'imageBack' |
|
|
|
dataIndex: 'imageBack', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'车辆照片(左)', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'imageLeft' |
|
|
|
dataIndex: 'imageLeft', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'车辆照片(右)', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'imageRight' |
|
|
|
dataIndex: 'imageRight', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'车辆照片(驾驶室)', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'imageCab' |
|
|
|
dataIndex: 'imageCab', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'联系人', |
|
|
@ -265,7 +271,7 @@ |
|
|
|
getSuperFieldList(){ |
|
|
|
let fieldList=[]; |
|
|
|
fieldList.push({type:'string',value:'goodsName',text:'商品名称',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'image',text:'商品图片',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'image',text:'商品图片',dictCode:''}) |
|
|
|
fieldList.push({type:'BigDecimal',value:'price',text:'商品价格',dictCode:''}) |
|
|
|
fieldList.push({type:'int',value:'views',text:'浏览量',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'brand',text:'品牌',dictCode:''}) |
|
|
@ -274,15 +280,15 @@ |
|
|
|
fieldList.push({type:'string',value:'model',text:'型号',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'detail',text:'详情',dictCode:''}) |
|
|
|
fieldList.push({type:'int',value:'inventory',text:'库存',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'imageFront',text:'车辆照片(前)',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'imageBack',text:'车辆照片(后)',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'imageLeft',text:'车辆照片(左)',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'imageRight',text:'车辆照片(右)',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'imageCab',text:'车辆照片(驾驶室)',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'imageFront',text:'车辆照片(前)',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'imageBack',text:'车辆照片(后)',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'imageLeft',text:'车辆照片(左)',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'imageRight',text:'车辆照片(右)',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'imageCab',text:'车辆照片(驾驶室)',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'userName',text:'联系人',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'phone',text:'联系人电话',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'area',text:'所在区域',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'cartypeId',text:'关联商品类型id',dictCode:"carrent_type,name,id"}) |
|
|
|
fieldList.push({type:'string',value:'cartypeId',text:'关联商品类型id',dictCode:"carrent_categoryone,name,id"}) |
|
|
|
fieldList.push({type:'string',value:'categorytwoId',text:'关联二级分类id',dictCode:"carrent_categorytwo,name,id"}) |
|
|
|
fieldList.push({type:'string',value:'userId',text:'关联用户id',dictCode:"han_hai_member,nick_name,id"}) |
|
|
|
this.superFieldList = fieldList |
|
|
|