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

163 lines
2.9 KiB

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