This commit is contained in:
liulujia1
2020-04-16 15:16:57 +08:00
parent fca294e1f3
commit 0f223876e0
3 changed files with 12 additions and 6 deletions

View File

@@ -11,7 +11,7 @@
:label="item.label"
:value="item.value"/>
</el-select>
<el-button icon="el-icon-search" type="primary" size="small" plain @click="pageCurrent = 1;pageSize = 50;getTableData()">查询</el-button>
<el-button icon="el-icon-search" type="primary" size="small" plain @click="getTableData()">查询</el-button>
<el-button type="success" class="el-icon-download" size="small" style="margin: 10px 0 0 10px" plain @click="exportExcel">导出</el-button>
</div>
</el-card>
@@ -121,12 +121,18 @@ export default {
}, {
value: 1,
label: '已到'
}, {
value: 2,
label: '未提交'
}, {
value: 3,
label: '未外协'
}],
tableData: [],
procedure: [],
procedureTime: [],
pageCurrent: 1,
pageSize: 500,
pageSize: 50,
tableData1: []
}
},