Commit 4633909c authored by zhengke's avatar zhengke

修改

parent ed4f6b28
......@@ -149,6 +149,9 @@
<changebill-form v-if="isShowChangeBillForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage">
</changebill-form>
<ordertrans-form v-if="isShowTransForm" :seting-obj="billObj" :showType="showType" @close="closeBillForm"
@success="refreshPage">
</ordertrans-form>
</div>
</div>
</template>
......@@ -166,6 +169,7 @@
import backbillForm from '../../components/sale/backbill-form';
import changebillForm from '../../components/sale/changebill-form';
import ordertransForm from '../../components/sale/ordertrans-form'
export default {
meta: {
......@@ -174,6 +178,7 @@
components: {
backbillForm,
changebillForm,
ordertransForm
},
data() {
return {
......@@ -268,6 +273,7 @@
EmployeeList: [],
AllemployeeList: [],
IsEditEduReceipAudit: false, //是否有修改审核人权限
isShowTransForm:false
}
},
created() {
......@@ -307,6 +313,7 @@
closeBillForm() {
this.isShowBackBillForm = false;
this.isShowChangeBillForm = false;
this.isShowTransForm = false;
this.billObj = {};
},
//显示表单
......@@ -319,6 +326,10 @@
else if (item.ReceiptType == 2) {
this.isShowBackBillForm = true;
}
//转班
else if(item.ReceiptType == 5){
this.isShowTransForm = true;
}
this.showType = type;
this.billObj = item;
this.isShowEdit = false;
......
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