AdwebEnquirySiteRuleModal__Style.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-site-rule-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></adweb-enquiry-site-rule-form>
  10. <div class="drawer-footer">
  11. <a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
  12. </div>
  13. <div class="side_close_btn">
  14. <a-button type="primary" icon="close" size="large" @click="handleCancel" />
  15. </div>
  16. </a-drawer>
  17. </template>
  18. <script>
  19. import AdwebEnquirySiteRuleForm from './AdwebEnquirySiteRuleForm'
  20. export default {
  21. name: 'AdwebEnquirySiteRuleModal',
  22. components: {
  23. AdwebEnquirySiteRuleForm
  24. },
  25. data () {
  26. return {
  27. title:"操作",
  28. width:800,
  29. visible: false,
  30. disableSubmit: false
  31. }
  32. },
  33. methods: {
  34. add () {
  35. this.visible=true
  36. this.$nextTick(()=>{
  37. this.$refs.realForm.add();
  38. })
  39. },
  40. edit (record) {
  41. this.visible=true
  42. this.$nextTick(()=>{
  43. this.$refs.realForm.edit(record);
  44. });
  45. },
  46. close () {
  47. this.$emit('close');
  48. this.visible = false;
  49. },
  50. submitCallback(){
  51. this.$emit('ok');
  52. this.visible = false;
  53. },
  54. handleOk () {
  55. this.$refs.realForm.submitForm();
  56. },
  57. handleCancel () {
  58. this.close()
  59. }
  60. }
  61. }
  62. </script>
  63. <style lang="less" scoped>
  64. /** Button按钮间距 */
  65. .ant-btn {
  66. margin-left: 30px;
  67. margin-bottom: 30px;
  68. float: right;
  69. }
  70. .drawer-footer{
  71. position: absolute;
  72. bottom: 0;
  73. width: 100%;
  74. border-top: 1px solid #e8e8e8;
  75. padding: 10px 16px;
  76. text-align: right;
  77. left: 0;
  78. background: #fff;
  79. border-radius: 0 0 2px 2px;
  80. }
  81. .ant-drawer-open{
  82. /deep/ .ant-drawer-content{
  83. overflow: inherit;
  84. .side_close_btn{
  85. position: absolute;
  86. left: -60px;
  87. top: calc(50% - 60px);
  88. .ant-btn{
  89. margin: 0;
  90. width: 60px;
  91. height: 60px;
  92. border-radius: 0;
  93. }
  94. }
  95. }
  96. }
  97. </style>