bazaar.vue 965 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="bazaar">
  3. <view class="btn" @click="$goBack(2,'/pages/bazaar/VaseYard/VaseYard')">
  4. <text>瓶码/箱码查询</text>
  5. <uni-icons type="arrow-right" size="20" color='#bcbcbc'></uni-icons>
  6. </view>
  7. <!-- <view class="btn" @click="$goBack(2,'/pages/bazaar/SecurityCode')">
  8. <text>防伪码反查询</text>
  9. <uni-icons type="arrow-right" size="20" color='#bcbcbc'></uni-icons>
  10. </view>
  11. <view class="btn" @click="$goBack(2,'/pages/bazaar/bodyOfBottle/bodyOfBottle')">
  12. <text>瓶身码反查询</text>
  13. <uni-icons type="arrow-right" size="20" color='#bcbcbc'></uni-icons>
  14. </view> -->
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. };
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. .bazaar{
  27. padding: 0 20rpx;
  28. .btn{
  29. padding: 30rpx 0;
  30. display: flex;
  31. align-items: center;
  32. justify-content: space-between;
  33. border-bottom: 1rpx solid #bcbcbc;
  34. &:last-child{
  35. border-bottom: 0;
  36. }
  37. }
  38. }
  39. </style>