| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 | 
							- import zIndex from '../behaviors/zIndex';
 
- Component({
 
-   
 
-   behaviors: [zIndex],
 
-   externalClasses: ['l-class','l-mask-class'],
 
-   properties: {
 
-     
 
-     show: {
 
-       type: Boolean,
 
-       value: false
 
-     },
 
-     
 
-     opacity: {
 
-       type: [String, Number],
 
-       value: .4
 
-     },
 
-     
 
-     zIndex: {
 
-       type: Number,
 
-       value: 99,
 
-     },
 
-     
 
-     center: {
 
-       type: Boolean,
 
-       value: false,
 
-     },
 
-     
 
-     locked: {
 
-       type: Boolean,
 
-       value: true
 
-     },
 
-     
 
-     fullScreen: {
 
-       type: String,
 
-       value: ''
 
-     },
 
-     
 
-     NavColor: {
 
-       type: String,
 
-       value: ''
 
-     },
 
-   },
 
-   
 
-   data: {
 
-   },
 
-   
 
-   methods: {
 
-     
 
-     doNothingMove() {
 
-       
 
-     },
 
-     
 
-     onMaskTap() {
 
-       let detail = true;
 
-       let option = { bubbles: true, composed: true };
 
-       if (this.data.locked !== true) {
 
-         this.setData({
 
-           
 
-           show: false,
 
-         });
 
-       }
 
-       this.triggerEvent('lintap', detail, option);
 
-     }
 
-   },
 
-   attached: function () {
 
-   },
 
- });
 
 
  |