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

137 lines
2.3 KiB

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