Browse Source

生产订单 转发 2022年4月12日 sxm

master
[li_she] 4 years ago
parent
commit
af2943fe42
  1. 12
      src/views/modules/shopOrder/shopOrder/shopOrder.vue

12
src/views/modules/shopOrder/shopOrder/shopOrder.vue

@ -1642,11 +1642,13 @@
$route:{ $route:{
handler: function(val, oldVal){ handler: function(val, oldVal){
this.$router.onReady(() => { this.$router.onReady(() => {
this.modelData.orderNo = this.$route.query.order
this.modelData.site = this.$route.query.site
this.modelData.user = this.$route.query.user
if(this.modelData.orderNo){
this.tableHanddle(this.modelData)
if (this.$route.query.order){
this.modelData.orderNo = this.$route.query.order
this.modelData.site = this.$route.query.site
this.modelData.user = this.$route.query.user
if(this.modelData.orderNo){
this.tableHanddle(this.modelData)
}
} }
}) })
}, },

Loading…
Cancel
Save