This commit is contained in:
hrx 2026-05-28 17:40:45 +08:00
parent 9c24568046
commit f77ba5cea4

View File

@ -49,6 +49,14 @@
@keyup.enter.native="handleSearch"
@clear="handleSearch"
></el-input>
<el-input
v-model="query.customerid"
size="small"
clearable
placeholder="搜索用户ID"
@keyup.enter.native="handleSearch"
@clear="handleSearch"
></el-input>
<el-date-picker
v-model="dateRange"
type="daterange"
@ -75,9 +83,8 @@
</div>
<el-table v-loading="loading" :data="reportList" class="report-table" style="width: 100%">
<el-table-column type="index" label="序号" width="70"></el-table-column>
<el-table-column prop="customer_name" label="客户名称" min-width="120" show-overflow-tooltip></el-table-column>
<el-table-column prop="customerid" label="客户ID" min-width="170" show-overflow-tooltip></el-table-column>
<el-table-column prop="customerid" label="客户ID" min-width="240" show-overflow-tooltip></el-table-column>
<el-table-column prop="model" label="模型" min-width="140" show-overflow-tooltip>
<template slot-scope="scope">
@ -142,6 +149,7 @@ export default {
end_time: '',
username: '',
model: '',
customerid: '',
current_page: 1,
page_size: 20
}
@ -218,6 +226,7 @@ export default {
end_time: '',
username: '',
model: '',
customerid: '',
current_page: 1,
page_size: 20
}