1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <view class="container clearfix">
- <view class="foot-list">
- <view class="list-cell-item">
- <view class="list-cell" @click="navigator('/pages/login/password')" hover-class="cell-hover" :hover-stay-time="50">
- <text class="cell-tit">修改密码</text>
- <text class="cell-more iconfont icon-xiayibu"></text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import authorize from '@/common/config/authorize.js'
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
-
- },
- methods:{
- navigator(url){
- this.$api.navigateTo(url)
- }
- }
- }
- </script>
- <style lang='scss'>
- page {
- height: auto;
- }
- page,.container{
- /* padding-bottom: 120upx; */
- background: #F7F7F7;
- 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:$text-color;
- margin-left:10rpx;
- }
- .cell-tit{
- flex: 1;
- font-size: $font-size-28;
- color: $text-color;
- margin-right:10rpx;
- }
- .cell-tip{
- font-size: $font-size-28;
- color: $text-color;
- }
- }
- .list-cell.last{
- border-bottom: none;
- }
- </style>
|