Commit ffec652d authored by 黄奎's avatar 黄奎

页面修改

parent bb1618ef
...@@ -137,7 +137,8 @@ ...@@ -137,7 +137,8 @@
{{item.Class_Price.toFixed(2)}} {{item.Class_Price.toFixed(2)}}
</template> </template>
</td> </td>
<td style="width:7%" :style="{color:item.Class_Price!=item.Unit_Price?'var(--q-color-negative)':'','border':'none'}"> <td style="width:7%"
:style="{color:item.Class_Price!=item.Unit_Price?'var(--q-color-negative)':'','border':'none'}">
<template v-if="item.Unit_Price>=0"> <template v-if="item.Unit_Price>=0">
{{item.Unit_Price.toFixed(2)}} {{item.Unit_Price.toFixed(2)}}
</template> </template>
...@@ -292,12 +293,11 @@ ...@@ -292,12 +293,11 @@
<q-item-label @click="showContinueClass(item)">续课</q-item-label> <q-item-label @click="showContinueClass(item)">续课</q-item-label>
</q-item-section> </q-item-section>
</q-item> </q-item>
<q-item clickable v-close-popup v-close-popup> <q-item clickable v-close-popup v-close-popup v-if="AuthorityObj.isShowTransOrder">
<q-item-section> <q-item-section>
<q-item-label @click="transferClass(item)">转班</q-item-label> <q-item-label @click="transferClass(item)">转班</q-item-label>
</q-item-section> </q-item-section>
</q-item> </q-item>
</q-list> </q-list>
</q-btn-dropdown> </q-btn-dropdown>
</td> </td>
...@@ -931,6 +931,7 @@ ...@@ -931,6 +931,7 @@
isShowRenewClass: false, //是否显示续课按钮 isShowRenewClass: false, //是否显示续课按钮
isShowContract: true, //是否显示合同 isShowContract: true, //是否显示合同
isShowEdit: true, //是否显示修改订单按钮 isShowEdit: true, //是否显示修改订单按钮
isShowTransClassOrder: false, //是否显示转班按钮
}, },
isShowEduForm: false, //是否显示新增修改合同弹窗 isShowEduForm: false, //是否显示新增修改合同弹窗
...@@ -1030,6 +1031,9 @@ ...@@ -1030,6 +1031,9 @@
if (this.authObj.isShowEdit != null && !this.authObj.isShowEdit) { if (this.authObj.isShowEdit != null && !this.authObj.isShowEdit) {
this.AuthorityObj.isShowEdit = this.authObj.isShowEdit; this.AuthorityObj.isShowEdit = this.authObj.isShowEdit;
} }
if (this.authObj.isShowTransClassOrder != null && this.authObj.isShowTransClassOrder) {
this.AuthorityObj.isShowTransClassOrder = this.authObj.isShowTransClassOrder;
}
} }
}, },
//关闭报价单 //关闭报价单
...@@ -1197,7 +1201,7 @@ ...@@ -1197,7 +1201,7 @@
} else { //留学就业订单 } else { //留学就业订单
this.isShowStudyOrderForm = true; this.isShowStudyOrderForm = true;
} }
this.isChaBan = item.JoinType==2?1:0; this.isChaBan = item.JoinType == 2 ? 1 : 0;
}, },
//刷新页面 //刷新页面
refreshOrder() { refreshOrder() {
...@@ -1650,9 +1654,11 @@ ...@@ -1650,9 +1654,11 @@
.classorder .redstyle { .classorder .redstyle {
color: var(--q-color-negative); color: var(--q-color-negative);
} }
.order_OferTitle{
font-size:14px; .order_OferTitle {
color:#333333; font-size: 14px;
margin-bottom:10px; color: #333333;
margin-bottom: 10px;
} }
</style> </style>
...@@ -169,6 +169,7 @@ ...@@ -169,6 +169,7 @@
isShowSaleRemark: true, //显示修改销售备注 isShowSaleRemark: true, //显示修改销售备注
isShowBackClass: true, //显示退课按钮 isShowBackClass: true, //显示退课按钮
isShowRenewClass: true, //显示续课按钮 isShowRenewClass: true, //显示续课按钮
isShowTransClassOrder:true,//现在转班按钮
} }
} }
}, },
......
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