生产排产添加字段
This commit is contained in:
parent
7c1432c752
commit
966f91c590
BIN
src/assets/images/fuwei-02.png
Normal file
BIN
src/assets/images/fuwei-02.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
src/assets/images/robotic.png
Normal file
BIN
src/assets/images/robotic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
BIN
src/assets/images/shangdian.png
Normal file
BIN
src/assets/images/shangdian.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
src/assets/images/weishangdian.png
Normal file
BIN
src/assets/images/weishangdian.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
@ -45,7 +45,6 @@ import 'element-ui/lib/theme-chalk/index.css' // 默认主题
|
|||||||
|
|
||||||
//全局修改默认配置,点击空白处不能关闭弹窗
|
//全局修改默认配置,点击空白处不能关闭弹窗
|
||||||
ElementUI.Dialog.props.closeOnClickModal.default = false
|
ElementUI.Dialog.props.closeOnClickModal.default = false
|
||||||
console.log(ElementUI.Dialog)
|
|
||||||
Vue.use(ElementUI)
|
Vue.use(ElementUI)
|
||||||
|
|
||||||
// 全局方法挂载
|
// 全局方法挂载
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<el-col :span="5"
|
<el-col :span="5"
|
||||||
><div class="grid-content bg-purple">
|
><div class="grid-content bg-purple">
|
||||||
<div class="grid-content three" style="height: 750px">
|
<div class="grid-content three" style="height: 750px">
|
||||||
<!-- 已选人员 -->
|
<!-- 选择设备 -->
|
||||||
<el-container style="padding: 0">
|
<el-container style="padding: 0">
|
||||||
<el-header
|
<el-header
|
||||||
class="smallHeader"
|
class="smallHeader"
|
||||||
@ -453,6 +453,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { listMachinery } from "@/api/mes/dv/machinery";
|
||||||
|
import { listMachinerytype } from "@/api/mes/dv/machinerytype";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import "@/assets/font/font.css";
|
import "@/assets/font/font.css";
|
||||||
export default {
|
export default {
|
||||||
@ -467,6 +469,12 @@ export default {
|
|||||||
timer: null,
|
timer: null,
|
||||||
img: require("../../../assets/images/close.png"),
|
img: require("../../../assets/images/close.png"),
|
||||||
imgs: require("../../../assets/images/open.png"),
|
imgs: require("../../../assets/images/open.png"),
|
||||||
|
machineryTypeOptions: [],
|
||||||
|
machinerydata: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
machineryTypeId: "",
|
||||||
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -479,18 +487,43 @@ export default {
|
|||||||
this.setInterval();
|
this.setInterval();
|
||||||
}
|
}
|
||||||
}, 1500);
|
}, 1500);
|
||||||
|
// 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
|
||||||
|
this.$once("hook:beforeDestroy", () => {
|
||||||
|
clearInterval(this.timer);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
axios
|
// axios
|
||||||
.get("http://192.168.3.53:8077/manage/device/devices")
|
// .get("http://192.168.3.53:8077/manage/device/devices")
|
||||||
.then((res) => {
|
// .then((res) => {
|
||||||
console.log(res);
|
// this.intelligent = res.data.data;
|
||||||
this.intelligent = res.data.data;
|
// this.loading = false;
|
||||||
this.loading = false;
|
// });
|
||||||
|
|
||||||
|
listMachinerytype().then((response) => {
|
||||||
|
var data = "";
|
||||||
|
response.data.forEach((item) => {
|
||||||
|
if (item.machineryTypeCode == "M_TYPE_001") {
|
||||||
|
data = item.machineryTypeId;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
this.machinerydata.machineryTypeId = data;
|
||||||
|
this.listMachineryitem();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
listMachineryitem() {
|
||||||
|
listMachinery(this.machinerydata).then((response) => {
|
||||||
|
response.rows.forEach((item) => {
|
||||||
|
if (item.ip != null) {
|
||||||
|
this.intelligent.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
handleClose(item) {
|
handleClose(item) {
|
||||||
@ -506,7 +539,6 @@ export default {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
console.log(res.data.data);
|
|
||||||
this.intelligentData = res.data.data;
|
this.intelligentData = res.data.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -559,6 +591,17 @@ export default {
|
|||||||
.myfont {
|
.myfont {
|
||||||
font-family: "Ayuthaya"; // 这里的 Ayuthaya 是引入时的自定义名字
|
font-family: "Ayuthaya"; // 这里的 Ayuthaya 是引入时的自定义名字
|
||||||
}
|
}
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 0 !important;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-button + .el-button {
|
||||||
|
margin-left: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
.app-containers ::-webkit-scrollbar {
|
.app-containers ::-webkit-scrollbar {
|
||||||
display: none;
|
display: none;
|
||||||
|
407
src/views/deviceConsole/robotic/index.vue
Normal file
407
src/views/deviceConsole/robotic/index.vue
Normal file
@ -0,0 +1,407 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="5"
|
||||||
|
><div class="grid-content bg-purple">
|
||||||
|
<div class="grid-content three" style="height: 750px">
|
||||||
|
<!-- 选择设备 -->
|
||||||
|
<el-container style="padding: 0">
|
||||||
|
<el-header
|
||||||
|
class="smallHeader"
|
||||||
|
style="height: 40px; line-height: 40px"
|
||||||
|
>选择设备
|
||||||
|
</el-header>
|
||||||
|
<el-main class="smallmain tableBox">
|
||||||
|
<p v-if="intelligent.length == 0" class="nodata">暂无数据</p>
|
||||||
|
<div class="tagBox" v-else>
|
||||||
|
<el-button
|
||||||
|
style="width: 100%"
|
||||||
|
v-for="item in intelligent"
|
||||||
|
:key="item"
|
||||||
|
@click="handleClose(item)"
|
||||||
|
>{{ item.machineryName }}</el-button
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
</div>
|
||||||
|
</div></el-col
|
||||||
|
>
|
||||||
|
<el-col :span="14"
|
||||||
|
><div class="grid-content bg-purple">
|
||||||
|
<div>
|
||||||
|
<el-image :src="img"></el-image>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
border: 1px solid rgb(217 216 216);
|
||||||
|
height: 60px;
|
||||||
|
width: 30%;
|
||||||
|
border-radius: 30px;
|
||||||
|
margin-left: 32%;
|
||||||
|
"
|
||||||
|
></div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
border: 1px solid rgb(217, 216, 216);
|
||||||
|
height: 100px;
|
||||||
|
width: 30%;
|
||||||
|
border-radius: 50px;
|
||||||
|
margin-left: 32%;
|
||||||
|
margin-top: 2%;
|
||||||
|
background: rgba(204, 204, 221, 0.2);
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<div style="margin-top: 9%">
|
||||||
|
<el-row type="flex" class="row-bg" justify="center">
|
||||||
|
<el-col :span="4"
|
||||||
|
><div class="grid-content bg-purple">
|
||||||
|
<div v-if="elimage">
|
||||||
|
<el-button @click="elbutton"
|
||||||
|
><el-image
|
||||||
|
:src="sd"
|
||||||
|
style="width: 20px; height: 20px"
|
||||||
|
></el-image
|
||||||
|
></el-button>
|
||||||
|
<p
|
||||||
|
style="
|
||||||
|
margin: auto;
|
||||||
|
margin-left: 25%;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #9e9e9e;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
上电
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<el-button @click="buttonto">
|
||||||
|
<el-image
|
||||||
|
:src="xd"
|
||||||
|
style="width: 20px; height: 20px"
|
||||||
|
></el-image>
|
||||||
|
</el-button>
|
||||||
|
<p
|
||||||
|
style="
|
||||||
|
margin: auto;
|
||||||
|
margin-left: 25%;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #9e9e9e;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
下电
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div></el-col
|
||||||
|
>
|
||||||
|
<el-col :span="6"
|
||||||
|
><div class="grid-content bg-purple-light"></div
|
||||||
|
></el-col>
|
||||||
|
<el-col :span="5"
|
||||||
|
><div class="grid-content bg-purple">
|
||||||
|
<div>
|
||||||
|
<el-button>
|
||||||
|
<el-image
|
||||||
|
:src="fw"
|
||||||
|
style="width: 20px; height: 20px"
|
||||||
|
></el-image>
|
||||||
|
</el-button>
|
||||||
|
<p
|
||||||
|
style="
|
||||||
|
margin: auto;
|
||||||
|
margin-left: 25%;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #9e9e9e;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
复位
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div></el-col
|
||||||
|
>
|
||||||
|
<el-col :span="4"><div class="grid-content bg-purple">2</div></el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listMachinery } from "@/api/mes/dv/machinery";
|
||||||
|
import { listMachinerytype } from "@/api/mes/dv/machinerytype";
|
||||||
|
import axios from "axios";
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
intelligent: [],
|
||||||
|
intelligentData: {},
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
id: "",
|
||||||
|
imgdata: true,
|
||||||
|
timer: null,
|
||||||
|
machineryTypeOptions: [],
|
||||||
|
machinerydata: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
machineryTypeId: "",
|
||||||
|
},
|
||||||
|
elimage: true,
|
||||||
|
img: require("../../../assets/images/robotic.png"),
|
||||||
|
sd: require("../../../assets/images/shangdian.png"),
|
||||||
|
xd: require("../../../assets/images/weishangdian.png"),
|
||||||
|
fw: require("../../../assets/images/fuwei-02.png"),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// 定时刷新
|
||||||
|
this.timer = setInterval(() => {
|
||||||
|
if (this.id != "") {
|
||||||
|
this.setInterval();
|
||||||
|
}
|
||||||
|
}, 1500);
|
||||||
|
// 通过$once来监听定时器,在beforeDestroy钩子可以被清除。
|
||||||
|
this.$once("hook:beforeDestroy", () => {
|
||||||
|
clearInterval(this.timer);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
// axios
|
||||||
|
// .get("http://192.168.3.53:8077/manage/device/devices")
|
||||||
|
// .then((res) => {
|
||||||
|
// this.intelligent = res.data.data;
|
||||||
|
// this.loading = false;
|
||||||
|
// });
|
||||||
|
|
||||||
|
listMachinerytype().then((response) => {
|
||||||
|
var data = "";
|
||||||
|
response.data.forEach((item) => {
|
||||||
|
if (item.machineryTypeCode == "M_TYPE_002") {
|
||||||
|
data = item.machineryTypeId;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.machinerydata.machineryTypeId = data;
|
||||||
|
this.listMachineryitem();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
listMachineryitem() {
|
||||||
|
listMachinery(this.machinerydata).then((response) => {
|
||||||
|
response.rows.forEach((item) => {
|
||||||
|
if (item.ip != null) {
|
||||||
|
this.intelligent.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
console.log(this.intelligent);
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClose(item) {
|
||||||
|
this.id = item.machineryId;
|
||||||
|
this.setInterval();
|
||||||
|
},
|
||||||
|
|
||||||
|
setInterval() {
|
||||||
|
// axios
|
||||||
|
// .get("http://192.168.3.53:8077/manage/modbus/data", {
|
||||||
|
// params: {
|
||||||
|
// id: this.id,
|
||||||
|
// },
|
||||||
|
// })
|
||||||
|
// .then((res) => {
|
||||||
|
// console.log(res.data.data);
|
||||||
|
// this.intelligentData = res.data.data;
|
||||||
|
// });
|
||||||
|
},
|
||||||
|
|
||||||
|
elbutton() {
|
||||||
|
this.elimage = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
buttonto() {
|
||||||
|
this.elimage = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
off() {
|
||||||
|
// if (this.id != "") {
|
||||||
|
// axios
|
||||||
|
// .get("http://192.168.3.53:8077/manage/modbus/operate", {
|
||||||
|
// params: {
|
||||||
|
// id: this.id,
|
||||||
|
// type: 2,
|
||||||
|
// },
|
||||||
|
// })
|
||||||
|
// .then((res) => {
|
||||||
|
// this.imgdata = true;
|
||||||
|
// this.$modal.msgSuccess("停止成功");
|
||||||
|
// });
|
||||||
|
// } else {
|
||||||
|
// this.$message({
|
||||||
|
// message: "请选择设备",
|
||||||
|
// type: "warning",
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
on() {
|
||||||
|
// if (this.id != "") {
|
||||||
|
// axios
|
||||||
|
// .get("http://192.168.3.53:8077/manage/modbus/operate", {
|
||||||
|
// params: {
|
||||||
|
// id: this.id,
|
||||||
|
// type: 1,
|
||||||
|
// },
|
||||||
|
// })
|
||||||
|
// .then((res) => {
|
||||||
|
// this.imgdata = false;
|
||||||
|
// this.$modal.msgSuccess("启动成功");
|
||||||
|
// });
|
||||||
|
// } else {
|
||||||
|
// this.$message({
|
||||||
|
// message: "请选择设备",
|
||||||
|
// type: "warning",
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.app-containers ::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 0 !important;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 0 !important;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-button + .el-button {
|
||||||
|
margin-left: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image {
|
||||||
|
width: 300px;
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.one,
|
||||||
|
.three,
|
||||||
|
.two {
|
||||||
|
height: 510px;
|
||||||
|
width: 100%;
|
||||||
|
overflow: scroll;
|
||||||
|
border: solid 1px #dadada;
|
||||||
|
}
|
||||||
|
.one {
|
||||||
|
width: 95%;
|
||||||
|
}
|
||||||
|
.two {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
.three {
|
||||||
|
width: 99%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-left: 5%;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
line-height: 24px;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #302933;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
border-bottom: solid 1px #dadada;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
margin-top: -23px;
|
||||||
|
}
|
||||||
|
.el-main,
|
||||||
|
.smallmain {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.smallHeader {
|
||||||
|
background-color: #e0e8f0;
|
||||||
|
position: relative;
|
||||||
|
color: #7a8289;
|
||||||
|
font-weight: 700;
|
||||||
|
}
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
width: 70%;
|
||||||
|
margin: 0 auto 20px;
|
||||||
|
background: url("../../../assets/images/machine.png") no-repeat center;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.but1 {
|
||||||
|
position: absolute;
|
||||||
|
right: 20px;
|
||||||
|
top: 4px;
|
||||||
|
}
|
||||||
|
.open,
|
||||||
|
.smallmain >>> .el-tree-node:focus > .el-tree-node__content {
|
||||||
|
background-color: #83bff8 !important;
|
||||||
|
}
|
||||||
|
.smallmain >>> .el-tree-node__content:hover {
|
||||||
|
background-color: #dadada;
|
||||||
|
}
|
||||||
|
.smallmain
|
||||||
|
>>> .el-tree--highlight-current
|
||||||
|
.el-tree-node.is-current
|
||||||
|
> .el-tree-node__content {
|
||||||
|
background-color: #83bff8;
|
||||||
|
}
|
||||||
|
.tableBox >>> .el-table {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.radio {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.nodata {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 40px;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
.tagBox {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.tag {
|
||||||
|
width: 100%;
|
||||||
|
height: 38px;
|
||||||
|
}
|
||||||
|
.tagItem {
|
||||||
|
display: inline-block;
|
||||||
|
width: calc(100% / 3.2);
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 5px;
|
||||||
|
/* 单行文本溢出省略号 */
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
::v-deep .el-tag .el-icon-close {
|
||||||
|
top: -9px;
|
||||||
|
}
|
||||||
|
.wrapBox >>> .el-table__body tr.current-row > td {
|
||||||
|
background-color: #83bff8 !important;
|
||||||
|
}
|
||||||
|
.wrapBox >>> .el-table tbody tr:hover > td {
|
||||||
|
background-color: #dadada;
|
||||||
|
}
|
||||||
|
::v-deep .el-tag {
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -646,6 +646,8 @@ export default {
|
|||||||
|
|
||||||
inputName: "",
|
inputName: "",
|
||||||
|
|
||||||
|
queryParamsdata:{},
|
||||||
|
|
||||||
// 表单校验
|
// 表单校验
|
||||||
rules: {
|
rules: {
|
||||||
machineryCode: [
|
machineryCode: [
|
||||||
@ -724,6 +726,7 @@ export default {
|
|||||||
handleNodeClick(data) {
|
handleNodeClick(data) {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
this.queryParams.machineryTypeId = data.machineryTypeId;
|
this.queryParams.machineryTypeId = data.machineryTypeId;
|
||||||
|
this.queryParamsdata = data;
|
||||||
this.handleQuery();
|
this.handleQuery();
|
||||||
},
|
},
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
@ -792,8 +795,8 @@ export default {
|
|||||||
this.getWorkshops();
|
this.getWorkshops();
|
||||||
this.userName = "";
|
this.userName = "";
|
||||||
this.inputName = "";
|
this.inputName = "";
|
||||||
if (this.queryParams.machineryTypeId != 0) {
|
if (this.queryParamsdata.machineryTypeId != 0) {
|
||||||
this.form.machineryTypeId = this.queryParams.machineryTypeId;
|
this.form = this.queryParamsdata;
|
||||||
}
|
}
|
||||||
this.optType = "add";
|
this.optType = "add";
|
||||||
this.open = true;
|
this.open = true;
|
||||||
@ -937,7 +940,6 @@ export default {
|
|||||||
|
|
||||||
//子组件传的数据
|
//子组件传的数据
|
||||||
getSelectList(value) {
|
getSelectList(value) {
|
||||||
console.log(value);
|
|
||||||
this.userName = "";
|
this.userName = "";
|
||||||
this.userName = value.map((item) => item.nickName);
|
this.userName = value.map((item) => item.nickName);
|
||||||
this.UserAdd.userIds = value.map((item) => item.userId);
|
this.UserAdd.userIds = value.map((item) => item.userId);
|
||||||
|
@ -261,7 +261,7 @@
|
|||||||
</el-step>
|
</el-step>
|
||||||
</el-steps>
|
</el-steps>
|
||||||
<el-card v-for=" (item,index) in processOptions " :key="index" v-if="activeProcess == index && form.workorderId !=null">
|
<el-card v-for=" (item,index) in processOptions " :key="index" v-if="activeProcess == index && form.workorderId !=null">
|
||||||
<ProTask :workorderId="form.workorderId" :routeId="item.routeId" :processId="item.processId" :colorCode="item.colorCode" :optType="optType"></ProTask>
|
<ProTask :workorderId="form.workorderId" :routeId="item.routeId" :processId="item.processId" :colorCode="item.colorCode" :optType="optType" :recordId="item.recordId"></ProTask>
|
||||||
</el-card>
|
</el-card>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="cancel" v-if="optType =='view' || form.status !='PREPARE' ">返回</el-button>
|
<el-button type="primary" @click="cancel" v-if="optType =='view' || form.status !='PREPARE' ">返回</el-button>
|
||||||
|
@ -245,7 +245,8 @@ export default {
|
|||||||
colorCode: null,
|
colorCode: null,
|
||||||
routeId: null,
|
routeId: null,
|
||||||
processId: null,
|
processId: null,
|
||||||
optType: null
|
optType: null,
|
||||||
|
recordId:null
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -295,6 +296,7 @@ export default {
|
|||||||
reset() {
|
reset() {
|
||||||
this.form = {
|
this.form = {
|
||||||
taskId: null,
|
taskId: null,
|
||||||
|
recordId: this.recordId,
|
||||||
taskCode: null,
|
taskCode: null,
|
||||||
taskName: null,
|
taskName: null,
|
||||||
workorderId: this.workorderId,
|
workorderId: this.workorderId,
|
||||||
|
Loading…
Reference in New Issue
Block a user