更新8d处理和管理
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<!--
|
||||
* @Author: zhp
|
||||
* @Date: 2023-02-14 15:02:26
|
||||
* @LastEditTime: 2023-07-03 16:24:52
|
||||
* @LastEditTime: 2023-07-14 10:20:02
|
||||
* @LastEditors: zwq
|
||||
* @Description:
|
||||
-->
|
||||
@@ -84,9 +84,9 @@
|
||||
>
|
||||
<el-option
|
||||
v-for="item in defectList"
|
||||
:key="item.dictTypeId"
|
||||
:label="item.dictLabel"
|
||||
:value="item.dictTypeId"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.id"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
@@ -386,13 +386,12 @@ export default {
|
||||
})
|
||||
.then(({ data: res }) => {
|
||||
if (res.code === 0) {
|
||||
console.log(res);
|
||||
this.teamList = res.data.list;
|
||||
}
|
||||
})
|
||||
.catch(() => {});
|
||||
this.$http
|
||||
.get(this.urlOptions.getDictURL, {
|
||||
.get("code/problemType/page", {
|
||||
params: {
|
||||
limit: 999,
|
||||
page: 1,
|
||||
@@ -401,7 +400,6 @@ export default {
|
||||
})
|
||||
.then(({ data: res }) => {
|
||||
if (res.code === 0) {
|
||||
console.log(res);
|
||||
this.defectList = res.data.list;
|
||||
}
|
||||
})
|
||||
@@ -416,7 +414,6 @@ export default {
|
||||
})
|
||||
.then(({ data: res }) => {
|
||||
if (res.code === 0) {
|
||||
console.log(res);
|
||||
this.dutyList = res.data.list;
|
||||
}
|
||||
})
|
||||
@@ -455,7 +452,6 @@ export default {
|
||||
type: "success",
|
||||
duration: 500,
|
||||
onClose: () => {
|
||||
console.log(1111);
|
||||
this.visible = false;
|
||||
this.$emit("successSubmit");
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user