Commit f4a717da authored by 黄奎's avatar 黄奎

页面修改

parent 78774455
This diff is collapsed.
...@@ -271,8 +271,6 @@ ...@@ -271,8 +271,6 @@
<div v-if="item.IsCanApply==0"> <div v-if="item.IsCanApply==0">
<img src="../../assets/images/administration/bmym.png" alt="" <img src="../../assets/images/administration/bmym.png" alt=""
style="width: 64px;height: 62px;margin:20px 15px 0 0" v-if="item.SurplusNum==0"> style="width: 64px;height: 62px;margin:20px 15px 0 0" v-if="item.SurplusNum==0">
<!-- <img src="../../assets/images/administration/guoqi.png" alt="" style="width: 64px;height: 62px"
v-if="getEXPDate(item.EndOrderTime)==true"> -->
</div> </div>
<div> <div>
<q-btn style="margin-top:10px;" size="sm" color="primary" label="订单中心" @click="goclassorder(item)" /> <q-btn style="margin-top:10px;" size="sm" color="primary" label="订单中心" @click="goclassorder(item)" />
...@@ -301,8 +299,8 @@ ...@@ -301,8 +299,8 @@
</ul> </ul>
<div v-else style="width: 100%;color: #999999;text-align: center;font-size: 15px">暂无数据</div> <div v-else style="width: 100%;color: #999999;text-align: center;font-size: 15px">暂无数据</div>
</div> </div>
<editorder-form v-if="isShowEditOrderForm" :save-obj="orderObj" :orderType="1" :modityOrderType="1" :isChaBan="isChaBan" <editorder-form v-if="isShowEditOrderForm" :save-obj="orderObj" :orderType="1" :modityOrderType="1"
@close="closeOrderSaveForm" @success="refreshOrder"> :isChaBan="isChaBan" @close="closeOrderSaveForm" @success="refreshOrder">
</editorder-form> </editorder-form>
</div> </div>
</div> </div>
...@@ -347,7 +345,7 @@ ...@@ -347,7 +345,7 @@
Q_CanApply: "0", //是否可以报名 1是 Q_CanApply: "0", //是否可以报名 1是
JoinStartTime: '', //报名截止日期开始 JoinStartTime: '', //报名截止日期开始
JoinEndTime: "", //报名截止日期结束 JoinEndTime: "", //报名截止日期结束
ClassNo:'',//班号 ClassNo: '', //班号
}, },
//关联校区列表 //关联校区列表
schoolList: [], schoolList: [],
...@@ -360,6 +358,7 @@ ...@@ -360,6 +358,7 @@
orderObj: { orderObj: {
ClassId: 0, ClassId: 0,
Unit_Price: 0, Unit_Price: 0,
CourseId: 0,
}, },
isChaBan: 0, //是否插班(0-正常报入,1-插班报入) isChaBan: 0, //是否插班(0-正常报入,1-插班报入)
} }
...@@ -369,7 +368,7 @@ ...@@ -369,7 +368,7 @@
this.CourseList(); this.CourseList();
this.GetTeacherList(); this.GetTeacherList();
if (this.$route.query && this.$route.query.ClassName) { if (this.$route.query && this.$route.query.ClassName) {
this.msg.ClassName = decodeURI(this.$route.query.ClassName) ; this.msg.ClassName = decodeURI(this.$route.query.ClassName);
} }
if (this.$route.query && this.$route.query.ClassNo) { if (this.$route.query && this.$route.query.ClassNo) {
this.msg.ClassNo = this.$route.query.ClassNo; this.msg.ClassNo = this.$route.query.ClassNo;
...@@ -525,7 +524,7 @@ ...@@ -525,7 +524,7 @@
}, },
//立即报名和插班报名 //立即报名和插班报名
placeAnorder(item, type) { placeAnorder(item, type) {
if(item.Teacher_Id==0){ if (item.Teacher_Id == 0) {
this.$q.notify({ this.$q.notify({
type: 'negative', type: 'negative',
position: "top", position: "top",
...@@ -536,11 +535,12 @@ ...@@ -536,11 +535,12 @@
this.isChaBan = type; this.isChaBan = type;
this.orderObj.ClassId = item.ClassId; this.orderObj.ClassId = item.ClassId;
this.orderObj.Unit_Price = item.SellPrice; this.orderObj.Unit_Price = item.SellPrice;
this.orderObj.CourseId = item.CouseId;
this.isShowEditOrderForm = true; this.isShowEditOrderForm = true;
}, },
//跳转到课程大纲 //跳转到课程大纲
goChapter(CouseId){ goChapter(CouseId) {
this.OpenNewUrl('/course/chapter' , { this.OpenNewUrl('/course/chapter', {
CourseId: CouseId CourseId: CouseId
}); });
} }
...@@ -684,15 +684,18 @@ ...@@ -684,15 +684,18 @@
border: none !important; border: none !important;
background: transparent !important; background: transparent !important;
} }
.japanFeature{
font-size:14px; .japanFeature {
color:#111111; font-size: 14px;
color: #111111;
cursor: pointer; cursor: pointer;
margin-left:-1px; margin-left: -1px;
} }
.CourseFearure{
margin:10px; .CourseFearure {
width:500px; margin: 10px;
color:#000; width: 500px;
color: #000;
} }
</style> </style>
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