|
@@ -17,8 +17,6 @@
|
|
<el-option value="" key="3" label="全部"></el-option>
|
|
<el-option value="" key="3" label="全部"></el-option>
|
|
<el-option :value="1" key="1" label="开"></el-option>
|
|
<el-option :value="1" key="1" label="开"></el-option>
|
|
<el-option :value="0" key="2" label="关"></el-option>
|
|
<el-option :value="0" key="2" label="关"></el-option>
|
|
-
|
|
|
|
-
|
|
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
@@ -67,9 +65,12 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="errorList" @selection-change="handleSelectionChange">
|
|
<el-table v-loading="loading" :data="errorList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
+ <el-table-column label="id" align="center" prop="id">
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="驾校名" align="center" prop="jxmc">
|
|
<el-table-column label="驾校名" align="center" prop="jxmc">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
-
|
|
|
|
|
|
+ <el-table-column label="驾校编号" align="center" prop="jxbh">
|
|
|
|
+ </el-table-column>
|
|
|
|
|
|
<el-table-column label="是否开通" align="center" prop="schoolCommission">
|
|
<el-table-column label="是否开通" align="center" prop="schoolCommission">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -80,6 +81,16 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="开通时间" align="center" prop="openTime">
|
|
<el-table-column label="开通时间" align="center" prop="openTime">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+
|
|
|
|
+ <el-table-column label="同步状态" align="center" prop="sync">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.sync == 1">待同步</span>
|
|
|
|
+ <span v-else>同步成功</span>
|
|
|
|
+
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="同步时间" align="center" prop="syncTime">
|
|
|
|
+ </el-table-column>
|
|
<!-- schoolCommission -->
|
|
<!-- schoolCommission -->
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -178,7 +189,7 @@ export default {
|
|
getList() {
|
|
getList() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
getList(this.queryParams).then(response => {
|
|
getList(this.queryParams).then(response => {
|
|
- this.errorList = response.data;
|
|
|
|
|
|
+ this.errorList = response.rows;
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|
|
@@ -193,7 +204,7 @@ export default {
|
|
this.queryParams = {
|
|
this.queryParams = {
|
|
isOpen:"",
|
|
isOpen:"",
|
|
pageNum:1,
|
|
pageNum:1,
|
|
- pageSize:1000,
|
|
|
|
|
|
+ pageSize:10,
|
|
jxmc:""
|
|
jxmc:""
|
|
// id: null,
|
|
// id: null,
|
|
// outRefundNo: null,
|
|
// outRefundNo: null,
|