增加流程转办按钮公共组件
This commit is contained in:
@@ -75,6 +75,15 @@
|
||||
:loading="submitLoading"
|
||||
v-if="showConfirm"
|
||||
>确认</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
size="small"
|
||||
class="common-button-primary"
|
||||
icon="el-icon-s-promotion"
|
||||
@click="handleTransfer"
|
||||
:loading="transferLoading"
|
||||
v-if="showTransfer"
|
||||
>转办</el-button>
|
||||
</div>
|
||||
|
||||
<!-- 组织机构树 -->
|
||||
@@ -140,6 +149,10 @@ export default {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
showTransfer:{
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
showConfirm: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
@@ -159,6 +172,11 @@ export default {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//转办按钮loading
|
||||
transferLoading: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
// 保存按钮loading
|
||||
saveLoading: {
|
||||
type: Boolean,
|
||||
@@ -225,6 +243,9 @@ export default {
|
||||
handleSubmit() {
|
||||
this.$emit('submit')
|
||||
},
|
||||
handleTransfer(){
|
||||
this.$emit('transfer')
|
||||
},
|
||||
handleSendEmail() {
|
||||
this.$emit('sendEmail')
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user