|
|
@ -4,6 +4,21 @@ |
|
|
|
<div class="table-page-search-wrapper"> |
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
|
|
|
<a-row :gutter="24"> |
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<a-form-item label="关联用户id"> |
|
|
|
<j-dict-select-tag placeholder="请选择关联用户id" v-model="queryParam.userId" dictCode="han_hai_member,nick_name,id"/> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> |
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
<a @click="handleToggleSearch" style="margin-left: 8px"> |
|
|
|
{{ toggleSearchStatus ? '收起' : '展开' }} |
|
|
|
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> |
|
|
|
</a> |
|
|
|
</span> |
|
|
|
</a-col> |
|
|
|
</a-row> |
|
|
|
</a-form> |
|
|
|
</div> |
|
|
@ -125,13 +140,29 @@ |
|
|
|
{ |
|
|
|
title:'反馈内容', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'content', |
|
|
|
dataIndex: 'question', |
|
|
|
scopedSlots: {customRender: 'htmlSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'联系方式', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'phone' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'联系姓名', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'name' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'图片', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'image', |
|
|
|
scopedSlots: {customRender: 'imgSlot'} |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'关联用户id', |
|
|
|
align:"center", |
|
|
|
dataIndex: 'userId' |
|
|
|
dataIndex: 'userId_dictText' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '操作', |
|
|
@ -167,7 +198,10 @@ |
|
|
|
}, |
|
|
|
getSuperFieldList(){ |
|
|
|
let fieldList=[]; |
|
|
|
fieldList.push({type:'string',value:'content',text:'反馈内容',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'question',text:'反馈内容',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'phone',text:'联系方式',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'name',text:'联系姓名',dictCode:''}) |
|
|
|
fieldList.push({type:'Text',value:'image',text:'图片',dictCode:''}) |
|
|
|
fieldList.push({type:'string',value:'userId',text:'关联用户id',dictCode:"han_hai_member,nick_name,id"}) |
|
|
|
this.superFieldList = fieldList |
|
|
|
} |
|
|
|