This commit is contained in:
van
2026-04-03 00:58:24 +08:00
parent 0cb49410a3
commit b79acb6471

View File

@@ -19,6 +19,9 @@
<el-form-item label="运单号" prop="waybillNo"> <el-form-item label="运单号" prop="waybillNo">
<el-input v-model="queryParams.waybillNo" placeholder="模糊" clearable style="width: 120px" @keyup.enter.native="handleQuery" /> <el-input v-model="queryParams.waybillNo" placeholder="模糊" clearable style="width: 120px" @keyup.enter.native="handleQuery" />
</el-form-item> </el-form-item>
<el-form-item label="备注" prop="userRemark">
<el-input v-model="queryParams.userRemark" placeholder="模糊" clearable style="width: 160px" @keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item label="入队时间"> <el-form-item label="入队时间">
<el-date-picker <el-date-picker
v-model="dateRange" v-model="dateRange"
@@ -84,6 +87,7 @@
</el-table-column> </el-table-column>
<el-table-column label="扫描次数" prop="scanAttempts" width="88" align="center" /> <el-table-column label="扫描次数" prop="scanAttempts" width="88" align="center" />
<el-table-column label="运单号" prop="waybillNo" width="140" show-overflow-tooltip /> <el-table-column label="运单号" prop="waybillNo" width="140" show-overflow-tooltip />
<el-table-column label="用户备注" prop="userRemark" min-width="160" show-overflow-tooltip />
<el-table-column label="最近说明" prop="lastNote" min-width="140" show-overflow-tooltip /> <el-table-column label="最近说明" prop="lastNote" min-width="140" show-overflow-tooltip />
<el-table-column label="短链" prop="trackingUrl" min-width="160" show-overflow-tooltip /> <el-table-column label="短链" prop="trackingUrl" min-width="160" show-overflow-tooltip />
<el-table-column label="创建时间" prop="createTime" width="160"> <el-table-column label="创建时间" prop="createTime" width="160">
@@ -198,7 +202,8 @@ export default {
fromUserName: null, fromUserName: null,
status: null, status: null,
trackingUrl: null, trackingUrl: null,
waybillNo: null waybillNo: null,
userRemark: null
} }
} }
}, },