工单小程序2024-11-20
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.

160 lines
2.8 KiB

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="详情"
  5. leftClick
  6. @leftClick="$utils.navigateBack"
  7. />
  8. <view class="Box">
  9. <view class="work-box">
  10. <view class="works">
  11. 任务号
  12. </view>
  13. <view class="index">
  14. GY1269103AC0
  15. </view>
  16. </view>
  17. <view class="work-box">
  18. <view class="works">
  19. 担当信息
  20. </view>
  21. <view class="index">
  22. 李林珠-15197216688
  23. </view>
  24. </view>
  25. <view class="work-box">
  26. <view class="works">
  27. 机型信息
  28. </view>
  29. <view class="index">
  30. BSZ24861768
  31. </view>
  32. </view>
  33. <view class="work-box">
  34. <view class="works">
  35. 数量
  36. </view>
  37. <view class="index">
  38. 88
  39. </view>
  40. </view>
  41. <view class="work-box">
  42. <view class="works">
  43. 状态
  44. </view>
  45. <view class="index">
  46. 本体加工
  47. </view>
  48. </view>
  49. <view class="work-boxx">
  50. <view class="workss">
  51. 备注
  52. </view>
  53. <view class="indexx">
  54. 备料已完成等待本体加工进入下一步气
  55. 密检测55555555
  56. </view>
  57. </view>
  58. </view>
  59. <view class="working-procedure">
  60. <view class="working" @click="$utils.navigateTo('/pages_order/order/ProcessCardOne')">
  61. 中试压缩机试作工序卡1选配
  62. </view>
  63. <view class="working" @click="$utils.navigateTo('/pages_order/order/ProcessCardTo')">
  64. 中试压缩机试作工序卡2
  65. </view>
  66. <view class="working" @click="$utils.navigateTo('/pages_order/order/ProcessCardThree')">
  67. 中试压缩机试作工序卡2
  68. </view>
  69. <view class="working" @click="$utils.navigateTo('/pages_order/order/ProcessCardFour')">
  70. 中试压缩机试作工序卡4(总成)
  71. </view>
  72. </view>
  73. <view class="modify">
  74. <view class="modi"
  75. @click="$utils.navigateTo('/pages_order/order/ModifyWorkOrder')">
  76. 修改
  77. </view>
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. export default {
  83. data() {
  84. return {
  85. }
  86. },
  87. methods: {
  88. }
  89. }
  90. </script>
  91. <style>
  92. .page {
  93. .Box{
  94. margin-top: 40rpx;
  95. .work-box {
  96. padding: 0rpx 30rpx;
  97. margin: 15rpx 0rpx;
  98. display: flex;
  99. align-items: center;
  100. font-size: 35rpx;
  101. }
  102. .work-boxx {
  103. padding: 0rpx 30rpx;
  104. margin: 15rpx 0rpx;
  105. display: flex;
  106. font-size: 35rpx;
  107. .indexx {
  108. margin-top: 3rpx;
  109. }
  110. .workss {
  111. width: 170rpx;
  112. font-size: 35rpx;
  113. }
  114. }
  115. }
  116. .working-procedure {
  117. text-align: center;
  118. margin-top: 150rpx;
  119. font-size: 35rpx;
  120. .working {
  121. margin: 25rpx 0rpx;
  122. color: rgb(83, 125, 180);
  123. }
  124. }
  125. .modify{
  126. text-align: center;
  127. margin-top: 380rpx;
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. .modi{
  132. padding: 20rpx 60rpx;
  133. background-color:rgb(2 ,167, 240) ;
  134. border-radius: 15rpx;
  135. }
  136. }
  137. }
  138. </style>