|
@@ -15,8 +15,8 @@
|
|
|
@keyup.enter.native="getData">
|
|
@keyup.enter.native="getData">
|
|
|
<el-button @click="getData" slot="append" icon="el-icon-search"></el-button>
|
|
<el-button @click="getData" slot="append" icon="el-icon-search"></el-button>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
- <el-select v-model="orderStatus" placeholder="筛选状态" clearable @change="getData" class="filter-item">
|
|
|
|
|
- <el-option v-for="item in orderStatusOptions" :key="item.value" :value="item.value"
|
|
|
|
|
|
|
+ <el-select v-model="status" placeholder="筛选状态" clearable @change="getData" class="filter-item">
|
|
|
|
|
+ <el-option v-for="item in statusOptions" :key="item.value" :value="item.value"
|
|
|
:label="item.label"></el-option>
|
|
:label="item.label"></el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
<el-input placeholder="搜索域名名称" v-model="picName" clearable class="filter-item" @keyup.enter.native="getData">
|
|
<el-input placeholder="搜索域名名称" v-model="picName" clearable class="filter-item" @keyup.enter.native="getData">
|
|
@@ -71,7 +71,7 @@
|
|
|
</el-button-group>
|
|
</el-button-group>
|
|
|
</div> -->
|
|
</div> -->
|
|
|
<el-pagination background @size-change="onSizeChange" @current-change="onCurrentChange" :current-page="page"
|
|
<el-pagination background @size-change="onSizeChange" @current-change="onCurrentChange" :current-page="page"
|
|
|
- :page-sizes="[10, 20, 30, 40, 50]" :page-size="pageSize" layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
|
|
+ :page-sizes="[10, 20, 30, 40]" :page-size="pageSize" layout="total, sizes, prev, pager, next, jumper"
|
|
|
:total="totalElements">
|
|
:total="totalElements">
|
|
|
</el-pagination>
|
|
</el-pagination>
|
|
|
</div>
|
|
</div>
|
|
@@ -127,7 +127,7 @@ export default {
|
|
|
value: 'DESTROY'
|
|
value: 'DESTROY'
|
|
|
}
|
|
}
|
|
|
],
|
|
],
|
|
|
- orderStatus: null,
|
|
|
|
|
|
|
+ status: null,
|
|
|
picName: '',
|
|
picName: '',
|
|
|
userId: ''
|
|
userId: ''
|
|
|
};
|
|
};
|
|
@@ -244,8 +244,8 @@ export default {
|
|
|
if (this.search) {
|
|
if (this.search) {
|
|
|
data.search = this.search;
|
|
data.search = this.search;
|
|
|
}
|
|
}
|
|
|
- if (this.orderStatus) {
|
|
|
|
|
- data.query.orderStatus = this.orderStatus;
|
|
|
|
|
|
|
+ if (this.status) {
|
|
|
|
|
+ data.query.status = this.status;
|
|
|
}
|
|
}
|
|
|
if (this.picName) {
|
|
if (this.picName) {
|
|
|
data.query.picName = this.picName;
|
|
data.query.picName = this.picName;
|