Commit c7fffbd0 authored by 罗超's avatar 罗超

1

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