guarantee-lsq 2 anos atrás
pai
commit
b68ed8a373

+ 1 - 0
src/router/generator-platform-routers.js

@@ -161,6 +161,7 @@ const constantRouterComponents = {
   'RepairForm': () => import('@/views/repair/application-form/RepairForm'),
   'MRepairForm': () => import('@/views/repair/application-form/MyRepairForm'),
   'MyRepairForm': () => import('@/views/repair/form/MyRepairForm'),
+  'WaitRepairForm': () => import('@/views/repair/application-form/WaitRepairForm'),
   // 验收单
   'RepairCheck': () => import('@/views/repair/check/RepairCheck'),
   // 故障类别

+ 17 - 0
src/views/repair/application-form/WaitRepairForm.vue

@@ -0,0 +1,17 @@
+<template>
+  <RepairForm :search-type="1"/>
+</template>
+
+<script>
+import RepairForm from './RepairForm'
+export default {
+  name: 'WaitRepairForm',
+  components: {
+    RepairForm
+  }
+}
+</script>
+
+<style scoped>
+
+</style>

+ 1 - 1
src/views/sb/info/modules/DetailC.vue

@@ -403,7 +403,7 @@ export default {
     this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_LEVEL)
     this.firmProducerLevelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.FIRM_PRODUCER_LEVEL)
     this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_INFO_STATUS)
-    this.unitMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_UNIT)
+    this.unitMap = this.DictCache.getRepairCheckFormLabelByValueMapByType(this.DictCache.TYPE.SBINFO_UNIT)
     this.colorMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_COLOR)
     this.rlTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.RANLIAO_TYPE)
     this.sourceTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBTYPE_SOURCETYPE)