Commit f8aed324 authored by renjintao's avatar renjintao

orderList row

parent 7d0d34cf
...@@ -157,7 +157,7 @@ export default { ...@@ -157,7 +157,7 @@ export default {
methods: { methods: {
loadInfo() { loadInfo() {
this.entity = this.row this.entity = this.row
let v = this.row.orderId let v = this.entity.orderId
Api.matchdetaillist({ Api.matchdetaillist({
id: v id: v
}).then((r) => { }).then((r) => {
...@@ -233,9 +233,8 @@ export default { ...@@ -233,9 +233,8 @@ export default {
}, },
}, },
watch: { watch: {
row(v) { "row"() {
this.entity = this.$u.clone(v); this.entity = this.$u.clone(this.row);
this.productName = this.entity.productName
}, },
gdid(v) { gdid(v) {
if (v > 0) { if (v > 0) {
......
...@@ -102,6 +102,19 @@ export default { ...@@ -102,6 +102,19 @@ export default {
changeTitle(number, type) { changeTitle(number, type) {
this.orderTitle = type; this.orderTitle = type;
this.orderindex = number; this.orderindex = number;
let row = {
id: this.$route.query.id,
orderId: this.$route.query.orderId,
executeId: this.$route.query.executeId,
headid: this.$route.query.headid,
routingdetailId: this.$route.query.routid,
mesCode: this.$route.query.mesCode,
productName: this.$route.query.productName,
drawnNumber: this.$route.query.drawnNumber,
count: this.$route.query.quantity,
};
this.row = row;
this.inputId = this.$route.query.id;
if (number == 0) { if (number == 0) {
this.detail = () => import("./starOrder/index"); this.detail = () => import("./starOrder/index");
} //进度汇报 } //进度汇报
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment