From fcd6de629c4f6b8d9e610da854f15ef40115b058 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期二, 07 五月 2024 17:03:49 +0800
Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override

---
 north-glass-erp/northglass-erp/src/views/pp/report/Report.vue |  107 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 107 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/pp/report/Report.vue b/north-glass-erp/northglass-erp/src/views/pp/report/Report.vue
new file mode 100644
index 0000000..16e9974
--- /dev/null
+++ b/north-glass-erp/northglass-erp/src/views/pp/report/Report.vue
@@ -0,0 +1,107 @@
+<script setup>
+import {ref} from "vue";
+import {ArrowLeftBold, ArrowRight} from "@element-plus/icons-vue";
+import request from "@/utils/request";
+import deepClone from "@/utils/deepClone";
+import {ElMessage} from "element-plus";
+import {useRouter} from "vue-router";
+import  GlassType from '@/components/basic/product/GlassType.vue'
+
+
+
+const router = useRouter()
+let flag = $ref(true)
+let flag1 = $ref(true)
+function intoRelease(){
+  if(flag){
+    router.push('/main/Replenish/AddReplenish')
+  }else {
+    router.push('/main/Replenish/SelectReplenish')
+  }
+  flag=!flag
+}
+function intoAddWorkOrder(){
+  if(flag1){
+    router.push('/main/Replenish/PrintReplenishFlowCard')
+  }else {
+    router.push('/main/Replenish/SelectReplenish')
+  }
+  flag1=!flag1
+}
+</script>
+
+<template>
+  <div id="main">
+    <div id="div-title">
+      <el-menu
+          class="el-menu-demo"
+          mode="horizontal"
+          :default-active="$route.path"
+          router
+          background-color="#5CADFE"
+          text-color="#000000"
+          active-text-color="#ffffff"
+
+      >
+
+        <el-sub-menu index="1" >
+          <template #title >鐢熶骇鎶ヨ〃</template>
+          <el-menu-item index="/main/report/WorkInProgress">鍦ㄥ埗鍝佹姤琛�</el-menu-item>
+          <el-menu-item index="/main/report/ProcessToBeCompleted">宸ュ簭寰呭畬鎴�</el-menu-item>
+          <el-menu-item index="/main/report/ProductionSchedule">鐢熶骇鍙戣揣杩涘害</el-menu-item>
+          <el-menu-item index="/main/report/ProcessCardProgress">娴佺▼鍗¤繘搴�</el-menu-item>
+          <el-menu-item index="/main/report/OrderPlanDecomposition">璁㈠崟璁″垝鍒嗚В</el-menu-item>
+        </el-sub-menu>
+<!--        <el-sub-menu  index="2" popper-class="test">-->
+<!--          <template #title>浜ч噺鎶ヨ〃</template>-->
+<!--          <el-menu-item index="/main/report/TeamOutput">鐝粍浜ч噺</el-menu-item>-->
+<!--          <el-menu-item index="/main/report/EquipmentOutput">璁惧浜ч噺</el-menu-item>-->
+<!--        </el-sub-menu>-->
+        <el-sub-menu  index="3" popper-class="test">
+          <template #title>娆$牬鎶ヨ〃</template>
+          <el-menu-item  index="/main/report/DamageReport">娆$牬鎶ヨ〃</el-menu-item>
+          <el-menu-item index="/main/report/CrossProcessBreaking">璺ㄥ伐搴忔鐮�</el-menu-item>
+        </el-sub-menu>
+
+        <el-menu-item  index="/main/report/SplittingDetailsOutside">鍒嗘灦鏄庣粏</el-menu-item>
+        <el-menu-item  index="/main/report/TaskCompletionStatus">浠诲姟瀹屾垚鎯呭喌</el-menu-item>
+        <el-menu-item  index="/main/report/RawMaterialRequisition">鍘熺墖棰嗘枡</el-menu-item>
+        <el-menu-item  index="/main/report/QualityReport">鍝佽川鎶ヨ〃</el-menu-item>
+        <el-menu-item  index="/main/report/Yield">鎴愬搧鐜囨姤琛�</el-menu-item>
+<!--        <el-menu-item  index="/main/report/OrderBOMOutside">BOM鎶ヨ〃</el-menu-item>-->
+      </el-menu>
+    </div>
+
+    <div id="main-body">
+      <router-view  />
+    </div>
+  </div>
+</template>
+
+<style scoped>
+#main{
+  width: 100%;
+  height: 100%;
+}
+#main-body{
+  width: 99%;
+  height: 92%;
+  margin-top: 1%;
+}
+/*main-body鏍峰紡*/
+.el-menu-demo{
+  height: 40px;
+}
+
+#div-title{
+  height: 5%;
+  width: 100%;
+  //color: #ffd04b;
+}
+
+
+
+
+
+
+</style>
\ No newline at end of file

--
Gitblit v1.8.0