Commit 4633909c authored by zhengke's avatar zhengke

修改

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