AdwebProductModal.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <j-modal :title="title" :width="width" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
  3. <AdwebProductForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></AdwebProductForm>
  4. </j-modal>
  5. </template>
  6. <script lang="ts" setup>
  7. import { ref, nextTick, defineExpose } from 'vue';
  8. import AdwebProductForm from './AdwebProductForm.vue'
  9. import JModal from '/@/components/Modal/src/JModal/JModal.vue';
  10. const title = ref<string>('');
  11. const width = ref<number>(800);
  12. const visible = ref<boolean>(false);
  13. const disableSubmit = ref<boolean>(false);
  14. const registerForm = ref();
  15. const emit = defineEmits(['register', 'success']);
  16. /**
  17. * 新增
  18. */
  19. function add() {
  20. title.value = '新增';
  21. visible.value = true;
  22. nextTick(() => {
  23. registerForm.value.add();
  24. });
  25. }
  26. /**
  27. * 编辑
  28. * @param record
  29. */
  30. function edit(record) {
  31. title.value = disableSubmit.value ? '详情' : '编辑';
  32. visible.value = true;
  33. nextTick(() => {
  34. registerForm.value.edit(record);
  35. });
  36. }
  37. /**
  38. * 确定按钮点击事件
  39. */
  40. function handleOk() {
  41. registerForm.value.submitForm();
  42. }
  43. /**
  44. * form保存回调事件
  45. */
  46. function submitCallback() {
  47. handleCancel();
  48. emit('success');
  49. }
  50. /**
  51. * 取消按钮回调事件
  52. */
  53. function handleCancel() {
  54. visible.value = false;
  55. }
  56. defineExpose({
  57. add,
  58. edit,
  59. disableSubmit,
  60. });
  61. </script>
  62. <style lang="less">
  63. /**隐藏样式-modal确定按钮 */
  64. .jee-hidden {
  65. display: none !important;
  66. }
  67. </style>
  68. <style lang="less" scoped></style>