diff --git a/src/views/mtm/route_form.vue b/src/views/mtm/route_form.vue
index 73492851..1ad22cc9 100644
--- a/src/views/mtm/route_form.vue
+++ b/src/views/mtm/route_form.vue
@@ -90,7 +90,7 @@
font-size: 13px;
"
v-if="item.is_hidden"
- >{{ item.process_name }}-隐隐
@@ -111,19 +111,7 @@
:label="item.full_name"
:value="item.id"
>
- {{
- item.full_name
- }}
- {{ item.process_name }}-隐
+
@@ -235,7 +223,7 @@ export default {
getMaterialOut() {
let that = this;
this.$API.mtm.material.list
- .req({ page: 0, type__in: "10,20" })
+ .req({ page: 0, type__in: "10,20", is_hidden: false })
.then((res) => {
this.materialsOut = res;
});
diff --git a/src/views/mtm/routepack_form.vue b/src/views/mtm/routepack_form.vue
index b19a5f06..bee00e4e 100644
--- a/src/views/mtm/routepack_form.vue
+++ b/src/views/mtm/routepack_form.vue
@@ -223,7 +223,7 @@ export default {
getMaterials() {
let that = this;
this.$API.mtm.material.list
- .req({ page: 0, type__in: "10,20" })
+ .req({ page: 0, type__in: "10,20", is_hidden: false })
.then((res) => {
this.materials = res;
});