diff --git a/.env.development b/.env.development index ad410a5..26d8c8a 100644 --- a/.env.development +++ b/.env.development @@ -8,9 +8,9 @@ VITE_APP_ENV = 'development' # VITE_APP_BASE_API = 'http://192.168.110.209:8899' # 李陈杰 209 -# VITE_APP_BASE_API = 'http://192.168.110.209:8899' +VITE_APP_BASE_API = 'http://192.168.110.149:8899' # 曾涛 - VITE_APP_BASE_API = 'http://192.168.110.210:8899' +# VITE_APP_BASE_API = 'http://192.168.110.149:8899' # 罗成 # VITE_APP_BASE_API = 'http://192.168.110.188:8899' # 朱银 @@ -18,8 +18,10 @@ VITE_APP_ENV = 'development' #曾涛 # VITE_APP_BASE_API = 'http://192.168.110.171:8899' -# 无人机接口地址 +# ws +VITE_APP_BASE_WS_API = 'ws://192.168.110.149:8899/resource/websocket' +# 无人机接口地址 VITE_APP_BASE_DRONE_API = 'http://58.17.134.85:9512' # 应用访问路径 例如使用前缀 /admin/ diff --git a/absolute/path/to/index.vue b/absolute/path/to/index.vue index 8b13789..139597f 100644 --- a/absolute/path/to/index.vue +++ b/absolute/path/to/index.vue @@ -1 +1,2 @@ + diff --git a/package.json b/package.json index 62a70bc..3f899c3 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "date-fns": "^4.1.0", "diagram-js": "12.3.0", "didi": "9.0.2", - "echarts": "5.5.0", + "echarts": "^5.5.0", "echarts-gl": "^2.0.9", "element-plus": "2.8.8", "esbuild": "^0.25.0", diff --git a/src/api/equipment/index.ts b/src/api/equipment/index.ts index 7a5992d..61c8d22 100644 --- a/src/api/equipment/index.ts +++ b/src/api/equipment/index.ts @@ -106,6 +106,6 @@ export const getFootNote = (data) => { return request({ url: 'gps/equipmentSon/getList', method: 'get', - data: data + params: data }); }; diff --git a/src/api/equipment/types.ts b/src/api/equipment/types.ts index 71ec89b..92cf7e5 100644 --- a/src/api/equipment/types.ts +++ b/src/api/equipment/types.ts @@ -122,6 +122,11 @@ export interface EquipmentQuery extends PageQuery { */ type?: string | number; + /** + * 展示用户/设备数据:1=用户数据,0=设备数据 + */ + gpsType?: string | number; + /** * 用户id */ diff --git a/src/api/materials/materialReceive/types.ts b/src/api/materials/materialReceive/types.ts index bcd7850..c277afc 100644 --- a/src/api/materials/materialReceive/types.ts +++ b/src/api/materials/materialReceive/types.ts @@ -53,7 +53,6 @@ export interface MaterialReceiveVO { * 备注 */ remark: string; - } export interface MaterialReceiveForm extends BaseEntity { @@ -156,11 +155,13 @@ export interface MaterialReceiveForm extends BaseEntity { * 备注 */ remark?: string; - + /** + * 附件 + */ + attachmentId?: string | number; } export interface MaterialReceiveQuery extends PageQuery { - /** * 项目id */ @@ -201,11 +202,8 @@ export interface MaterialReceiveQuery extends PageQuery { */ supplierUnit?: string; - /** - * 日期范围参数 - */ - params?: any; + /** + * 日期范围参数 + */ + params?: any; } - - - diff --git a/src/api/workflow/task/types.ts b/src/api/workflow/task/types.ts index 8698eff..2ea0534 100644 --- a/src/api/workflow/task/types.ts +++ b/src/api/workflow/task/types.ts @@ -31,6 +31,7 @@ export interface FlowTaskVO { version?: string; applyNode?: boolean; buttonList?: buttonList[]; + projectName?: string; } export interface buttonList { diff --git a/src/api/workflow/workflowCommon/index.ts b/src/api/workflow/workflowCommon/index.ts index 254e520..d74d7b8 100644 --- a/src/api/workflow/workflowCommon/index.ts +++ b/src/api/workflow/workflowCommon/index.ts @@ -12,7 +12,8 @@ export default { businessId: routerJumpVo.businessId, type: routerJumpVo.type, planMonth: routerJumpVo.planMonth, - taskId: routerJumpVo.taskId + taskId: routerJumpVo.taskId, + projectName: routerJumpVo.projectName } }); } diff --git a/src/api/workflow/workflowCommon/types.ts b/src/api/workflow/workflowCommon/types.ts index 3e7a71d..5b54a55 100644 --- a/src/api/workflow/workflowCommon/types.ts +++ b/src/api/workflow/workflowCommon/types.ts @@ -4,6 +4,7 @@ export interface RouterJumpVo { type: string; formCustom: string; formPath: string; + projectName?: string; } export interface StartProcessBo { diff --git a/src/components/Process/approvalButton.vue b/src/components/Process/approvalButton.vue index 545e96a..bccde71 100644 --- a/src/components/Process/approvalButton.vue +++ b/src/components/Process/approvalButton.vue @@ -1,15 +1,18 @@ + + diff --git a/src/views/materials/batchPlan/indexEdit.vue b/src/views/materials/batchPlan/indexEdit.vue index 8e3a50d..a745ba4 100644 --- a/src/views/materials/batchPlan/indexEdit.vue +++ b/src/views/materials/batchPlan/indexEdit.vue @@ -3,13 +3,19 @@
- + - +

物资设备批次需求计划

@@ -20,8 +26,7 @@ - + @@ -50,8 +55,14 @@ - +

请选择要启动的流程:

@@ -60,10 +71,12 @@
diff --git a/src/views/materials/cailiaoshebei/indexEdit.vue b/src/views/materials/cailiaoshebei/indexEdit.vue index 91dd128..b024a23 100644 --- a/src/views/materials/cailiaoshebei/indexEdit.vue +++ b/src/views/materials/cailiaoshebei/indexEdit.vue @@ -11,6 +11,7 @@ :id="form.id" :status="form.approvalDesign" :pageType="routeParams.type" + :projectName="routeParams.projectName" /> diff --git a/src/views/materials/materialsEquipment/materialReceive/index.vue b/src/views/materials/materialsEquipment/materialReceive/index.vue index 90f6d3d..ed4f7f5 100644 --- a/src/views/materials/materialsEquipment/materialReceive/index.vue +++ b/src/views/materials/materialsEquipment/materialReceive/index.vue @@ -70,6 +70,13 @@ + + +