Commit c7fffbd0 authored by 罗超's avatar 罗超

1

parent d86276c8
...@@ -80,6 +80,22 @@ ...@@ -80,6 +80,22 @@
</q-tooltip> </q-tooltip>
</span> </span>
</template> </template>
<template v-if="props.row.ReceiptType==3">
<span>
{{props.row.DataObj.ApplyReason}}
<q-tooltip :offset="[0, 10]">
{{props.row.DataObj.ApplyReason}}
</q-tooltip>
</span>
</template>
<template v-if="props.row.ReceiptType==4">
<span>
{{props.row.DataObj.ApplyReason}}
<q-tooltip :offset="[0, 10]">
{{props.row.DataObj.ApplyReason}}
</q-tooltip>
</span>
</template>
</div> </div>
</q-td> </q-td>
</template> </template>
...@@ -152,6 +168,13 @@ ...@@ -152,6 +168,13 @@
<ordertrans-form v-if="isShowTransForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm" <ordertrans-form v-if="isShowTransForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage"> @success="refreshPage">
</ordertrans-form> </ordertrans-form>
<stopbill-form v-if="isShowStopBillForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage">
</stopbill-form>
<!-- 订单临时上课邀请-查看 -->
<temporaryClass-form v-if="isShowTemporaryClass" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage">
</temporaryClass-form>
</div> </div>
</div> </div>
</template> </template>
...@@ -170,7 +193,8 @@ ...@@ -170,7 +193,8 @@
import backbillForm from '../../components/sale/backbill-form'; import backbillForm from '../../components/sale/backbill-form';
import changebillForm from '../../components/sale/changebill-form'; import changebillForm from '../../components/sale/changebill-form';
import ordertransForm from '../../components/sale/ordertrans-form' import ordertransForm from '../../components/sale/ordertrans-form'
import stopbillForm from '../../components/sale/stopbill-form';
import temporaryClassForm from '../../components/sale/temporaryClassbill-form';
export default { export default {
meta: { meta: {
title: "教务单据查询" title: "教务单据查询"
...@@ -178,7 +202,9 @@ ...@@ -178,7 +202,9 @@
components: { components: {
backbillForm, backbillForm,
changebillForm, changebillForm,
ordertransForm ordertransForm,
stopbillForm,
temporaryClassForm
}, },
data() { data() {
return { return {
...@@ -273,7 +299,9 @@ ...@@ -273,7 +299,9 @@
EmployeeList: [], EmployeeList: [],
AllemployeeList: [], AllemployeeList: [],
IsEditEduReceipAudit: false, //是否有修改审核人权限 IsEditEduReceipAudit: false, //是否有修改审核人权限
isShowTransForm:false isShowTransForm:false,
isShowStopBillForm:false,//是否显示停课订单详情
isShowTemporaryClass:false,//是否显示临时上课邀请订单详情
} }
}, },
created() { created() {
...@@ -314,6 +342,8 @@ ...@@ -314,6 +342,8 @@
this.isShowBackBillForm = false; this.isShowBackBillForm = false;
this.isShowChangeBillForm = false; this.isShowChangeBillForm = false;
this.isShowTransForm = false; this.isShowTransForm = false;
this.isShowStopBillForm=false;
this.isShowTemporaryClass = false;
this.billObj = {}; this.billObj = {};
}, },
//显示表单 //显示表单
...@@ -329,6 +359,14 @@ ...@@ -329,6 +359,14 @@
//转班 //转班
else if(item.ReceiptType == 5){ else if(item.ReceiptType == 5){
this.isShowTransForm = true; this.isShowTransForm = true;
}
//停课
else if (item.ReceiptType == 3) {
this.isShowStopBillForm = true;
}
//临时上课邀请
else if (item.ReceiptType == 4){
this.isShowTemporaryClass =true;
} }
this.showType = type; this.showType = type;
this.billObj = item; this.billObj = item;
......
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