|
@@ -23,11 +23,7 @@
|
|
>
|
|
>
|
|
批量推送
|
|
批量推送
|
|
</el-button>
|
|
</el-button>
|
|
- <el-button
|
|
|
|
- icon="el-icon-circle-plus-outline"
|
|
|
|
- type="primary"
|
|
|
|
- @click="toMergePush"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-button icon="el-icon-circle-plus-outline" @click="toMergePush">
|
|
合并推送印刷计划
|
|
合并推送印刷计划
|
|
</el-button>
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
@@ -39,11 +35,12 @@
|
|
:data="dataList"
|
|
:data="dataList"
|
|
@selection-change="handleSelectionChange"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
>
|
|
- <el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
<el-table-column
|
|
<el-table-column
|
|
- prop="printPlanName"
|
|
|
|
- label="印刷计划"
|
|
|
|
|
|
+ type="selection"
|
|
|
|
+ width="55"
|
|
|
|
+ align="center"
|
|
></el-table-column>
|
|
></el-table-column>
|
|
|
|
+ <el-table-column prop="name" label="印刷计划"></el-table-column>
|
|
<el-table-column prop="examStartTime" label="考试开始时间">
|
|
<el-table-column prop="examStartTime" label="考试开始时间">
|
|
<span slot-scope="scope">{{
|
|
<span slot-scope="scope">{{
|
|
scope.row.examStartTime | timestampFilter
|
|
scope.row.examStartTime | timestampFilter
|
|
@@ -71,8 +68,11 @@
|
|
}}</span>
|
|
}}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="createName" label="创建人"></el-table-column>
|
|
<el-table-column prop="createName" label="创建人"></el-table-column>
|
|
- <el-table-column prop="examName" label="考试名称"></el-table-column>
|
|
|
|
- <el-table-column prop="examId" label="考试ID"></el-table-column>
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="thirdRelateName"
|
|
|
|
+ label="考试名称"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column prop="thirdRelateId" label="考试ID"></el-table-column>
|
|
<el-table-column prop="syncStatus" label="同步状态"></el-table-column>
|
|
<el-table-column prop="syncStatus" label="同步状态"></el-table-column>
|
|
<el-table-column class-name="action-column" label="操作" width="120px">
|
|
<el-table-column class-name="action-column" label="操作" width="120px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -146,6 +146,9 @@ export default {
|
|
multipleSelection: []
|
|
multipleSelection: []
|
|
};
|
|
};
|
|
},
|
|
},
|
|
|
|
+ mounted() {
|
|
|
|
+ this.toPage(1);
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
async getList() {
|
|
async getList() {
|
|
const datas = {
|
|
const datas = {
|
|
@@ -166,7 +169,7 @@ export default {
|
|
this.toPage(1);
|
|
this.toPage(1);
|
|
},
|
|
},
|
|
handleSelectionChange(val) {
|
|
handleSelectionChange(val) {
|
|
- this.multipleSelection = val.map(item => item.cardId);
|
|
|
|
|
|
+ this.multipleSelection = val.map(item => item.id);
|
|
},
|
|
},
|
|
async toBatchPush() {
|
|
async toBatchPush() {
|
|
if (this.loading) return;
|
|
if (this.loading) return;
|