|
|
|
@ -27,7 +27,7 @@
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group style="margin-left: 10px;display:flex;">
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="search">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="handleAddClick"
|
|
|
|
|
:disabled="!configParms.typeBus"
|
|
|
|
|
>新增
|
|
|
|
@ -115,6 +115,7 @@
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="total"
|
|
|
|
|
:current-page="filterQuery.page"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
@ -183,7 +184,10 @@ export default {
|
|
|
|
|
this.modifyDialogVisible = false;
|
|
|
|
|
this.addDialogVisible = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
search() {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getOriginBusType(this.filterQuery)
|
|
|
|
|