81 lines
1.7 KiB
Vue
81 lines
1.7 KiB
Vue
<template>
|
|
<a-modal :title="title" :width="width" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
|
|
<YyzyList ref="registerForm" @ok="submitCallback" @yinyong="handleYinyong" :formDisabled="disableSubmit" :formBpm="false"></YyzyList>
|
|
</a-modal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, nextTick, defineExpose } from 'vue';
|
|
import YyzyList from './YyzyListMain.vue'
|
|
|
|
const title = ref<string>('');
|
|
const width = ref<number>(1000);
|
|
const visible = ref<boolean>(false);
|
|
const disableSubmit = ref<boolean>(false);
|
|
const registerForm = ref();
|
|
const emit = defineEmits(['register', 'success']);
|
|
|
|
/**
|
|
* 新增
|
|
*/
|
|
function init(record) {
|
|
title.value = '引用作业';
|
|
visible.value = true;
|
|
nextTick(() => {
|
|
registerForm.value.init(record);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 编辑
|
|
* @param record
|
|
*/
|
|
function edit(record) {
|
|
title.value = disableSubmit.value ? '详情' : '编辑';
|
|
visible.value = true;
|
|
nextTick(() => {
|
|
registerForm.value.edit(record);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 确定按钮点击事件
|
|
*/
|
|
function handleOk() {
|
|
registerForm.value.submitForm();
|
|
}
|
|
|
|
/**
|
|
* form保存回调事件
|
|
*/
|
|
function submitCallback(record) {
|
|
handleCancel();
|
|
emit('success',record);
|
|
}
|
|
|
|
function handleYinyong(record){
|
|
handleCancel();
|
|
emit('success',record);
|
|
}
|
|
|
|
/**
|
|
* 取消按钮回调事件
|
|
*/
|
|
function handleCancel() {
|
|
visible.value = false;
|
|
}
|
|
|
|
defineExpose({
|
|
init,
|
|
edit,
|
|
disableSubmit,
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
/**隐藏样式-modal确定按钮 */
|
|
.jee-hidden {
|
|
display: none !important;
|
|
}
|
|
</style>
|