copy from src/views/operate/disposal/escalation/index.vue
copy to src/views/operate/disposal/casepool/dispatch/index.vue
File was copied from src/views/operate/disposal/escalation/index.vue |
| | |
| | | <span>来源查询:</span> |
| | | <el-input placeholder="请输入问题来源"></el-input> |
| | | </div> |
| | | <div class="add"> |
| | | <!-- <div class="add"> |
| | | <el-button type="primary" icon="el-icon-plus" @click="handleOpenDialog">添加</el-button> |
| | | </div> |
| | | </div> --> |
| | | </header> |
| | | <!-- 主体展示 --> |
| | | <main> |
| | |
| | | <div class="nav"> |
| | | <el-tabs type="border-card"> |
| | | <el-tab-pane :label="item.name" v-for="item in tagList" :key="item.name"> |
| | | <!-- 数据渲染 --> |
| | | <el-table ref="multipleTable" |
| | | </el-tab-pane> |
| | | </el-tabs> |
| | | <!-- 数据渲染 --> |
| | | <el-table ref="multipleTable" |
| | | :header-cell-style="{background:'#06122c','font-size':'12px',color:'#4b9bb7','font-weight':'650','line-height':'45px'}" |
| | | :data="tableData" style="width: 100%" :row-class-name="tableRowClassName"> |
| | | <el-table-column type="selection" min-width="5"> |
| | |
| | | <el-table-column prop="operation" label="操作" min-width="15"> |
| | | <template slot-scope="scope"> |
| | | <div class="operation"> |
| | | <span @click="handleFind(scope.row)">上报</span> |
| | | <span @click="handleFind(scope.row)">调度</span> |
| | | <span class="line">|</span> |
| | | <span @click="handleUpdate(scope.row)">调度</span> |
| | | <span class="line">|</span> |
| | | <span>再学习</span> |
| | | <span class="line">|</span> |
| | | <span>暂不处理</span> |
| | | <span @click="handleUpdate(scope.row)">上传处置结果</span> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | </el-tab-pane> |
| | | </el-tabs> |
| | | </div> |
| | | </div> |
| | | </main> |
| | |
| | | // import checkIn from './compenents/checkIn'; |
| | | export default { |
| | | components: { |
| | | checkIn, |
| | | // checkIn, |
| | | }, |
| | | data() { |
| | | return { |
| | | tagList: [ |
| | | { |
| | | name: '待处理', |
| | | value: 0, |
| | | }, |
| | | { |
| | | name: '已上报', |
| | | value: 0, |
| | | }, |
| | | { |
| | | name: '已调度', |
| | | value: 0, |
| | | }, |
| | | { |
| | | name: '在学习', |
| | | value: 0, |
| | | }, |
| | | { |
| | | name: '暂不处理', |
| | | value: 0, |
| | | }, |
| | | // { |
| | | // name: '待处理', |
| | | // value: 0, |
| | | // }, |
| | | // { |
| | | // name: '已上报', |
| | | // value: 0, |
| | | // }, |
| | | // { |
| | | // name: '已调度', |
| | | // value: 0, |
| | | // }, |
| | | // { |
| | | // name: '在学习', |
| | | // value: 0, |
| | | // }, |
| | | // { |
| | | // name: '暂不处理', |
| | | // value: 0, |
| | | // }, |
| | | { |
| | | name: '违规', |
| | | value: 0, |