From ff82880c79114392e5866cadda8961698bc4ebc6 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Tue, 6 Jun 2023 16:09:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=B0=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/modules/hunniankunliao/one.vue | 79 +++++- src/pages/modules/hunniankunliao/two.vue | 317 +++++++++++++++++++++++ src/router/index.js | 5 + 3 files changed, 390 insertions(+), 11 deletions(-) create mode 100644 src/pages/modules/hunniankunliao/two.vue diff --git a/src/pages/modules/hunniankunliao/one.vue b/src/pages/modules/hunniankunliao/one.vue index 352e1da..d6d61f0 100644 --- a/src/pages/modules/hunniankunliao/one.vue +++ b/src/pages/modules/hunniankunliao/one.vue @@ -26,10 +26,27 @@
故障
-
-
-
-
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ + +
+
@@ -43,8 +60,8 @@
  • 设备
  • BOM号
  • 生产物料
  • -
  • 计划量
  • -
  • 已生产量
  • +
  • 计划量(kg)
  • +
  • 已生产量(kg)
  • 碾次
  • 生产状态
  • 开始时间
  • @@ -82,7 +99,7 @@ export default { name: 'one', data () { return { - array1: [{workorder_code: 'hl00001', device_name: '混碾机1', bom: 'WL001', material_code: '1号混料 湖南厂家 ', plan_qty: '5000kg', real_qty: '200kg', total_mix_frequency: '230505001001', order_status: '生产完成', realproducestart_date: '10-11 19:11:00', realproduceend_date: '10-11 19:11:00'}] + array1: [{workorder_code: 'hl00001', device_name: '混碾机1', bom: 'WL001', material_code: '1号混料 湖南厂家 ', plan_qty: '5000', real_qty: '200', total_mix_frequency: '230505001001', order_status: '生产完成', realproducestart_date: '10-11 19:11:00', realproduceend_date: '10-11 19:11:00'}] } }, computed: { @@ -159,17 +176,57 @@ export default { position relative _wh(100%, 58%) .box_l1 - _wh(55%, 20%) + _wh(6%, 18%) background-color #ede + position absolute + top 25% + right 30% + z-index 2 + transform rotate(90deg) + .picbox + width 100% + margin-bottom 15% + img + _wh(100%, auto) .box_l2 - _wh(55%, 10%) + _wh(3%, 10%) background-color #ccc + position absolute + top 52% + right 31.5% + z-index 2 + transform rotate(90deg) + .picbox + width 100% + margin-bottom 80% + img + _wh(100%, auto) .box_r1 - _wh(20%, 20%) + _wh(6%, 18%) background-color #ff0 + position absolute + top 15% + right 2% + z-index 2 + transform rotate(90deg) + .picbox + width 100% + margin-bottom 15% + img + _wh(100%, auto) .box_r2 - _wh(20%, 10%) + _wh(3%, 10%) background-color #fc9 + position absolute + top 65% + right 3.5% + z-index 2 + transform rotate(90deg) + .picbox + width 100% + margin-bottom 80% + img + _wh(100%, auto) .box2 _wh(100%, 40%) .item_wrap diff --git a/src/pages/modules/hunniankunliao/two.vue b/src/pages/modules/hunniankunliao/two.vue new file mode 100644 index 0000000..99605ce --- /dev/null +++ b/src/pages/modules/hunniankunliao/two.vue @@ -0,0 +1,317 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 6c51213..94d8bf9 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -18,6 +18,7 @@ const ProcessProductionOne = r => require.ensure([], () => r(require('@page/modu const ProcessProductionTwo = r => require.ensure([], () => r(require('@page/modules/processproduction/two')), 'processproduction') const ProcessProductionThree = r => require.ensure([], () => r(require('@page/modules/processproduction/three')), 'processproduction') const HunnianKunliaoOne = r => require.ensure([], () => r(require('@page/modules/hunniankunliao/one')), 'hunniankunliao') +const HunnianKunliaoTwo = r => require.ensure([], () => r(require('@page/modules/hunniankunliao/two')), 'hunniankunliao') const TakeShapeOne = r => require.ensure([], () => r(require('@page/modules/takeshape/one')), 'takeshape') const TakeShapeTwo = r => require.ensure([], () => r(require('@page/modules/takeshape/two')), 'takeshape') @@ -64,6 +65,10 @@ export default new Router({ path: '/hnlkone', component: HunnianKunliaoOne }, + { + path: '/hnlktwo', + component: HunnianKunliaoTwo + }, { path: '/takeshapeone', component: TakeShapeOne