12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view class="container clearfix">
- <view class="foot-list">
- <view class="list-cell-item">
- <view class="list-cell" @click="navigator('/pages/service/service?id=1045&title=用户协议')" hover-class="cell-hover" :hover-stay-time="50">
- <text class="cell-tit">用户协议</text>
- <text class="cell-more iconfont icon-xiangyou"></text>
- </view>
- <view class="list-cell" @click="navigator('/pages/service/service?id=1046&title=隐私权政策')" hover-class="cell-hover" :hover-stay-time="50">
- <text class="cell-tit">隐私权政策</text>
- <text class="cell-more iconfont icon-xiangyou"></text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad(option) {
-
- },
- methods:{
- navigator(url){
- this.$api.navigateTo(url)
- }
- },
- onShow() {}
- }
- </script>
- <style lang='scss'>
- page {
- height: auto;
- }
- page,.container{
- /* padding-bottom: 120upx; */
- background: #fff;
- /* border-top: 1px solid #EBEBEB; */
- }
- .foot-list{
- width: 100%;
- margin-top: 30rpx;
- }
- .list-cell-item{
- width: 702rpx;
- height: auto;
- margin-bottom: 24rpx;
- padding:0 24rpx;
- background: $bg-color;
- }
- .list-cell{
- display:flex;
- width: 100%;
- align-items:baseline;
- line-height:100rpx;
- position:relative;
- background: $bg-color;
- justify-content: center;
- border-bottom: 1px solid #EBEBEB;
- &.cell-hover{
- background:#fafafa;
- }
- .cell-more{
- align-self: baseline;
- font-size:$font-size-28;
- color:#b2b2b2;
- margin-left:10rpx;
- .txt{
- color: #999999;
- padding-right: 10rpx;
- }
- }
- .cell-tit{
- flex: 1;
- font-size: $font-size-28;
- color: #666666;
- margin-right:10rpx;
- }
- .cell-tip{
- font-size: $font-size-28;
- color: $text-color;
- }
- }
- .list-cell.last{
- border-bottom: none;
- }
- </style>
|