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

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