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

84 lines
1.3 KiB

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