oiling-detail.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <view style="padding-top: 50rpx">
  3. <view class="mx3 my2 p3 bg-color-white" style="border-radius: 16rpx">
  4. <view class="d-flex py3 border-bottom">
  5. <view class="f-size-26 text-color-9 w200">状态</view>
  6. <view class="f-size-26 text-color-3">待加油</view>
  7. </view>
  8. <view class="d-flex py3 border-bottom">
  9. <view class="f-size-26 text-color-9 w200">设备名称</view>
  10. <view class="f-size-26 text-color-3">挖掘机</view>
  11. </view>
  12. <view class="d-flex py3 border-bottom">
  13. <view class="f-size-26 text-color-9 w200">设备编号</view>
  14. <view class="f-size-26 text-color-3">SB20200608160000006</view>
  15. </view>
  16. <view class="d-flex py3 border-bottom">
  17. <view class="f-size-26 text-color-9 w200">仓库名称</view>
  18. <view class="f-size-26 text-color-3">塔波拉30公里项目-油库1</view>
  19. </view>
  20. <view class="d-flex py3 border-bottom">
  21. <view class="f-size-26 text-color-9 w200">申请人</view>
  22. <view class="f-size-26 text-color-3">超级管理员</view>
  23. </view>
  24. <view class="d-flex py3 border-bottom">
  25. <view class="f-size-26 text-color-9 w200">申请油量</view>
  26. <view class="f-size-26 text-color-3">100 L</view>
  27. </view>
  28. <view class="d-flex py3 border-bottom">
  29. <view class="f-size-26 text-color-9 w200">实际加油油量</view>
  30. <view class="f-size-26 text-color-3">100 L</view>
  31. </view>
  32. <view class="d-flex py3">
  33. <view class="f-size-26 text-color-9 w200">申请说明</view>
  34. <view
  35. class="f-size-26 text-color-3 ml-3"
  36. >您的加油申请已完成您的加油申请已完成。单号 yt-001,请验收。</view
  37. >
  38. </view>
  39. </view>
  40. <view class="m3">
  41. <u-button @tap="submit" type="primary" shape="circle">修改</u-button>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {};
  49. },
  50. methods: {
  51. submit() {
  52. uni.navigateTo({
  53. url: '../oiling-add/oiling-add'
  54. });
  55. }
  56. }
  57. };
  58. </script>
  59. <style>
  60. page {
  61. background-color: #f4f4f4;
  62. }
  63. .w200 {
  64. width: 200rpx;
  65. }
  66. </style>