AdwebEnquirySiteRuleModal.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <a-drawer :title="title" :width="width" placement="right" :closable="false" @close="close" v-model:open="visible">
  3. <adweb-enquiry-site-rule-form ref="realFormRef" @ok="submitCallback" :disabled="disableSubmit" normal />
  4. <div class="drawer-footer">
  5. <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0">提交</a-button>
  6. </div>
  7. </a-drawer>
  8. </template>
  9. <script lang="ts" setup name="AdwebEnquirySiteRuleModal">
  10. import AdwebEnquirySiteRuleForm from './AdwebEnquirySiteRuleForm.vue';
  11. import { nextTick, ref } from 'vue';
  12. const title = ref('title');
  13. const width = ref(800);
  14. const visible = ref(false);
  15. const disableSubmit = ref(false);
  16. const realFormRef = ref();
  17. const emit = defineEmits(['close', 'ok']);
  18. function add() {
  19. visible.value = true;
  20. nextTick().then(() => {
  21. realFormRef.value.add();
  22. });
  23. }
  24. function edit(record) {
  25. visible.value = true;
  26. nextTick().then(() => {
  27. realFormRef.value.edit(record);
  28. });
  29. }
  30. function close() {
  31. emit('close');
  32. visible.value = false;
  33. }
  34. function submitCallback() {
  35. emit('ok');
  36. visible.value = false;
  37. }
  38. function handleOk() {
  39. realFormRef.value.submitForm();
  40. nextTick().then(() => {
  41. emit('ok');
  42. });
  43. }
  44. function handleCancel() {
  45. close();
  46. }
  47. defineExpose({ title, disableSubmit, add, edit });
  48. </script>
  49. <style lang="less" scoped>
  50. /** Button按钮间距 */
  51. .ant-btn {
  52. margin-left: 30px;
  53. margin-bottom: 30px;
  54. float: right;
  55. }
  56. .drawer-footer {
  57. position: absolute;
  58. bottom: 0;
  59. width: 100%;
  60. border-top: 1px solid #e8e8e8;
  61. padding: 10px 16px;
  62. text-align: right;
  63. left: 0;
  64. background: #fff;
  65. border-radius: 0 0 2px 2px;
  66. }
  67. .ant-drawer-open {
  68. deep(.ant-drawer-content) {
  69. overflow: inherit;
  70. .side_close_btn {
  71. position: absolute;
  72. left: -60px;
  73. top: calc(50% - 60px);
  74. .ant-btn {
  75. margin: 0;
  76. width: 60px;
  77. height: 60px;
  78. border-radius: 0;
  79. }
  80. }
  81. }
  82. }
  83. </style>