自主项目,食堂系统,前端uniapp
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.

121 lines
3.0 KiB

  1. <template>
  2. <view>
  3. <view class="lf-row-center lf-flex-column head">
  4. <image src="../../../static/logo.png"></image>
  5. <view class="lf-m-t-20 lf-font-32 lf-font-bold lf-color-black">李青云</view>
  6. <view class="lf-font-28 lf-color-555 lf-m-t-10">食堂阿姨</view>
  7. </view>
  8. <view class="list">
  9. <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/purchase/launch')">
  10. <view class="lf-row-center">
  11. <image class="icon-img" src="../../../static/logo.png"></image>
  12. <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">发起采购</text>
  13. </view>
  14. <view>
  15. <u-icon name="arrow-right"></u-icon>
  16. </view>
  17. </view>
  18. <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/purchase/order')">
  19. <view class="lf-row-center">
  20. <image class="icon-img" src="../../../static/logo.png"></image>
  21. <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">采购记录</text>
  22. </view>
  23. <view>
  24. <u-icon name="arrow-right"></u-icon>
  25. </view>
  26. </view>
  27. <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/delivery/apply')">
  28. <view class="lf-row-center">
  29. <image class="icon-img" src="../../../static/logo.png"></image>
  30. <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">申请出库</text>
  31. </view>
  32. <view>
  33. <u-icon name="arrow-right"></u-icon>
  34. </view>
  35. </view>
  36. <view class="lf-row-between list-item" hover-class="lf-opacity" @click="$url('/pages/canteen/delivery/order')">
  37. <view class="lf-row-center">
  38. <image class="icon-img" src="../../../static/logo.png"></image>
  39. <text class="lf-text-vertical lf-m-l-20 lf-font-28 lf-color-black">出库记录</text>
  40. </view>
  41. <view>
  42. <u-icon name="arrow-right"></u-icon>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="btn-bottom exit">
  47. <button class="lf-w-100" @click="$msg('敬请期待...')">退出登录</button>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data(){
  54. return {
  55. }
  56. },
  57. onLoad(){
  58. },
  59. methods: {
  60. }
  61. }
  62. </script>
  63. <style>
  64. page{
  65. background-color: #F6F6F6;
  66. }
  67. </style>
  68. <style lang="scss" scoped="scoped">
  69. .head{
  70. height: 374rpx;
  71. width: 750rpx;
  72. background-color: #FFFFFF;
  73. image{
  74. width: 200rpx;
  75. height: 200rpx;
  76. border: 2rpx solid #FFFFFF;
  77. border-radius: 50%;
  78. }
  79. }
  80. .list{
  81. margin-top: 20rpx;
  82. padding: 0 32rpx;
  83. background-color: #FFFFFF;
  84. width: 100%;
  85. height: auto;
  86. }
  87. .list-item{
  88. border-bottom: 1rpx solid #EEEEEE;
  89. height: 110rpx;
  90. box-sizing: border-box;
  91. position: relative;
  92. .icon-img{
  93. width: 50rpx;
  94. height: 50rpx;
  95. }
  96. .feedback-btn{
  97. position: absolute;
  98. width: 100%;
  99. height: 100%;
  100. z-index: 1;
  101. background: transparent;
  102. }
  103. &:last-child{
  104. border-bottom: none;
  105. }
  106. }
  107. .exit{
  108. padding: 0 32rpx;
  109. bottom: 50rpx;
  110. box-sizing: border-box;
  111. button{
  112. background-color: #f0f0f0;
  113. color: #777777;
  114. }
  115. }
  116. </style>