AdwebEnquirySiteRuleModal.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <j-modal
  3. :title="title"
  4. :width="width"
  5. :visible="visible"
  6. switchFullscreen
  7. @ok="handleOk"
  8. :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
  9. @cancel="handleCancel"
  10. cancelText="关闭">
  11. <adweb-enquiry-site-rule-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></adweb-enquiry-site-rule-form>
  12. </j-modal>
  13. </template>
  14. <script>
  15. import AdwebEnquirySiteRuleForm from './AdwebEnquirySiteRuleForm'
  16. export default {
  17. name: 'AdwebEnquirySiteRuleModal',
  18. components: {
  19. AdwebEnquirySiteRuleForm
  20. },
  21. data () {
  22. return {
  23. title:'',
  24. width:800,
  25. visible: false,
  26. disableSubmit: false
  27. }
  28. },
  29. methods: {
  30. add () {
  31. this.visible=true
  32. this.$nextTick(()=>{
  33. this.$refs.realForm.add();
  34. })
  35. },
  36. edit (record) {
  37. this.visible=true
  38. this.$nextTick(()=>{
  39. this.$refs.realForm.edit(record);
  40. })
  41. },
  42. close () {
  43. this.$emit('close');
  44. this.visible = false;
  45. },
  46. handleOk () {
  47. this.$refs.realForm.submitForm();
  48. },
  49. submitCallback(){
  50. this.$emit('ok');
  51. this.visible = false;
  52. },
  53. handleCancel () {
  54. this.close()
  55. }
  56. }
  57. }
  58. </script>