|
@@ -16,6 +16,12 @@
|
|
|
>
|
|
|
<acount-search class="acount-search-class" :appId.sync="acountId" :multiple="false" request="1,3"></acount-search>
|
|
|
</a-form-item>
|
|
|
+ <a-form-item label="状态">
|
|
|
+ <a-select v-model="searchStatus" style="width: 100px">
|
|
|
+ <a-select-option :value="0">开启</a-select-option>
|
|
|
+ <a-select-option :value="1">关闭</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
<a-form-item class="form-handle-btn">
|
|
|
<a-button type="default" class="reset-class" @click="handleResetList">重置</a-button>
|
|
|
<a-button type="primary" html-type="submit">查询</a-button>
|
|
@@ -264,6 +270,7 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
return {
|
|
|
+ searchStatus: 0,
|
|
|
controlLoading: true,
|
|
|
adBudgetShowTitle: false,
|
|
|
budgetVisible: false,
|
|
@@ -485,12 +492,14 @@ export default {
|
|
|
},
|
|
|
handleResetList() {
|
|
|
this.acountId = '';
|
|
|
+ this.searchStatus = 0;
|
|
|
this.controlLoading = true;
|
|
|
this.handleInitTable();
|
|
|
},
|
|
|
handleInitTable() {
|
|
|
const paramsData = {
|
|
|
accountId: this.acountId,
|
|
|
+ status: this.searchStatus,
|
|
|
loginUserId: this.userInfo().id,
|
|
|
pageNo: this.tablePag.page,
|
|
|
pageSize: this.tablePag.size
|