wangxj 1 month ago
parent
commit
4417c80edf
4 changed files with 865 additions and 4 deletions
  1. 1 0
      package.json
  2. 9 0
      scripts/build.js
  3. 9 0
      scripts/dev.js
  4. 846 4
      yarn.lock

+ 1 - 0
package.json

@@ -37,6 +37,7 @@
     "qs": "^6.10.3",
     "vue": "2.7.14",
     "vue-class-component": "^7.2.3",
+    "vue-infinite-scroll": "^2.0.2",
     "vue-property-decorator": "^9.1.2",
     "vue-router": "^3.2.0",
     "vuex": "^3.4.0",

+ 9 - 0
scripts/build.js

@@ -14,6 +14,7 @@ let Propagand = resolve(CWD, './workspace/AntDesignOfVue_Propagand')
 let QualityInspection = resolve(CWD, './workspace/AntDesignOfVue_QualityInspection')
 // let ScheduleShift = resolve(CWD, './workspace/AntDesignOfVue_ScheduleShift')
 let Supply = resolve(CWD, './workspace/AntDesignOfVue_Supply')
+let Workhandover = resolve(CWD, './workspace/AntDesignOfVue_Workhandover')
 let Writ = resolve(CWD, './workspace/AntDesignOfVue_Writ')
 
 const run = (bin, args, opts = {}) => execa(bin, args, { stdio: 'inherit', ...opts })
@@ -79,6 +80,11 @@ async function create() {
           key: '10',
           name: '教育宣讲',
           value: 'Propagand'
+        },
+        {
+          key: '11',
+          name: '交班报告',
+          value: 'Workhandover'
         }
         // {
         //   key: '7',
@@ -126,6 +132,9 @@ async function create() {
     case 'Propagand':
       run('yarn', ['build'], { cwd: Propagand })
       break
+    case 'Workhandover':
+      run('yarn', ['build'], { cwd: Workhandover })
+      break
   }
 }
 

+ 9 - 0
scripts/dev.js

@@ -15,6 +15,7 @@ let QualityInspection = resolve(CWD, './workspace/AntDesignOfVue_QualityInspecti
 // let ScheduleShift = resolve(CWD, './workspace/AntDesignOfVue_ScheduleShift')
 let Supply = resolve(CWD, './workspace/AntDesignOfVue_Supply')
 let Writ = resolve(CWD, './workspace/AntDesignOfVue_Writ')
+let Workhandover = resolve(CWD, './workspace/AntDesignOfVue_Workhandover')
 let TemperatureChartVueClient = resolve(CWD, './workspace/TemperatureChartVueClient')
 
 
@@ -87,6 +88,11 @@ async function create() {
           name: '教育宣讲',
           value: 'Propagand'
         },
+        {
+          key: '12',
+          name: '交接报告',
+          value: 'Workhandover'
+        },
         // {
         //   key: '7',
         //   name: '排班系统',
@@ -136,6 +142,9 @@ async function create() {
     case 'Propagand':
       run('yarn', ['serve'], { cwd: Propagand })
       break
+    case 'Workhandover':
+      run('yarn', ['serve'], { cwd: Workhandover })
+      break
   }
 }
 

File diff suppressed because it is too large
+ 846 - 4
yarn.lock


Some files were not shown because too many files changed in this diff