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

80 lines
1.3 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view class="Urgent-Work-List" @click="$emit('click')">
  3. <view class="Work-List">
  4. <view class="label">
  5. 任务号
  6. </view>
  7. <view class="text">
  8. {{ obj.taskNo }}
  9. </view>
  10. </view>
  11. <view class="Work-List">
  12. <view class="label">
  13. 担当信息
  14. </view>
  15. <view class="text">
  16. {{ obj.responsibler }}
  17. </view>
  18. </view>
  19. <view class="Work-List">
  20. <view class="label">
  21. 机型信息
  22. </view>
  23. <view class="text">
  24. {{ obj.model }}
  25. </view>
  26. </view>
  27. <view class="Work-List">
  28. <view class="label">
  29. 数量
  30. </view>
  31. <view class="text">
  32. {{ obj.number }}
  33. </view>
  34. </view>
  35. <view class="Work-List">
  36. <view class="label">
  37. 工单状态
  38. </view>
  39. <view class="text">
  40. {{ obj.statusId_dictText }}
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. name: "WorkOrderitem",
  48. props : {
  49. obj : {}
  50. },
  51. data() {
  52. return {
  53. };
  54. }
  55. }
  56. </script>
  57. <style scoped lang="scss">
  58. .Urgent-Work-List{
  59. margin: 30rpx 0;
  60. box-shadow: 0 0 10rpx 10rpx #00000009;
  61. border-radius: 25rpx;
  62. padding: 15rpx;
  63. background-color: #fff;
  64. font-size: 28rpx;
  65. .Work-List{
  66. display: flex;
  67. padding: 20rpx 0rpx;
  68. .label{
  69. width: 150rpx;
  70. flex-shrink: 0;
  71. }
  72. }
  73. }
  74. </style>