Browse Source

样式优化

master
邓平艺 5 years ago
parent
commit
1d79c1c6c6
  1. 6
      pages.json
  2. 3
      pages/find/find.vue
  3. 2
      pages/my/exclusiveMatch.vue
  4. 2
      pages/my/index.vue
  5. 2
      pages/my/memberVip.vue
  6. 2
      pages/my/service.vue
  7. 2
      pages/my/welfare.vue
  8. 48
      pages/test/test.vue

6
pages.json

@ -150,6 +150,12 @@
"style": {
"navigationBarTitleText": "私人定制"
}
},
{
"path": "pages/test/test",
"style": {
"navigationBarTitleText": "测试专用"
}
}
],
"globalStyle": {

3
pages/find/find.vue

@ -192,6 +192,9 @@
position: fixed;
right: 32rpx;
bottom: 40rpx;
/* #ifdef H5 */
bottom: 140rpx;
/* #endif */
width: 100rpx;
height: 100rpx;
background-color: #E21196;

2
pages/my/exclusiveMatch.vue

@ -60,7 +60,7 @@
width: 100%;
height: 210rpx;
position: relative;
z-index: -1;
z-index: 1;
}
.pure_top::after {

2
pages/my/index.vue

@ -133,6 +133,8 @@
.head-top {
width: 100%;
height: 562rpx;
position: relative;
z-index: 9;
/* background-color: red; */
}

2
pages/my/memberVip.vue

@ -98,6 +98,8 @@
.head-top {
width: 100%;
height: 562rpx;
position: relative;
z-index: 9;
/* background-color: red; */
}

2
pages/my/service.vue

@ -64,7 +64,7 @@
width: 100%;
height: 210rpx;
position: relative;
z-index: -1;
z-index: 1;
}
.pure_top::after {

2
pages/my/welfare.vue

@ -74,7 +74,7 @@
width: 100%;
height: 210rpx;
position: relative;
z-index: -1;
z-index: 1;
}
.pure_top::after {

48
pages/test/test.vue

@ -0,0 +1,48 @@
<template>
<view class="content">
<view class="item" :class="{'max-item': item == 0}" v-for="item in 6"></view>
</view>
</template>
<style>
page{
background-color: #F6F6F6;
}
</style>
<script>
export default {
data(){
return {
}
},
onLoad(){
},
methods: {
}
}
</script>
<style lang="scss" scoped="scoped">
.content{
width: 750rpx;
height: max-content;
background-color: #FFFFFF;
box-sizing: border-box;
padding: 27rpx;
overflow: hidden;
.item{
width: 222rpx;
height: 222rpx;
background-color: #DD6161;
float: left;
margin: 5rpx;
}
.max-item{
width: 454rpx;
height: 454rpx;
}
}
</style>
Loading…
Cancel
Save