42 lines
862 B
Vue
42 lines
862 B
Vue
<template>
|
||
<ciy-header ref="header" title="全局z-index层叠关系"></ciy-header>
|
||
<view>
|
||
<view class="ciy-card">
|
||
<view class="title">z-index 规划</view>
|
||
<view class="content" style="line-height:3em;">
|
||
1-9 页内rel<br/>
|
||
10-30 页内fix btnadd 10<br/>
|
||
31-39 组件fix<br/>
|
||
40-49 header/tabbar fix<br/>
|
||
50-60 auth登录?<br/>
|
||
99 captcha<br/>
|
||
100-120 tip/冒泡提示<br/>
|
||
999 腾讯地图默认值<br/>
|
||
50000 header/tabbar 990<br/>
|
||
50010 组件全屏mask 992<br/>
|
||
50020 alert<br/>
|
||
50030 toast<br/>
|
||
</view>
|
||
</view>
|
||
<view class="hr"></view>
|
||
</view>
|
||
</template>
|
||
|
||
<style>
|
||
</style>
|
||
|
||
<script>
|
||
import '@/pages/demo/zdemo.css';
|
||
import zmixin from '@/pages/demo/zmixin.js';
|
||
export default {
|
||
mixins: [zmixin],
|
||
data() {
|
||
return {
|
||
}
|
||
},
|
||
onLoad() {
|
||
},
|
||
methods: {
|
||
}
|
||
}
|
||
</script> |