|
@@ -311,7 +311,23 @@
|
|
<!--#endregion-->
|
|
<!--#endregion-->
|
|
|
|
|
|
<template slot="menuLeft">
|
|
<template slot="menuLeft">
|
|
- <el-button type="primary" size="small" @click="addbtnfun()">新建业务
|
|
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ @click="addbtnfun('DD')"
|
|
|
|
+ >新建直单
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ type="success"
|
|
|
|
+ size="small"
|
|
|
|
+ @click="addbtnfun('MM')"
|
|
|
|
+ >新建主单
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ type="warning"
|
|
|
|
+ size="small"
|
|
|
|
+ @click="addbtnfun('MH')"
|
|
|
|
+ >新建分单
|
|
</el-button>
|
|
</el-button>
|
|
<el-button type="primary" size="small" plain @click="CopyDocumentsfun">复制单据
|
|
<el-button type="primary" size="small" plain @click="CopyDocumentsfun">复制单据
|
|
</el-button>
|
|
</el-button>
|
|
@@ -1774,8 +1790,9 @@ export default {
|
|
this.$store.commit("OUT_OCEANFI_DETAIL");
|
|
this.$store.commit("OUT_OCEANFI_DETAIL");
|
|
},
|
|
},
|
|
// 新增弹窗开启
|
|
// 新增弹窗开启
|
|
- addbtnfun() {
|
|
|
|
|
|
+ addbtnfun(type) {
|
|
this.detailData.seeDisabled = false
|
|
this.detailData.seeDisabled = false
|
|
|
|
+ this.detailData.billType = type
|
|
this.isShow = false
|
|
this.isShow = false
|
|
this.$store.commit("IN_OCEANFI_DETAIL");
|
|
this.$store.commit("IN_OCEANFI_DETAIL");
|
|
},
|
|
},
|