morePage.vue 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="morePages">
  3. <view class="list-box">
  4. <view class="list-title">
  5. <u-icon size="38" name="bag"></u-icon> <text>货品管理</text>
  6. </view>
  7. <u-cell-group :border="false">
  8. <u-cell-item title="库存查询" @click="toPage('/pages/stockQuery/stockQuery')" :title-style="{fontSize:'1em'}">
  9. <text slot="icon"></text>
  10. </u-cell-item>
  11. <u-cell-item title="补货记录" @click="toPage('/pages/digitalShelf/stockPut')" :title-style="{fontSize:'1em'}">
  12. <text slot="icon"></text>
  13. </u-cell-item>
  14. </u-cell-group>
  15. </view>
  16. <view class="list-box">
  17. <view class="list-title">
  18. <u-icon size="34" name="order"></u-icon> <text>订单管理</text>
  19. </view>
  20. <u-cell-group :border="false">
  21. <u-cell-item title="货架订单" @click="toPage('/pages/digitalShelf/orderList')" :title-style="{fontSize:'1em'}">
  22. <text slot="icon"></text>
  23. </u-cell-item>
  24. <u-cell-item title="临配订单" :title-style="{fontSize:'1em'}">
  25. <text slot="icon"></text>
  26. </u-cell-item>
  27. </u-cell-group>
  28. </view>
  29. <view class="list-box">
  30. <view class="list-title">
  31. <u-icon size="36" name="rmb-circle"></u-icon> <text>结算管理</text>
  32. </view>
  33. <u-cell-group :border="false">
  34. <u-cell-item title="结算记录" @click="toPage('/pages/digitalShelf/settlementRecord/settlementRecord')" :title-style="{fontSize:'1em'}">
  35. <text slot="icon"></text>
  36. </u-cell-item>
  37. <u-cell-item title="付款结算" @click="toPage('/pages/digitalShelf/settlementManage/settlementManage')" :title-style="{fontSize:'1em'}">
  38. <text slot="icon"></text>
  39. </u-cell-item>
  40. </u-cell-group>
  41. </view>
  42. <view class="list-box">
  43. <view class="list-title flex justify_center phone">
  44. <u-icon size="36" name="phone"></u-icon> <text>联系汽配商</text>
  45. </view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. }
  54. },
  55. methods: {
  56. toPage(path){
  57. uni.navigateTo({
  58. url: path
  59. })
  60. }
  61. }
  62. }
  63. </script>
  64. <style lang="less">
  65. .morePages{
  66. width: 100%;
  67. padding: 30rpx;
  68. background-image: linear-gradient(#86defa 0%,#cdeff9 20%,#f8f8f8 30%);
  69. .list-box{
  70. background: #ffffff;
  71. margin-bottom: 30rpx;
  72. border-radius: 25rpx;
  73. overflow: hidden;
  74. box-shadow: 2rpx 2rpx 5rpx #eee;
  75. .list-title{
  76. padding:30rpx 20rpx;
  77. font-size: 30rpx;
  78. border-bottom: 2rpx solid #f8f8f8;
  79. > text{
  80. margin-left: 10rpx;
  81. }
  82. }
  83. &:first-child{
  84. box-shadow: 2rpx 2rpx 5rpx #cdeff9;
  85. }
  86. }
  87. .phone{
  88. color: #00aaff;
  89. &:active{
  90. opacity: 0.8;
  91. transform:scale(0.9);
  92. }
  93. }
  94. }
  95. </style>