You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view> <view class="lf-row-center lf-flex-column head"> <image src="../../../static/logo.png"></image> <view class="lf-m-t-20 lf-font-32 lf-font-bold lf-color-black">李青云</view> <view class="lf-font-28 lf-color-555 lf-m-t-10">食堂阿姨</view> </view> <view class="list"> <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/purchase/launch')"> <view class="lf-row-center"> <image class="icon-img" src="../../../static/logo.png"></image> <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">发起采购</text> </view> <view> <u-icon name="arrow-right"></u-icon> </view> </view> <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/purchase/order')"> <view class="lf-row-center"> <image class="icon-img" src="../../../static/logo.png"></image> <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">采购记录</text> </view> <view> <u-icon name="arrow-right"></u-icon> </view> </view> <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/delivery/apply')"> <view class="lf-row-center"> <image class="icon-img" src="../../../static/logo.png"></image> <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">申请出库</text> </view> <view> <u-icon name="arrow-right"></u-icon> </view> </view> <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/delivery/order')"> <view class="lf-row-center"> <image class="icon-img" src="../../../static/logo.png"></image> <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">出库记录</text> </view> <view> <u-icon name="arrow-right"></u-icon> </view> </view> </view> <view class="btn-bottom exit"> <button class="lf-w-100" @click="$msg('敬请期待...')">退出登录</button> </view> </view></template>
<script> export default { data(){ return { } }, onLoad(){ }, methods: { } }</script>
<style> page{ background-color: #F6F6F6; }</style><style lang="scss" scoped="scoped"> .head{ height: 374rpx; width: 750rpx; background-color: #FFFFFF; image{ width: 200rpx; height: 200rpx; border: 2rpx solid #FFFFFF; border-radius: 50%; } } .list{ margin-top: 20rpx; padding: 0 32rpx; background-color: #FFFFFF; width: 100%; height: auto; } .list-item{ border-bottom: 1rpx solid #EEEEEE; height: 110rpx; box-sizing: border-box; position: relative; .icon-img{ width: 50rpx; height: 50rpx; } .feedback-btn{ position: absolute; width: 100%; height: 100%; z-index: 1; background: transparent; } &:last-child{ border-bottom: none; } } .exit{ padding: 0 32rpx; bottom: 50rpx; box-sizing: border-box; button{ background-color: #f0f0f0; color: #777777; } }</style>
|