wangzhibo
2026-07-18 bd1110c681f6be851e202e357ff3a33517d76040
添加所属单位
6个文件已修改
43 ■■■■■ 已修改文件
build/cool/eps.d.ts 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/push/views/vehiclegps.vue 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/report/locales/en.json 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/report/locales/zh-cn.json 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/report/locales/zh-tw.json 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/modules/report/views/dailysite.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
build/cool/eps.d.ts
@@ -1560,6 +1560,11 @@
        vehicleNo?: string;
        /**
         * 归属单位
         */
        departmentId?: number;
        /**
         * GPS定位时间
         */
        gpsTime?: Date;
@@ -1603,6 +1608,11 @@
         * 更新时间
         */
        updateTime?: string;
        /**
         * 部门名称
         */
        departmentName?: string;
        /**
         * 任意键值
@@ -2008,6 +2018,16 @@
        siteName?: string;
        /**
         * 部门ID
         */
        departmentId?: number;
        /**
         * 部门名称
         */
        departmentName?: string;
        /**
         * 总重量
         */
        weightTotal?: number;
src/modules/push/views/vehiclegps.vue
@@ -84,6 +84,21 @@
            span: 12
        },
        {
            label: t("选择部门"),
            prop: "departmentId",
            component: {
                name: 'cl-dept-select',
                props: {
                    multiple: false,      // 单选
                    placeholder: "请选择部门",
                    checkStrictly: true,  // 父子节点不联动
                    immediate: true       // 立即加载部门树
                }
            },
            span: 12,
            required: true,
        },
        {
            label: t('GPS定位时间'),
            prop: "gpsTime",
            component: {
@@ -151,6 +166,7 @@
            component: { name: "cl-date-text", props: { format: "YYYY-MM-DD" } }
        },
        { label: t('车牌号'), prop: "vehicleNo", minWidth: 140 },
        { label: t('所属部门'), prop: "departmentName", minWidth: 140 },
        {
            label: t('GPS定位时间'),
            prop: "gpsTime",
src/modules/report/locales/en.json
@@ -14,6 +14,8 @@
"结束时间":"结束时间",
"日期":"日期",
"站点ID":"站点名称",
"站点名称":"站点名称",
"所属部门":"所属部门",
"总重量":"总重量",
"sw60重量":"sw60重量",
"sw61重量":"sw61重量",
src/modules/report/locales/zh-cn.json
@@ -14,6 +14,8 @@
"结束时间":"结束时间",
"日期":"日期",
"站点ID":"站点名称",
"站点名称":"站点名称",
"所属部门":"所属部门",
"总重量":"总重量",
"sw60重量":"sw60重量",
"sw61重量":"sw61重量",
src/modules/report/locales/zh-tw.json
@@ -14,6 +14,8 @@
"结束时间":"结束时间",
"日期":"日期",
"站点ID":"站点名称",
"站点名称":"站点名称",
"所属部门":"所属部门",
"总重量":"总重量",
"sw60重量":"sw60重量",
"sw61重量":"sw61重量",
src/modules/report/views/dailysite.vue
@@ -462,6 +462,7 @@
            component: { name: "cl-date-text", props: { format: "YYYY-MM-DD" } }
        },
        { label: t('站点名称'), prop: "siteName", minWidth: 140 },
        { label: t('所属单位'), prop: "departmentName", minWidth: 140 },
        { label: t('总重量'), prop: "weightTotal", minWidth: 140, sortable: "custom" },
        { label: t('sw60重量'), prop: "weightSw60", minWidth: 140, sortable: "custom" },
        { label: t('sw61重量'), prop: "weightSw61", minWidth: 140, sortable: "custom" },