AdwebEnquiryRuleModal__Style.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <a-drawer
  3. :title="title"
  4. :width="width"
  5. placement="right"
  6. :closable="false"
  7. @close="close"
  8. :visible="visible">
  9. <adweb-enquiry-rule-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></adweb-enquiry-rule-form>
  10. <div class="drawer-footer">
  11. <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
  12. <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
  13. </div>
  14. </a-drawer>
  15. </template>
  16. <script>
  17. import AdwebEnquiryRuleForm from './AdwebEnquiryRuleForm'
  18. export default {
  19. name: 'AdwebEnquiryRuleModal',
  20. components: {
  21. AdwebEnquiryRuleForm
  22. },
  23. data () {
  24. return {
  25. title:"操作",
  26. width:800,
  27. visible: false,
  28. disableSubmit: false
  29. }
  30. },
  31. methods: {
  32. add () {
  33. this.visible=true
  34. this.$nextTick(()=>{
  35. this.$refs.realForm.add();
  36. })
  37. },
  38. edit (record) {
  39. this.visible=true
  40. this.$nextTick(()=>{
  41. this.$refs.realForm.edit(record);
  42. });
  43. },
  44. close () {
  45. this.$emit('close');
  46. this.visible = false;
  47. },
  48. submitCallback(){
  49. this.$emit('ok');
  50. this.visible = false;
  51. },
  52. handleOk () {
  53. this.$refs.realForm.submitForm();
  54. },
  55. handleCancel () {
  56. this.close()
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="less" scoped>
  62. /** Button按钮间距 */
  63. .ant-btn {
  64. margin-left: 30px;
  65. margin-bottom: 30px;
  66. float: right;
  67. }
  68. .drawer-footer{
  69. position: absolute;
  70. bottom: -8px;
  71. width: 100%;
  72. border-top: 1px solid #e8e8e8;
  73. padding: 10px 16px;
  74. text-align: right;
  75. left: 0;
  76. background: #fff;
  77. border-radius: 0 0 2px 2px;
  78. }
  79. </style>