From f71832a6389efa2f851b8b7bd7a615ed2d3250e4 Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期四, 28 三月 2024 13:16:16 +0800
Subject: [PATCH] 完成模具页面
---
src/views/quality/exception/exception-form.vue | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/src/views/quality/exception/exception-form.vue b/src/views/quality/exception/exception-form.vue
index ef33e4e..71959a0 100644
--- a/src/views/quality/exception/exception-form.vue
+++ b/src/views/quality/exception/exception-form.vue
@@ -78,7 +78,7 @@
></el-button>
</el-input>
</el-form-item>
- <el-form-item label="寰俊閫氱煡缁�" prop="notifierGroupId">
+ <!-- <el-form-item label="寰俊閫氱煡缁�" prop="notifierGroupId">
<el-select
v-model="dataForm.notifierGroupId"
style="width:100%;"
@@ -92,7 +92,7 @@
>
</el-option>
</el-select>
- </el-form-item>
+ </el-form-item> -->
<el-form-item label="澶囨敞" prop="remark">
<el-input
type="textarea"
@@ -163,7 +163,7 @@
<script>
import { getObj, putObj } from '@/api/quality/exception'
-import { fetchList } from '@/api/quality/wxnotice'
+// import { fetchList } from '@/api/quality/wxnotice'
import workstationDialog from '@/views/common/workstation.vue'
import productoutDialog from '@/views/common/productout.vue'
import { getStore } from '../../../util/store'
@@ -216,7 +216,7 @@
},
created() {
this.getExceptionHandleType()
- this.getWxNoticeList()
+ // this.getWxNoticeList()
},
methods: {
init(id) {
@@ -229,6 +229,7 @@
this.$refs.dataForm.resetFields()
if (this.dataForm.id) {
getObj(this.dataForm.id).then((response) => {
+ console.log(response,"----");
this.dataForm = response.data.data
this.fileList = response.data.data.urlList
})
@@ -304,6 +305,7 @@
},
getExceptionHandleType() {
remote('exception_handle_type').then((response) => {
+ console.log(response,"111111");
if (response.data.code === 0) {
this.exceptionHandleTypeOptions = response.data.data
} else {
@@ -324,6 +326,7 @@
})
},
selectUser(param) {
+ console.log(param,"----===-=");
if (param) {
this.dataForm.processUser = param.userId
this.dataForm.processUserName = param.username
--
Gitblit v1.9.3