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

136 lines
2.2 KiB

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="工单详情" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="Box">
  5. <view class="work-box">
  6. <view class="works">
  7. 任务号
  8. </view>
  9. <view class="index">
  10. GY1269103AC0
  11. </view>
  12. </view>
  13. <view class="work-box">
  14. <view class="works">
  15. 担当信息
  16. </view>
  17. <view class="index">
  18. 李林珠-15197216688
  19. </view>
  20. </view>
  21. <view class="work-box">
  22. <view class="works">
  23. 机型信息
  24. </view>
  25. <view class="index">
  26. BSZ24861768
  27. </view>
  28. </view>
  29. <view class="work-box">
  30. <view class="works">
  31. 数量
  32. </view>
  33. <view class="index">
  34. <uv-input placeholder="88" border="surround" v-model="value" @change="change"></uv-input>
  35. </view>
  36. </view>
  37. <view class="work-box">
  38. <view class="works">
  39. 状态
  40. </view>
  41. <view class="index">
  42. <uv-input placeholder="本体加工" border="surround" v-model="value" @change="change"></uv-input>
  43. </view>
  44. </view>
  45. <view class="work-boxx">
  46. <view class="workss">
  47. 备注
  48. </view>
  49. <view class="indexx">
  50. <uv-input placeholder="备料已完成,等待本体加工,进入下一步气密检测" border="surround"
  51. v-model="value" @change="change"
  52. color="#fff" ></uv-input>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="modify">
  57. <view class="modi">
  58. 保存
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. export default {
  65. data() {
  66. return {
  67. value: ''
  68. }
  69. },
  70. methods: {
  71. change(e) {
  72. console.log('change', e);
  73. }
  74. }
  75. }
  76. </script>
  77. <style>
  78. .page {
  79. .Box {
  80. margin-top: 40rpx;
  81. .work-box {
  82. padding: 0rpx 30rpx;
  83. margin: 15rpx 0rpx;
  84. display: flex;
  85. align-items: center;
  86. font-size: 35rpx;
  87. }
  88. .work-boxx {
  89. padding: 0rpx 30rpx;
  90. margin: 15rpx 0rpx;
  91. display: flex;
  92. font-size: 35rpx;
  93. .indexx {
  94. margin-top: 3rpx;
  95. }
  96. .workss {
  97. font-size: 35rpx;
  98. }
  99. }
  100. }
  101. .modify {
  102. text-align: center;
  103. margin-top: 790rpx;
  104. display: flex;
  105. align-items: center;
  106. justify-content: center;
  107. .modi {
  108. padding: 20rpx 60rpx;
  109. background-color: rgb(2, 167, 240);
  110. border-radius: 15rpx;
  111. }
  112. }
  113. }
  114. </style>