|
|
|
@ -4,7 +4,7 @@ |
|
|
|
<el-form :inline="true" :model="formData" ref="ref_searchform" :label-width="'110px'"> |
|
|
|
<div> |
|
|
|
<el-form-item label="发布渠道" prop="publishDitch"> |
|
|
|
<el-select v-model="formData.publishDitch" placeholder="请选择"> |
|
|
|
<el-select v-model="formData.publishDitch" placeholder="请选择" clearable> |
|
|
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
@ -16,6 +16,7 @@ |
|
|
|
v-model="formData.orgId" |
|
|
|
:options="orgOptions" |
|
|
|
filterable |
|
|
|
clearable |
|
|
|
:props="orgOptionProps" |
|
|
|
:show-all-levels="false" |
|
|
|
@change="handleChangeAgency" |
|
|
|
@ -25,9 +26,10 @@ |
|
|
|
<el-date-picker |
|
|
|
v-model="timeRange" |
|
|
|
size="small" |
|
|
|
type="datetimerange" |
|
|
|
clearable |
|
|
|
type="daterange" |
|
|
|
@change="handleTimeChange" |
|
|
|
format="yyyy-MM-dd HH:mm" |
|
|
|
format="yyyy-MM-dd" |
|
|
|
value-format="yyyy-MM-dd HH:mm" |
|
|
|
range-separator="至" |
|
|
|
start-placeholder="开始时间" |
|
|
|
@ -55,10 +57,14 @@ |
|
|
|
> |
|
|
|
<el-table-column label="序号" header-align="center" align="center" type="index" width="50"></el-table-column> |
|
|
|
|
|
|
|
<el-table-column prop="content" header-align="center" align="center" label="发布内容" min-width="100"></el-table-column> |
|
|
|
<el-table-column prop="publishDitch" header-align="center" align="center" label="发布渠道" min-width="110"></el-table-column> |
|
|
|
<el-table-column prop="publishRangeName" header-align="center" align="center" label="发布范围" min-width="110"></el-table-column> |
|
|
|
<el-table-column prop="publishTime" header-align="center" align="center" label="发布时间" min-width="110"></el-table-column> |
|
|
|
<el-table-column prop="content" header-align="center" align="center" label="发布内容" show-overflow-tooltip="true" ></el-table-column> |
|
|
|
<el-table-column prop="publishDitch" header-align="center" align="center" label="发布渠道" width="110"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.publishDitch == 0">专属APP</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="publishRangeName" header-align="center" align="center" label="发布范围" show-overflow-tooltip="true"></el-table-column> |
|
|
|
<el-table-column prop="publishTime" header-align="center" align="center" label="发布时间" width="160"></el-table-column> |
|
|
|
<el-table-column prop="count" align="center" width="110" label="操作" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button size="small" type="text" @click="show(scope.row)">查看</el-button> |
|
|
|
@ -254,7 +260,7 @@ export default { |
|
|
|
}; |
|
|
|
this.timeRange = []; |
|
|
|
this.pageNo = 0; |
|
|
|
this.loadTable() |
|
|
|
this.loadTable(); |
|
|
|
}, |
|
|
|
|
|
|
|
handleSizeChange(val) { |
|
|
|
|