Blame view

juvenile-prosecution-vue/src/components/jeecg/JFormContainer.vue 1.56 KB
6c637641   wxy   no message
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  <template>
    <div :class="disabled?'jeecg-form-container-disabled':''">
      <fieldset :disabled="disabled">
        <slot name="detail"></slot>
      </fieldset>
      <slot name="edit"></slot>
      <fieldset disabled>
        <slot></slot>
      </fieldset>
    </div>
  </template>
  
  <script>
    /**
     * 使用方法
     * 在form下直接写这个组件就行了,
     *<a-form layout="inline" :form="form" >
     *     <j-form-container :disabled="true">
     *         <!-- 表单内容省略..... -->
     *     </j-form-container>
     *</a-form>
     */
    export default {
      name: 'JFormContainer',
      props:{
        disabled:{
          type:Boolean,
          default:false,
          required:false
        }
      },
      mounted(){
        console.log("我是表单禁用专用组件,但是我并不支持表单中iframe的内容禁用")
      }
    }
  </script>
  <style>
    .jeecg-form-container-disabled{
      cursor: not-allowed;
    }
    .jeecg-form-container-disabled fieldset[disabled] {
      -ms-pointer-events: none;
      pointer-events: none;
    }
    .jeecg-form-container-disabled .ant-select{
      -ms-pointer-events: none;
      pointer-events: none;
    }
  
    .jeecg-form-container-disabled .ant-upload-select{display:none}
    .jeecg-form-container-disabled .ant-upload-list{cursor:grabbing}
    .jeecg-form-container-disabled fieldset[disabled] .ant-upload-list{
      -ms-pointer-events: auto !important;
      pointer-events: auto !important;
    }
  
    .jeecg-form-container-disabled .ant-upload-list-item-actions .anticon-delete,
    .jeecg-form-container-disabled .ant-upload-list-item .anticon-close{
      display: none;
    }
  </style>