diagramLast.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view>
  3. <view class="material ">
  4. <view class="content_table">
  5. <view class="item">
  6. <view class="lable rx-cc">工序名称</view>
  7. <view class="content">
  8. {{item.taskNameLast}}
  9. </view>
  10. </view>
  11. <view class="item ">
  12. <view class="lable rx-cc">合格数量</view>
  13. <view class="content rx-sc">
  14. <view>{{ item.formedNum }}</view>
  15. <view class="unit">{{ item.unit }}</view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. props: {
  25. item: {
  26. type: Object,
  27. default: () => {}
  28. },
  29. },
  30. watch: {
  31. },
  32. data() {
  33. return {
  34. }
  35. },
  36. created() {
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .material {
  44. margin-top: 40rpx;
  45. .content_table {
  46. width: 100%;
  47. border: 2rpx solid $border-color;
  48. .item {
  49. display: flex;
  50. border-bottom: 2rpx solid $border-color;
  51. .lable {
  52. width: 156rpx;
  53. text-align: center;
  54. background-color: #F7F9FA;
  55. font-size: 26rpx;
  56. border-right: 2rpx solid $border-color;
  57. flex-shrink: 0;
  58. }
  59. .lable150 {
  60. width: 156rpx !important;
  61. font-size: 24rpx;
  62. }
  63. .ww80 {
  64. width: 80rpx;
  65. }
  66. .content {
  67. width: 518rpx;
  68. min-height: 64rpx;
  69. font-size: 28rpx;
  70. line-height: 28rpx;
  71. font-style: normal;
  72. font-weight: 400;
  73. padding: 18rpx 8rpx;
  74. box-sizing: border-box;
  75. word-wrap: break-word;
  76. flex-grow: 1 !important;
  77. .unit {
  78. padding: 0 4rpx;
  79. font-size: 24rpx;
  80. color: #404446;
  81. }
  82. .penalize {
  83. width: 200rpx;
  84. line-height: 60rpx;
  85. background: $theme-color;
  86. font-size: 24rpx;
  87. text-align: center;
  88. color: #fff;
  89. }
  90. }
  91. .pd4 {
  92. padding: 4rpx 8rpx;
  93. }
  94. &:last-child {
  95. border-bottom: none;
  96. }
  97. }
  98. .ww55 {
  99. width: 55%;
  100. }
  101. .ww45 {
  102. width: 45%;
  103. }
  104. }
  105. }
  106. </style>