|  |  |  | 
|---|
|  |  |  | <!-- 表格和分页 --> | 
|---|
|  |  |  | <template v-slot:table-wrap> | 
|---|
|  |  |  | <ul class="toolbar" v-permissions="['business:empower:create', 'business:empower:delete']"> | 
|---|
|  |  |  | <li><el-button type="primary" v-permissions="['business:empower:create']">导出</el-button></li> | 
|---|
|  |  |  | <li><el-button type="primary" v-permissions="['business:empower:exportExcel']" @click="exportExcel">导出</el-button></li> | 
|---|
|  |  |  | <!--                <li><el-button type="primary" v-permissions="['business:empower:create']">立即下发</el-button></li>--> | 
|---|
|  |  |  | <!--                <li><el-button type="primary" v-permissions="['business:empower:create']">取消下发</el-button></li>--> | 
|---|
|  |  |  | </ul> | 
|---|
|  |  |  | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column prop="sendDate" label="创建时间" min-width="150px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="createDate" label="创建时间" min-width="150px"></el-table-column> | 
|---|
|  |  |  | <el-table-column label="是否删除" min-width="100px"> | 
|---|
|  |  |  | <template slot-scope="{row}"> | 
|---|
|  |  |  | <span style="color: green;" v-if="row.isdeleted === 0">否</span> | 
|---|
|  |  |  | <span style="color: red;" v-if="row.isdeleted === 1">是</span> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <!--                <el-table-column prop="createrName" label="操作人员" min-width="100px"></el-table-column>--> | 
|---|
|  |  |  | <el-table-column label="下发状态" min-width="100px"> | 
|---|
|  |  |  | <template slot-scope="{row}"> | 
|---|
|  |  |  | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | reset () { | 
|---|
|  |  |  | this.$refs.searchForm.resetFields() | 
|---|
|  |  |  | this.searchForm.startTime = '' | 
|---|
|  |  |  | this.searchForm.endTime = '' | 
|---|
|  |  |  | this.time = [] | 
|---|
|  |  |  | this.searchForm.radio = null | 
|---|
|  |  |  | this.search() | 
|---|
|  |  |  | this.searchForm.radio = '0' | 
|---|
|  |  |  | this.changeRadio('0') | 
|---|
|  |  |  | // this.search() | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|