You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<j-modal
|
|
|
|
:title="title"
|
|
|
|
:width="width"
|
|
|
|
:visible="visible"
|
|
|
|
switchFullscreen
|
|
|
|
@ok="handleOk"
|
|
|
|
:okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
|
|
|
|
@cancel="handleCancel"
|
|
|
|
cancelText="关闭">
|
|
|
|
<zy-operationtool-list ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></zy-operationtool-list>
|
|
|
|
</j-modal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
// import ZyProcessForm from './ZyProcessForm'
|
|
|
|
// import ZyProcessActionList from "./ZyProcessActionList";
|
|
|
|
|
|
|
|
import ZyOperationtoolList from "@/views/process/modules/ZyOperationtoolList";
|
|
|
|
export default {
|
|
|
|
name: 'ZyProcessModal1',
|
|
|
|
components: {
|
|
|
|
ZyOperationtoolList,
|
|
|
|
// ZyProcessActionList
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
title:'',
|
|
|
|
width:1500,
|
|
|
|
visible: false,
|
|
|
|
disableSubmit: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
add () {
|
|
|
|
this.visible=true
|
|
|
|
this.$nextTick(()=>{
|
|
|
|
this.$refs.realForm.add();
|
|
|
|
})
|
|
|
|
},
|
|
|
|
edit (id) {
|
|
|
|
this.visible=true
|
|
|
|
this.$nextTick(()=>{
|
|
|
|
this.$refs.realForm.edit(id);
|
|
|
|
})
|
|
|
|
},
|
|
|
|
close () {
|
|
|
|
this.$emit('close');
|
|
|
|
this.visible = false;
|
|
|
|
},
|
|
|
|
handleOk () {
|
|
|
|
this.close()
|
|
|
|
},
|
|
|
|
submitCallback(){
|
|
|
|
this.$emit('ok');
|
|
|
|
this.visible = false;
|
|
|
|
},
|
|
|
|
handleCancel () {
|
|
|
|
this.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|