Taskdetails.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view class="OutermostLayer">
  3. <view class="renwu">
  4. <view class="tasktime">
  5. 任务需在5月15号之前完成,当前剩余49天
  6. </view>
  7. <u-divider text="分割线" :dot="true"></u-divider>
  8. <view class="tasktop">
  9. <view class="tasktop1">
  10. <view class="taskdetals1">
  11. <u-icon name="man-add-fill" color="#2979ff" size="35"></u-icon>
  12. </view>
  13. <view class="taskdetals2">
  14. 发布人:李伟
  15. </view>
  16. </view>
  17. <view class="tasktop1">
  18. <view class="taskdetals1">
  19. <u-icon name="calendar-fill" color="#2979ff" size="35"></u-icon>
  20. </view>
  21. <view class="taskdetals2">
  22. 办结日期:2023-05-15
  23. </view>
  24. </view>
  25. <view class="tasktop1">
  26. <view class="taskdetals1">
  27. <u-icon name="bell-fill" color="#2979ff" size="35"></u-icon>
  28. </view>
  29. <view class="taskdetals2">
  30. 紧急程度:一般
  31. </view>
  32. </view>
  33. <view class="tasktop1">
  34. <view class="taskdetals1">
  35. <u-icon name="tags-fill" color="#2979ff" size="35"></u-icon>
  36. </view>
  37. <view class="taskdetals2">
  38. 任务类型:日常性工作
  39. </view>
  40. </view>
  41. </view>
  42. <view class="description">
  43. <view class="taskdetals1">
  44. <u-icon name="file-text-fill" color="#2979ff" size="35"></u-icon>
  45. </view>
  46. <view class="taskdetals2">
  47. 请在5月15号之前,把B栋所有楼层的灯光设备检查完毕,并详细记录每层楼道的灯光寿命情况,把损坏的灯泡上报维修部。
  48. </view>
  49. </view>
  50. <u-divider text="分割线" :dot="true"></u-divider>
  51. <u--textarea v-model="opinion" placeholder="请详细描述反馈" count></u--textarea>
  52. <view class="guidang">
  53. <view class="queding">
  54. <u-button type="primary" text="归档" @click="guidang"></u-button>
  55. </view>
  56. <view class="queding">
  57. <u-button type="primary" :plain="true" text="转办" @click="zhuanban"></u-button>
  58. </view>
  59. </view>
  60. <u-picker :show="show" :itemHeight="80" title='转办人' @cancel='closezb' @confirm="confirm" :columns="columns" keyName="label">
  61. </u-picker>
  62. </view>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. data() {
  68. return {
  69. opinion: '',
  70. show: false,
  71. columns: [
  72. [{
  73. label: '李伟',
  74. id: 2021
  75. }, {
  76. label: '杨刚',
  77. id: 804
  78. }]
  79. ],
  80. }
  81. },
  82. onLoad() {},
  83. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  84. onReady() {},
  85. methods: {
  86. zhuanban() {
  87. this.show = true;
  88. },
  89. closezb() {
  90. this.show = false;
  91. },
  92. confirm(e) {
  93. console.log('confirm', e)
  94. this.show = false;
  95. uni.navigateBack({
  96. delta: 1
  97. });
  98. },
  99. guidang() {
  100. uni.navigateBack({
  101. delta: 1,
  102. });
  103. },
  104. }
  105. }
  106. </script>
  107. <style>
  108. .renwu{
  109. padding: 20rpx;
  110. }
  111. .guidang {
  112. display: flex;
  113. justify-content: space-between;
  114. align-items: center;
  115. margin-top: 40rpx;
  116. }
  117. .queding {
  118. width: 40%;
  119. }
  120. .tasktime {
  121. font-size: 20rpx;
  122. color: #407CF7;
  123. }
  124. .tasktop {
  125. display: flex;
  126. justify-content: space-between;
  127. align-items: center;
  128. flex-wrap: wrap;
  129. }
  130. .tasktop1 {
  131. width: 50%;
  132. height: 50rpx;
  133. display: flex;
  134. align-items: center;
  135. }
  136. .description {
  137. display: flex;
  138. align-items: center;
  139. width: 100%;
  140. margin-top: 10rpx;
  141. }
  142. .taskdetals1 {}
  143. .taskdetals2 {
  144. font-size: 25rpx;
  145. padding-left: 15rpx;
  146. }
  147. .description {
  148. font-size: 25rpx;
  149. }
  150. </style>