feat: There is no way the, BUG #52095

This commit is contained in:
super_liu
2022-03-26 20:56:07 +08:00
parent 9b0ed72466
commit 7c0d1e5cc7
@@ -896,19 +896,21 @@
clearable
:maxlength="100"></el-input>
</el-form-item>
<el-form-item>
<el-form-item class="search-item btn-box">
<el-button
icon="el-icon-search"
type="primary"
class="common-button-primary"
@click="handleSearchStandard"
round>
size="small"
@click="handleSearchStandard">
查询
</el-button>
</el-form-item>
<el-form-item class="search-item btn-box">
<el-button
class="common-button-default"
icon="el-icon-refresh-left"
@click="handleResetSearch"
round></el-button>
size="small"
@click="handleResetSearch">清空
</el-button>
</el-form-item>
</el-form>
</div>
@@ -1019,7 +1021,7 @@
</div>
<pagination
:page="standardSearchForm.page"
:total="standardSearchForm.total"
:total="tableCount"
@pageChange="handleStandardPageChange"
@pageSizeChange="handleStandardPageSizeChange"></pagination>
<loading :loading="loadSarStandard">数据获取中</loading>
@@ -1242,7 +1244,6 @@
standardSearchForm: {
page: 1,
pageSize: this.$store.getters.userInfo.configContent,
total: 0,
unit: '',
esName: '',
planStatus: '0,3',
@@ -1254,6 +1255,7 @@
// 任务分解单数据
taskTableData: []
},
tableCount : 0,
tableHeight: {
standardTableHeight: null
},
@@ -2117,7 +2119,7 @@
this.loadSarStandard = false
if (res.ok) {
this.tableData.standardData = res.data.list
this.standardSearchForm.total = res.data.count
this.tableCount = res.data.count
}
}, e => {
this.loadSarStandard = false