Commit f8e56487 authored by zhengke's avatar zhengke

修改

parent 894fb62f
This diff is collapsed.
...@@ -565,7 +565,10 @@ ...@@ -565,7 +565,10 @@
gostudent(item) { gostudent(item) {
var tempStr = '/sale/studentList?OrderId=' + item.OrderId + '&ClassId=' + item.ClassId; var tempStr = '/sale/studentList?OrderId=' + item.OrderId + '&ClassId=' + item.ClassId;
this.$router.push({ this.$router.push({
path: tempStr path: tempStr,
query:{
isFrom:1
}
}); });
}, },
//修改订单备注 //修改订单备注
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<div class="col-2 q-table__title" @click="goreturn">返回</div> <div class="col-2 q-table__title" @click="goreturn">返回</div>
<q-space /> <q-space />
<div class="page-option"> <div class="page-option">
<q-btn color="accent" size="sm" icon="add" label="新增名单" @click="addxue" /> <q-btn color="accent" size="sm" v-if="isShowBtn" icon="add" label="新增名单" @click="addxue" />
</div> </div>
</template> </template>
<template v-slot:body-cell-Sex="props"> <template v-slot:body-cell-Sex="props">
...@@ -192,6 +192,8 @@ ...@@ -192,6 +192,8 @@
GEList:[], GEList:[],
GLList:[], GLList:[],
OFList:[], OFList:[],
isShowBtn:true //默认显示新增名单
} }
}, },
mounted() { mounted() {
...@@ -199,6 +201,9 @@ ...@@ -199,6 +201,9 @@
this.msg.OrderId =this.$route.query.OrderId; this.msg.OrderId =this.$route.query.OrderId;
this.addMsg.OrderId =this.$route.query.OrderId; this.addMsg.OrderId =this.$route.query.OrderId;
this.msg.ClassId =this.$route.query.ClassId this.msg.ClassId =this.$route.query.ClassId
if(this.$route.query.isFrom==1){
this.isShowBtn = false;
}
} }
this.getRolelist(); this.getRolelist();
this.getGuestBasics()//日语基础枚举 this.getGuestBasics()//日语基础枚举
......
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