1、完善客商模块

2、完善基础数据模块
3、完善规范
This commit is contained in:
2026-08-01 01:23:13 +08:00
parent 6a4c5d02f4
commit 81c98f6ad8
77 changed files with 4883 additions and 711 deletions

View File

@@ -95,7 +95,6 @@
<el-button
type="primary"
text
icon="el-icon-view"
v-if="hasPermission('driver_view')"
@click="openDriver(row, true)"
>
@@ -104,7 +103,6 @@
<el-button
type="primary"
text
icon="el-icon-edit"
v-if="hasPermission('driver_edit')"
@click="openDriver(row)"
>
@@ -113,7 +111,6 @@
<el-button
type="primary"
text
:icon="row.status === 1 ? 'el-icon-close' : 'el-icon-check'"
v-if="hasPermission('driver_status')"
@click="handleStatus(row)"
>
@@ -917,7 +914,7 @@ export default {
type: 'warning',
}).then(() => {
NProgress.start();
exportBlob('/blade-transport/driver/export-driver', this.buildExportParams())
exportBlob('/blade-transport/driver/export-driver', this.buildExportParams(), { feedback: true })
.then(res => {
downloadXls(res.data, `司机管理${this.$dayjs().format('YYYY-MM-DD HH:mm:ss')}.xlsx`);
})