Commit fc5c3673 authored by zhengke's avatar zhengke

修改

parent 92a82ae5
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
</div> </div>
</div> </div>
<div style="padding:20px 15px;"> <div style="padding:20px 15px;">
<q-input filled stack-label maxlength="100" :dense="false" @keyup.native="checkInteger(OrderMsg,'GuestNum')" v-model="OrderMsg.GuestNum" type="number" <q-input filled stack-label maxlength="100" :dense="false" @keyup.native="checkInteger(OrderMsg,'GuestNum')" v-model="OrderMsg.GuestNum"
@input="countPrice" class="col-12" label="人数" :rules="[val => !!val || '请填写人数']" @input="countPrice" class="col-12" label="人数" :rules="[val => !!val || '请填写人数']"
:disable="modityOrderType==2" /> :disable="modityOrderType==2" />
<template v-if="isChaBan==1"> <template v-if="isChaBan==1">
......
...@@ -89,10 +89,9 @@ ...@@ -89,10 +89,9 @@
</template> </template>
<template v-if="item.OrderType==1"> <template v-if="item.OrderType==1">
课程名称:{{item.CourseName}} 课程名称:{{item.CourseName}}
<template v-if="item.IsChaBan==1"> <div v-if="item.IsChaBan==1" style="color:red;">
插班报入:开始计算课时 {{item.StartClassHours}} 插班报入:开始计算课时 {{item.StartClassHours}}
</template> </div>
</template> </template>
<div style="margin-top:10px;" v-if="item.OfferId>0"> <div style="margin-top:10px;" v-if="item.OfferId>0">
报价单:<span class="order_OfferId" @click="goQuotation(item.OfferId)" 报价单:<span class="order_OfferId" @click="goQuotation(item.OfferId)"
...@@ -1100,7 +1099,6 @@ ...@@ -1100,7 +1099,6 @@
this.isShowStudyOrderForm = true; this.isShowStudyOrderForm = true;
} }
this.isChaBan = item.IsChaBan; this.isChaBan = item.IsChaBan;
console.log(item,'item');
}, },
//刷新页面 //刷新页面
refreshOrder() { refreshOrder() {
...@@ -1526,5 +1524,4 @@ ...@@ -1526,5 +1524,4 @@
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
} }
</style> </style>
...@@ -19,9 +19,9 @@ ...@@ -19,9 +19,9 @@
<template v-slot:body-cell-CourseName="props"> <template v-slot:body-cell-CourseName="props">
<q-td :props="props"> <q-td :props="props">
<span>{{props.row.CourseName}} <span>{{props.row.CourseName}}
<template v-if="props.row.IsChaBan==1"> <div style="color:red;" v-if="props.row.IsChaBan==1">
<br/> 插班报入:起始课时 {{props.row.StartClassHours}} 插班报入:起始课时 {{props.row.StartClassHours}}
</template> </div>
</span> </span>
</q-td> </q-td>
</template> </template>
......
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