Browse Source

更改提示

qinhb 7 months ago
parent
commit
25808bada7
36 changed files with 107 additions and 107 deletions
  1. 1 1
      .env.development
  2. 4 4
      src/api/order/index.ts
  3. 7 7
      src/api/order/types.ts
  4. 1 1
      src/common/configs/buttonPermission.ts
  5. 4 4
      src/common/configs/dictDataUtil.ts
  6. 1 1
      src/components/CommonTable/configs/tableConfig.ts
  7. 1 1
      src/layout/components/NavBar/components/NavbarRight.vue
  8. 1 1
      src/views/plan/finishProduct/components/detail-stock.vue
  9. 2 2
      src/views/plan/finishProduct/components/in-stock.vue
  10. 1 1
      src/views/plan/finishProduct/index.vue
  11. 5 5
      src/views/plan/order/components/order-page.vue
  12. 5 5
      src/views/plan/order/index.vue
  13. 1 1
      src/views/plan/prepare/index.vue
  14. 1 1
      src/views/plan/schedule/index.vue
  15. 2 2
      src/views/plan/track/index.vue
  16. 2 2
      src/views/plan/workOrder/components/work-order-page.vue
  17. 2 2
      src/views/plan/workOrder/components/work-order-seq.vue
  18. 8 8
      src/views/plan/workOrder/index.vue
  19. 3 3
      src/views/pro/traceability/index.vue
  20. 2 2
      src/views/quality/faultHandle/index.vue
  21. 3 3
      src/views/quality/outsource/index.vue
  22. 1 1
      src/views/quality/tdm/index.vue
  23. 2 2
      src/views/quality/unqualified/columns.ts
  24. 8 8
      src/views/report/statistics/dailystorage/index.vue
  25. 6 6
      src/views/report/statistics/outputstatistics/index.vue
  26. 8 8
      src/views/report/statistics/processanomaly/index.vue
  27. 3 3
      src/views/report/statistics/stationbeat/index.vue
  28. 5 5
      src/views/report/statistics/workeveryday/index.vue
  29. 3 3
      src/views/report/workhourinfo/prodthours/index.vue
  30. 4 4
      src/views/report/workhourinfo/sumhours/index.vue
  31. 2 2
      src/views/storage/check/index.vue
  32. 1 1
      src/views/storage/stock/index.vue
  33. 1 1
      src/views/welcome/components/FunnelChart.vue
  34. 1 1
      src/views/welcome/components/PieChart.vue
  35. 1 1
      src/views/welcome/components/RadarChart.vue
  36. 4 4
      src/views/welcome/index.vue

+ 1 - 1
.env.development

@@ -10,7 +10,7 @@ VITE_APP_BASE_API = '/dev-api'
 # 上传文件接口地址
 VITE_APP_UPLOAD_URL = 'http://192.168.101.4:9000'
 # 开发接口地址
- VITE_APP_API_URL = 'http://127.0.0.1:7204'
+ VITE_APP_API_URL = 'http://192.168.101.4:7204'
 
 
 # 是否启用 Mock 服务

+ 4 - 4
src/api/order/index.ts

@@ -3,7 +3,7 @@ import { AxiosPromise } from "axios";
 import { OrderForm, OrderInfo, OrderInfoPageVO, OrderInfoQuery } from "./types";
 
 /**
- * 获取订单分页列表
+ * 获取计划分页列表
  *
  * @param queryParams
  */
@@ -64,7 +64,7 @@ export function scanImport(data: any): AxiosPromise<any> {
   });
 }
 /**
- * 添加订单
+ * 添加计划
  *
  * @param data
  */
@@ -79,7 +79,7 @@ export function addOrder(data: any) {
 }
 
 /**
- * 修改订单
+ * 修改计划
  *
  * @param id
  * @param data
@@ -93,7 +93,7 @@ export function updateOrder(data: OrderForm) {
 }
 
 /**
- * 删除订单
+ * 删除计划
  *
  * @param ids
  */

