77 lines
1.7 KiB
Vue
77 lines
1.7 KiB
Vue
<template>
|
|
<j-modal
|
|
:title="title"
|
|
:maxHeight="400"
|
|
:width="600"
|
|
:visible="visible"
|
|
@ok="handleOk"
|
|
:okButtonProps="{ class: { 'jee-hidden': disableSubmit } }"
|
|
@cancel="handleCancel"
|
|
cancelText="关闭"
|
|
>
|
|
<ResendTesAgvForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></ResendTesAgvForm>
|
|
<template #footer>
|
|
<a-button @click="handleCancel">取消</a-button>
|
|
<a-button :class="{ 'jee-hidden': disableSubmit }" type="primary" @click="handleOk">确认 </a-button>
|
|
</template>
|
|
</j-modal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, nextTick, defineExpose } from 'vue';
|
|
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
|
|
import ResendTesAgvForm from '@/views/agvTask/components/ResendTesAgvForm.vue';
|
|
|
|
const title = ref<string>('');
|
|
const visible = ref<boolean>(false);
|
|
const disableSubmit = ref<boolean>(false);
|
|
const registerForm = ref();
|
|
const emit = defineEmits(['register', 'success']);
|
|
|
|
/**
|
|
* 重送
|
|
*/
|
|
function resend(record) {
|
|
title.value = 'TES任务重送';
|
|
visible.value = true;
|
|
nextTick(() => {
|
|
registerForm.value.edit(record);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 确定按钮点击事件
|
|
*/
|
|
function handleOk() {
|
|
registerForm.value.submitForm();
|
|
}
|
|
|
|
/**
|
|
* form保存回调事件
|
|
*/
|
|
function submitCallback() {
|
|
handleCancel();
|
|
emit('success');
|
|
}
|
|
|
|
/**
|
|
* 取消按钮回调事件
|
|
*/
|
|
function handleCancel() {
|
|
visible.value = false;
|
|
}
|
|
|
|
defineExpose({
|
|
resend,
|
|
disableSubmit,
|
|
});
|
|
</script>
|
|
|
|
<style lang="less">
|
|
/**隐藏样式-modal确定按钮 */
|
|
.jee-hidden {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
<style lang="less" scoped></style>
|