67 lines
1.5 KiB
Vue
67 lines
1.5 KiB
Vue
<template>
|
|
<j-modal :title="title" width="70%" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
|
|
<DepartUtilsList ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></DepartUtilsList>
|
|
</j-modal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, nextTick, defineExpose } from 'vue';
|
|
import DepartUtilsList from './ApiLogList.vue'
|
|
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
|
|
|
|
const title = ref<string>('');
|
|
const width = ref<number>(800);
|
|
const visible = ref<boolean>(false);
|
|
const disableSubmit = ref<boolean>(false);
|
|
const registerForm = ref();
|
|
const emit = defineEmits(['register', 'success']);
|
|
|
|
|
|
/**
|
|
* 日志
|
|
* @param record
|
|
*/
|
|
function showApiLog(record) {
|
|
title.value = '日志';
|
|
visible.value = true;
|
|
nextTick(() => {
|
|
registerForm.value.initLog(record);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 确定按钮点击事件
|
|
*/
|
|
function handleOk() {
|
|
registerForm.value.submitForm();
|
|
}
|
|
|
|
/**
|
|
* form保存回调事件
|
|
*/
|
|
function submitCallback(params) {
|
|
handleCancel();
|
|
emit('success',params);
|
|
}
|
|
|
|
/**
|
|
* 取消按钮回调事件
|
|
*/
|
|
function handleCancel() {
|
|
visible.value = false;
|
|
}
|
|
|
|
defineExpose({
|
|
showApiLog,
|
|
disableSubmit,
|
|
});
|
|
</script>
|
|
|
|
<style lang="less">
|
|
/**隐藏样式-modal确定按钮 */
|
|
.jee-hidden {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
<style lang="less" scoped></style>
|