+ 7 - 7
src/api/order/types.ts

@@ -1,5 +1,5 @@
 /**
- * 订单信息
+ * 计划信息
  */
 export interface OrderInfo {
   id?: number;
@@ -12,14 +12,14 @@ export interface OrderInfo {
 }
 
 /**
- * 订单信息查询对象类型
+ * 计划信息查询对象类型
  */
 export interface OrderInfoQuery extends PageQuery {
   orderCode?: string;
 }
 
 /**
- * 订单信息分页对象
+ * 计划信息分页对象
  */
 export interface OrderInfoPageVO {
   /**
@@ -27,11 +27,11 @@ export interface OrderInfoPageVO {
    */
   id?: number;
   /**
-   * 订单编码
+   * 计划编码
    */
   orderCode?: string;
   /**
-   * 订单名称
+   * 计划名称
    */
   orderName?: string;
   /**
@@ -61,11 +61,11 @@ export interface OrderForm {
    */
   id?: number;
   /**
-   * 订单编码
+   * 计划编码
    */
   orderCode?: string;
   /**
-   * 订单名称
+   * 计划名称
    */
   orderName?: string;
   /**

+ 1 - 1
src/common/configs/buttonPermission.ts

@@ -40,7 +40,7 @@ const ButtonPermKeys = {
       dict_del: "sys:dict:del",
     },
   },
-  // 订单管理
+  // 计划管理
   PLAN: {
     CATALOG: "plan",
     MENUS: {

+ 4 - 4
src/common/configs/dictDataUtil.ts

@@ -11,13 +11,13 @@ const DictDataUtil = {
   img_url: import.meta.env.VITE_APP_UPLOAD_URL,
 
   TYPE_CODE: {
-    //订单类型
+    //计划类型
     plan_order_type: "plan_order_type",
-    //订单优先级
+    //计划优先级
     plan_order_priority: "plan_order_priority",
     //工单状态
     plan_work_order_state: "plan_work_order_state",
-    //订单状态
+    //计划状态
     plan_order_state: "plan_order_state",
     //设备类型
     device_type: "device_type",
@@ -74,7 +74,7 @@ const DictDataUtil = {
     expand_field_type: "expand_field_type",
     //映射表列表
     expand_table_list: "expand_field_table",
-    //订单计划表
+    //计划计划表
     plan_order_info: "plan_order_info",
     //映射字段列表
     expand_field_list: "expand_field_list",

+ 1 - 1
src/components/CommonTable/configs/tableConfig.ts

@@ -625,7 +625,7 @@ export const tableConfig = {
         search: true,
       },
       {
-        label: "订单号",
+        label: "计划号",
         prop: "orderCode",
         width: 120,
         overHidden: true,

+ 1 - 1
src/layout/components/NavBar/components/NavbarRight.vue

@@ -148,7 +148,7 @@ const dialog = reactive({
 });
 const clickItem =(row) =>{
   if(row.msgId === '4'){
-    window.open("/quality/outsource",'_blank')
+    window.open("/info/outsource",'_blank')
   }
   if(row.msgId === '3'){
     window.open("/quality/faultHandle",'_blank')

+ 1 - 1
src/views/plan/finishProduct/components/detail-stock.vue

@@ -104,7 +104,7 @@
         prop: "inventoryNum",
       },
       {
-        label: "流转卡号",
+        label: "工卡编号",
         prop: "seqNo",
         overHidden: true,
       },

+ 2 - 2
src/views/plan/finishProduct/components/in-stock.vue

@@ -100,7 +100,7 @@ const onHandle = () => {
   }
   if (seqList.value.length == 0) {
     ElMessage({
-      message: "未选择要入库的流转卡号",
+      message: "未选择要入库的工卡编号",
       type: "error",
     });
     return false;
@@ -156,7 +156,7 @@ option.value = Object.assign(option.value, {
   gridBtn: false,
   column: [
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
     },
   ],

+ 1 - 1
src/views/plan/finishProduct/index.vue

@@ -144,7 +144,7 @@ option.value = Object.assign(option.value, {
     { label: "产品编码", prop: "materialCode", width: 140,overHidden: true,search: true
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: true,
     },

+ 5 - 5
src/views/plan/order/components/order-page.vue

@@ -60,7 +60,7 @@ option.value = Object.assign(option.value, {
   menu: false,
   column: [
     {
-      label: "订单编号",
+      label: "计划编号",
       prop: "orderCode",
       search: true,
       width: 120,
@@ -68,7 +68,7 @@ option.value = Object.assign(option.value, {
       display: false,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: true,
       width: 150,
@@ -102,7 +102,7 @@ option.value = Object.assign(option.value, {
       prop: "materialModel",
     },
     {
-      label: "订单数量",
+      label: "计划数量",
       prop: "orderNum",
       type: "number",
       width: "100",
@@ -123,7 +123,7 @@ option.value = Object.assign(option.value, {
       precision: 1,
     },
     {
-      label: "订单状态",
+      label: "计划状态",
       prop: "orderState",
       display: false,
       width: "100",
@@ -138,7 +138,7 @@ option.value = Object.assign(option.value, {
       filterable: true, //添加filterable属性即可启用搜索功能
     },
     {
-      label: "订单类型",
+      label: "计划类型",
       prop: "orderType",
       type: "select", //类型为下拉选择框
       width: "100",

+ 5 - 5
src/views/plan/order/index.vue

@@ -600,7 +600,7 @@ option.value = {
       rules: [
         {
           required: true,
-          message: "订单类型不能为空",
+          message: "计划类型不能为空",
           trigger: "trigger",
         },
       ],
@@ -660,7 +660,7 @@ option.value = {
       rules: [
         {
           required: true,
-          message: "订单编号不能为空",
+          message: "计划编号不能为空",
           trigger: "trigger",
         },
       ],
@@ -715,7 +715,7 @@ option.value = {
     },
 
     {
-      label: "订单数量",
+      label: "计划数量",
       prop: "orderNum",
       type: "number",
       width: 100,
@@ -725,7 +725,7 @@ option.value = {
       rules: [
         {
           required: true,
-          message: "订单数量不能为空",
+          message: "计划数量不能为空",
           trigger: "trigger",
         },
       ],
@@ -754,7 +754,7 @@ option.value = {
       rules: [
         {
           required: true,
-          message: "订单类型不能为空",
+          message: "计划类型不能为空",
           trigger: "trigger",
         },
       ],

+ 1 - 1
src/views/plan/prepare/index.vue

@@ -107,7 +107,7 @@ const { checkBtnPerm, downloadTemplate, exportData } = Utils; //按钮权限等
 
 const crudRef = ref(null); //crudRef.value 获取avue-crud对象
 const dialog = reactive({
-  title: "订单选择",
+  title: "计划选择",
   visible: false,
 });
 const merginState = ref(false)

+ 1 - 1
src/views/plan/schedule/index.vue

@@ -162,7 +162,7 @@ option.value = Object.assign(option.value, {
   delBtn: false,
   column: [
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       editDisabled: true,
       search: true,

+ 2 - 2
src/views/plan/track/index.vue

@@ -64,7 +64,7 @@ option.value = Object.assign(option.value, {
   delBtn: false,
   column: [
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       editDisabled: true,
       search: true,
@@ -93,7 +93,7 @@ option.value = Object.assign(option.value, {
       ],
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: true,
       width: 125,

+ 2 - 2
src/views/plan/workOrder/components/work-order-page.vue

@@ -68,14 +68,14 @@ option.value = Object.assign(option.value, {
       overHidden: true,
     },
     {
-      label: "订单编号",
+      label: "计划编号",
       prop: "orderCode",
       search: true,
       width: 125,
       overHidden: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: true,
       disabled: true,

+ 2 - 2
src/views/plan/workOrder/components/work-order-seq.vue

@@ -176,7 +176,7 @@ option.value = Object.assign(option.value, {
   menu: false,
   column: [
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       width: 220,
       search: true,
@@ -184,7 +184,7 @@ option.value = Object.assign(option.value, {
       rules: [
         {
           required: true,
-          message: "流转卡号不能为空",
+          message: "工卡编号不能为空",
           trigger: "trigger",
         },
       ],

+ 8 - 8
src/views/plan/workOrder/index.vue

@@ -100,7 +100,7 @@
           @click="showSeqPage(row)"
           type="primary"
           :size="size"
-          >流转卡号</el-button
+          >工卡编号</el-button
         >
         <el-button
           icon="el-icon-delete"
@@ -356,7 +356,7 @@ const jumpPage = (workOrderCode, type) => {
   }
 };
 const dialog = reactive({
-  title: "订单选择",
+  title: "计划选择",
   visible: false,
 });
 const dialog1 = reactive({
@@ -372,7 +372,7 @@ const dialog3 = reactive({
   visible: false,
 });
 const dialog4 = reactive({
-  title: "流转卡号",
+  title: "工卡编号",
   visible: false,
 });
 const dialog5 = reactive({
@@ -588,7 +588,7 @@ option.value = Object.assign(option.value, {
       overHidden: true,
     },
     {
-      label: "订单编号",
+      label: "计划编号",
       prop: "orderCode",
       search: true,
       width: 125,
@@ -596,7 +596,7 @@ option.value = Object.assign(option.value, {
       rules: [
         {
           required: true,
-          message: "订单编号不能为空",
+          message: "计划编号不能为空",
           trigger: "trigger",
         },
       ],
@@ -614,7 +614,7 @@ option.value = Object.assign(option.value, {
       },
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: true,
       disabled: true,
@@ -622,7 +622,7 @@ option.value = Object.assign(option.value, {
       overHidden: true,
     },
     {
-      label: "订单类型",
+      label: "计划类型",
       prop: "orderType",
       type: "select", //类型为下拉选择框
       width: 100,
@@ -700,7 +700,7 @@ option.value = Object.assign(option.value, {
         if (column.boxType) {
           if (!form.value.materialCode) {
             ElMessage({
-              message: "请先选择订单",
+              message: "请先选择计划",
               type: "warning",
             });
             return;

+ 3 - 3
src/views/pro/traceability/index.vue

@@ -49,7 +49,7 @@
           <el-descriptions-item label="产品名称">{{
             productReviewInfo.materialName
           }}</el-descriptions-item>
-          <el-descriptions-item label="流转卡号">{{
+          <el-descriptions-item label="工卡编号">{{
             productReviewInfo.seqNo
           }}</el-descriptions-item>
           <el-descriptions-item label="物料编号">{{
@@ -293,7 +293,7 @@ const chooseTagType = (row, type) => {
   let daynamicType = "";
   if (type == "text") {
     daynamicType =
-      row === "order" ? "订单" : row === "workOrder" ? "工单" : "流转卡号";
+      row === "order" ? "计划" : row === "workOrder" ? "工单" : "工卡编号";
   } else {
     daynamicType =
       row === "order" ? "success" : row === "workOrder" ? "warning" : "primary";
@@ -399,7 +399,7 @@ option.value = Object.assign(option.value, {
       hide: true,
     },
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       search: true,
       searchLabelWidth: "100",

+ 2 - 2
src/views/quality/faultHandle/index.vue

@@ -224,7 +224,7 @@
         search: true,
       },
       {
-        label: "订单号",
+        label: "计划号",
         prop: "orderCode",
         overHidden: true,
         width:120,
@@ -246,7 +246,7 @@
       },
 
       {
-        label: "流转卡号", prop: "seqNo", overHidden: true,search:true,
+        label: "工卡编号", prop: "seqNo", overHidden: true,search:true,
       },
       {
         label: "状态", prop: "state", overHidden: true,

+ 3 - 3
src/views/quality/outsource/index.vue

@@ -52,13 +52,13 @@
       <el-form ref="queryFormRef" label-width="100" :inline="true">
         <el-row :gutter="24">
           <el-col :lg="10" :xs="24">
-            <el-form-item label="订单编码">
+            <el-form-item label="计划编码">
               <el-text>{{ form.orderCode }}</el-text>
             </el-form-item>
           </el-col>
 
           <el-col :lg="6" :xs="24">
-            <el-form-item label="订单名称">
+            <el-form-item label="计划名称">
               <el-text>{{ form.orderName }}</el-text>
             </el-form-item>
           </el-col>
@@ -100,7 +100,7 @@
                 highlight-current-row
               >
                 <el-table-column
-                  label="流转卡号"
+                  label="工卡编号"
                   align="left"
                   width="350"
                   prop="seqNo"

+ 1 - 1
src/views/quality/tdm/index.vue

@@ -78,7 +78,7 @@
                 highlight-current-row
               >
                 <el-table-column
-                  label="流转卡号"
+                  label="工卡编号"
                   align="left"
                   width="350"
                   prop="seqNo"

+ 2 - 2
src/views/quality/unqualified/columns.ts

@@ -3,7 +3,7 @@ const { dicts } = useDictionaryStore();
 export const columns = [
 
   {
-    label: "流转卡号", prop: "seqNo", overHidden: true,search:true,
+    label: "工卡编号", prop: "seqNo", overHidden: true,search:true,
   },
   {
     label: "工单号",
@@ -13,7 +13,7 @@ export const columns = [
     search: true,
   },
   {
-    label: "订单号",
+    label: "计划号",
     prop: "orderCode",
     overHidden: true,
     width:120,

+ 8 - 8
src/views/report/statistics/dailystorage/index.vue

@@ -30,7 +30,7 @@ import { getEchartData } from "@/api/report";
 import * as echarts from "echarts";
 // 数据字典相关
 const { dicts } = useDictionaryStore();
-const editDialog = ref({ visible: false, title: "订单详情" });
+const editDialog = ref({ visible: false, title: "计划详情" });
 // const { form, data, option, search, page, toDeleteIds, Methords, Utils } =
 //   useCrud({
 //     src: "/api/v1/process/census/completeOrder",
@@ -60,7 +60,7 @@ const cellStyle = ({ row, column, rowIndex, columnIndex }) => {
   }
 };
 const ckickCell = (row, column, cell, event) => {
-  if (column.label === "订单名称") {
+  if (column.label === "计划名称") {
     data2.value.search.completeTime = row.completeTime;
     data2.value.search.orderCode = row.orderCode;
     editDialog.value.visible = true;
@@ -93,7 +93,7 @@ data1.value.option = Object.assign(data1.value.option, {
       endPlaceholder: "结束日期",
     },
     {
-      label: "erp订单号",
+      label: "erp计划号",
       prop: "erpCode",
       overHidden: true,
       search: true,
@@ -109,14 +109,14 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       overHidden: true,
       search: true,
       editDisabled: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       width: 140,
       overHidden: true,
@@ -134,7 +134,7 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
       slot: true,
@@ -148,7 +148,7 @@ data1.value.option = Object.assign(data1.value.option, {
       },
     },
     {
-      label: "erp订单号",
+      label: "erp计划号",
       prop: "erpCode",
       search: false,
     },
@@ -212,7 +212,7 @@ data2.value.option = Object.assign(data2.value.option, {
   delBtn: false,
   column: [
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       search: false,
       width:150,

+ 6 - 6
src/views/report/statistics/outputstatistics/index.vue

@@ -38,7 +38,7 @@ import { getEchartData } from "@/api/report";
 import * as echarts from "echarts";
 // 数据字典相关
 const { dicts } = useDictionaryStore();
-const editDialog = ref({ visible: false, title: "订单详情" });
+const editDialog = ref({ visible: false, title: "计划详情" });
 const key = ref(false);
 // const { form, data, option, search, page, toDeleteIds, Methords, Utils } =
 //   useCrud({
@@ -81,7 +81,7 @@ data1.value.option = Object.assign(data1.value.option, {
       endPlaceholder: "结束日期",
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       overHidden: true,
       search: true,
@@ -89,7 +89,7 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       overHidden: true,
       search: true,
@@ -132,12 +132,12 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },
@@ -177,7 +177,7 @@ data1.value.option = Object.assign(data1.value.option, {
       search: false,
     },
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       search: false,
     },

+ 8 - 8
src/views/report/statistics/processanomaly/index.vue

@@ -86,7 +86,7 @@ import { getEchartData } from "@/api/report";
 import * as echarts from "echarts";
 // 数据字典相关
 const { dicts } = useDictionaryStore();
-const editDialog = ref({ visible: false, title: "订单详情" });
+const editDialog = ref({ visible: false, title: "计划详情" });
 const key = ref(false);
 // const { form, data, option, search, page, toDeleteIds, Methords, Utils } =
 //   useCrud({
@@ -141,7 +141,7 @@ data1.value.option = Object.assign(data1.value.option, {
       endPlaceholder: "结束日期",
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       overHidden: true,
       search: true,
@@ -149,7 +149,7 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       overHidden: true,
       search: true,
@@ -174,12 +174,12 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },
@@ -241,12 +241,12 @@ data2.value.option = Object.assign(data2.value.option, {
   delBtn: false,
   column: [
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },
@@ -286,7 +286,7 @@ data2.value.option = Object.assign(data2.value.option, {
       search: false,
     },
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       search: false,
     },

+ 3 - 3
src/views/report/statistics/stationbeat/index.vue

@@ -84,7 +84,7 @@ data1.value.option = Object.assign(data1.value.option, {
       endPlaceholder: "结束日期",
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       overHidden: true,
       search: true,
@@ -110,12 +110,12 @@ data1.value.option = Object.assign(data1.value.option, {
     },
     //展示
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },

+ 5 - 5
src/views/report/statistics/workeveryday/index.vue

@@ -62,7 +62,7 @@ import { getOperationList, getOperationInfo } from "@/api/report";
 import * as echarts from "echarts";
 // 数据字典相关
 const { dicts } = useDictionaryStore();
-const editDialog = ref({ visible: false, title: "订单详情" });
+const editDialog = ref({ visible: false, title: "计划详情" });
 const charts = shallowRef(null);
 const charts2 = shallowRef(null);
 const chartsSearch = ref({});
@@ -244,7 +244,7 @@ data1.value.option = Object.assign(data1.value.option, {
       endPlaceholder: "结束日期",
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       overHidden: true,
       search: true,
@@ -252,7 +252,7 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       overHidden: true,
       search: true,
@@ -277,12 +277,12 @@ data1.value.option = Object.assign(data1.value.option, {
       hide: true,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },

+ 3 - 3
src/views/report/workhourinfo/prodthours/index.vue

@@ -85,7 +85,7 @@ data1.value.option = Object.assign(data1.value.option, {
       endPlaceholder: "结束日期",
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       overHidden: true,
       search: true,
@@ -110,12 +110,12 @@ data1.value.option = Object.assign(data1.value.option, {
     },
     //展示
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },

+ 4 - 4
src/views/report/workhourinfo/sumhours/index.vue

@@ -98,7 +98,7 @@ import { getEchartData } from "@/api/report";
 import * as echarts from "echarts";
 // 数据字典相关
 const { dicts } = useDictionaryStore();
-const editDialog = ref({ visible: false, title: "订单详情" });
+const editDialog = ref({ visible: false, title: "计划详情" });
 const key = ref(false);
 // const { form, data, option, search, page, toDeleteIds, Methords, Utils } =
 //   useCrud({
@@ -202,12 +202,12 @@ data2.value.option = Object.assign(data2.value.option, {
   delBtn: false,
   column: [
     {
-      label: "订单名称",
+      label: "计划名称",
       prop: "orderName",
       search: false,
     },
     {
-      label: "订单编码",
+      label: "计划编码",
       prop: "orderCode",
       search: false,
     },
@@ -240,7 +240,7 @@ data2.value.option = Object.assign(data2.value.option, {
     },
 
     {
-      label: "流转卡号",
+      label: "工卡编号",
       prop: "seqNo",
       search: false,
     },

+ 2 - 2
src/views/storage/check/index.vue

@@ -273,7 +273,7 @@ import {ref} from "vue";
 const { username } = useUserStoreHook().user;
 // 弹窗对象
 const dialog0 = reactive({
-  title: "订单选择",
+  title: "计划选择",
   visible: false,
 });
 const dialog1 = reactive({
@@ -412,7 +412,7 @@ option1.value = {
       rules: [
         {
           required: true,
-          message: "订单编号不能为空",
+          message: "计划编号不能为空",
           trigger: "trigger",
         },
       ],

+ 1 - 1
src/views/storage/stock/index.vue

@@ -179,7 +179,7 @@ option.value = Object.assign(option.value, {
       search: true
     },
     /*{
-      label: "流转卡号",
+      label: "工卡编号",
       width: 130,
       overHidden: true,
       prop: "seqNo",

+ 1 - 1
src/views/welcome/components/FunnelChart.vue

@@ -30,7 +30,7 @@ const props = defineProps({
 const options = {
   title: {
     show: true,
-    text: "订单线索转化漏斗图",
+    text: "计划线索转化漏斗图",
     x: "center",
     padding: 15,
     textStyle: {

+ 1 - 1
src/views/welcome/components/PieChart.vue

@@ -60,7 +60,7 @@ const options = {
       data: [
         { value: 26, name: "工单" },
         { value: 27, name: "工位" },
-        { value: 24, name: "订单" },
+        { value: 24, name: "计划" },
         { value: 23, name: "报故单" },
       ],
     },

+ 1 - 1
src/views/welcome/components/RadarChart.vue

@@ -1,7 +1,7 @@
 <!-- 雷达图 -->
 <template>
   <el-card>
-    <template #header> 订单状态雷达图 </template>
+    <template #header> 计划状态雷达图 </template>
     <div :id="id" :class="className" :style="{ height, width }"></div>
   </el-card>
 </template>

+ 4 - 4
src/views/welcome/index.vue

@@ -133,12 +133,12 @@
         </el-card>
       </el-col>
 
-      <!--订单量-->
+      <!--计划量-->
       <el-col :xs="24" :sm="12" :lg="6">
         <el-card shadow="never">
           <template #header>
             <div class="flex items-center justify-between">
-              <span class="text-[var(--el-text-color-secondary)]">订单量</span>
+              <span class="text-[var(--el-text-color-secondary)]">计划量</span>
               <el-tag type="danger">季</el-tag>
             </div>
           </template>
@@ -153,7 +153,7 @@
           <div
             class="flex items-center justify-between mt-5 text-sm text-[var(--el-text-color-secondary)]"
           >
-            <span> 总订单量 </span>
+            <span> 总计划量 </span>
             <span> {{ Math.round(orderCountOutput * 15) }} </span>
           </div>
         </el-card>
@@ -245,7 +245,7 @@ const dauCountOutput = useTransition(dauCount, {
 });
 dauCount.value = 2000;
 
-// 订单
+// 计划
 const orderCount = ref(0);
 const orderCountOutput = useTransition(orderCount, {
   duration: duration,