|
@@ -8,14 +8,23 @@
|
|
|
-->
|
|
|
<template>
|
|
|
<div class="indexPage">
|
|
|
- <v-input :btn="btn" :list="list" @del="delAll" @notice="noticeAll" @through="throughAll" @eliminate="eliminateAll" @undetermined="undeterminedAll" @search="search" @sendMail="sendMailAll"></v-input>
|
|
|
+ <v-input :btn="btn.slice(0, 1)" :list="list" @del="delAll" @notice="noticeAll" @through="throughAll" @eliminate="eliminateAll" @undetermined="undeterminedAll" @search="search" @sendMail="sendMailAll"></v-input>
|
|
|
<el-radio-group v-model="isCollapse" size="medium" style="margin-bottom: 20px;" fill="#00a0e9">
|
|
|
<el-radio-button :label="0">未读</el-radio-button>
|
|
|
<el-radio-button :label="1">通过</el-radio-button>
|
|
|
<el-radio-button :label="2">淘汰</el-radio-button>
|
|
|
<el-radio-button :label="3">待定</el-radio-button>
|
|
|
<el-radio-button :label="4">已通知</el-radio-button>
|
|
|
- </el-radio-group>
|
|
|
+ </el-radio-group><br/>
|
|
|
+ <el-dropdown v-if="table.button" @command="dropdownMethods">
|
|
|
+ <el-button style="background: #00a0e9;color:#fff">
|
|
|
+ 更多操作<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
+ </el-button>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item v-for="(item,index) in btn.slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+ <div style="height:20px"></div>
|
|
|
<v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===4?throughTable:table" :tableList="tableList" :sortType="true" :queryData="queryData" :form="searchForm" @details="details" @notice="notice" @through="through" @eliminate="eliminate" @del="del" @undetermined="undetermined" @toVedio="toVedio" @selection-change="selection" @update="update" @sendMail="sendMail" id="id"></v-table>
|
|
|
<v-pager @page="callPage" :total="totalrecords"></v-pager>
|
|
|
<el-dialog :visible.sync="dialogFormVisible" width="600px" :before-close="close" :close-on-click-modal="false">
|
|
@@ -305,7 +314,8 @@ export default {
|
|
|
props: 'delivererMail'
|
|
|
}
|
|
|
],
|
|
|
- width: 500,
|
|
|
+ width: 150,
|
|
|
+ button: true,
|
|
|
handle: [{
|
|
|
title: '查看',
|
|
|
method: 'details',
|
|
@@ -393,7 +403,8 @@ export default {
|
|
|
options: ['未发送', '发送中', '发送成功', '发送失败']
|
|
|
}
|
|
|
],
|
|
|
- width: 500,
|
|
|
+ width: 150,
|
|
|
+ button: true,
|
|
|
handle: [{
|
|
|
title: '查看',
|
|
|
method: 'details',
|
|
@@ -466,7 +477,8 @@ export default {
|
|
|
props: 'delivererMail'
|
|
|
}
|
|
|
],
|
|
|
- width: 360,
|
|
|
+ width: 150,
|
|
|
+ button: true,
|
|
|
handle: [{
|
|
|
title: '查看',
|
|
|
method: 'details',
|
|
@@ -504,6 +516,10 @@ export default {
|
|
|
this.queryEmail()
|
|
|
},
|
|
|
methods: {
|
|
|
+ dropdownMethods ({ method }) {
|
|
|
+ console.log(method)
|
|
|
+ this[method + 'All']()
|
|
|
+ },
|
|
|
queryData (form = {}) {
|
|
|
let page = this.page
|
|
|
this.searchForm = form
|
|
@@ -1041,9 +1057,9 @@ export default {
|
|
|
this.table,
|
|
|
'width',
|
|
|
this.isCollapse === 0
|
|
|
- ? 500 : this.isCollapse === 1
|
|
|
- ? 360 : this.isCollapse === 2
|
|
|
- ? 420 : 470
|
|
|
+ ? 150 : this.isCollapse === 1
|
|
|
+ ? 150 : this.isCollapse === 2
|
|
|
+ ? 150 : 150
|
|
|
)
|
|
|
}
|
|
|
}
|