|
@@ -10,8 +10,8 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
- <a-form-item label="公告名称">
|
|
|
- <a-input id="noticeList-title" v-model.trim="queryParam.notice.title" allowClear placeholder="请输入公告名称"/>
|
|
|
+ <a-form-item label="标题">
|
|
|
+ <a-input id="noticeList-title" v-model.trim="queryParam.notice.title" allowClear placeholder="请输入标题"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
@@ -78,7 +78,7 @@ export default {
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: 80, align: 'center' },
|
|
|
{ title: '发布时间', dataIndex: 'createDate', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '公告名称', dataIndex: 'notice.title', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '标题', dataIndex: 'notice.title', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: 200, align: 'center' }
|
|
|
],
|
|
|
loadData: [],
|
|
@@ -105,8 +105,8 @@ export default {
|
|
|
]),
|
|
|
// 时间 change
|
|
|
dateChange (date) {
|
|
|
- this.queryParam.beginDate = date[0] ? date[0]: ''
|
|
|
- this.queryParam.endDate = date[1] ? date[1]: ''
|
|
|
+ this.queryParam.beginDate = date[0] ? date[0] : ''
|
|
|
+ this.queryParam.endDate = date[1] ? date[1] : ''
|
|
|
},
|
|
|
// 查询列表
|
|
|
handelSearch (pageNo) {
|