fix:光芯工艺路线产品展示和主要输入输出展示的变动

This commit is contained in:
shijing 2024-07-25 17:28:40 +08:00
parent 8d45bc1ced
commit 083248cba2
2 changed files with 4 additions and 16 deletions

View File

@ -90,7 +90,7 @@
font-size: 13px; font-size: 13px;
" "
v-if="item.is_hidden" v-if="item.is_hidden"
>{{ item.process_name }}-</span ></span
> >
</el-option> </el-option>
</el-select> </el-select>
@ -111,19 +111,7 @@
:label="item.full_name" :label="item.full_name"
:value="item.id" :value="item.id"
> >
<span style="float: left">{{ </el-option>
item.full_name
}}</span>
<span
style="
float: right;
color: '#E6A23C';
font-size: 13px;
"
v-if="item.is_hidden"
>{{ item.process_name }}-</span
></el-option
>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -235,7 +223,7 @@ export default {
getMaterialOut() { getMaterialOut() {
let that = this; let that = this;
this.$API.mtm.material.list this.$API.mtm.material.list
.req({ page: 0, type__in: "10,20" }) .req({ page: 0, type__in: "10,20", is_hidden: false })
.then((res) => { .then((res) => {
this.materialsOut = res; this.materialsOut = res;
}); });

View File

@ -223,7 +223,7 @@ export default {
getMaterials() { getMaterials() {
let that = this; let that = this;
this.$API.mtm.material.list this.$API.mtm.material.list
.req({ page: 0, type__in: "10,20" }) .req({ page: 0, type__in: "10,20", is_hidden: false })
.then((res) => { .then((res) => {
this.materials = res; this.materials = res;
}); });