Commit f8aed324 authored by renjintao's avatar renjintao

orderList row

parent 7d0d34cf
......@@ -157,7 +157,7 @@ export default {
methods: {
loadInfo() {
this.entity = this.row
let v = this.row.orderId
let v = this.entity.orderId
Api.matchdetaillist({
id: v
}).then((r) => {
......@@ -233,9 +233,8 @@ export default {
},
},
watch: {
row(v) {
this.entity = this.$u.clone(v);
this.productName = this.entity.productName
"row"() {
this.entity = this.$u.clone(this.row);
},
gdid(v) {
if (v > 0) {
......
......@@ -102,6 +102,19 @@ export default {
changeTitle(number, type) {
this.orderTitle = type;
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) {
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