distributiondetil.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="OutermostLayer">
  3. <u-cell-group>
  4. <u-cell icon="integral-fill" title="任务名称" value="电力设备监测" >
  5. <u-icon slot="icon" size="40" name="order"></u-icon>
  6. </u-cell>
  7. <u-cell icon="integral-fill" title="办结日期" value="2023-05-15" >
  8. <u-icon slot="icon" size="40" name="calendar"></u-icon>
  9. </u-cell>
  10. <u-cell icon="integral-fill" title="任务类型" value="监测" >
  11. <u-icon slot="icon" size="40" name="grid"></u-icon>
  12. </u-cell>
  13. <u-cell icon="integral-fill" title="紧急程度" value="一般" >
  14. <u-icon slot="icon" size="40" name="pushpin"></u-icon>
  15. </u-cell>
  16. <u-cell icon="integral-fill" title="办理人员" value="杨刚" >
  17. <u-icon slot="icon" size="40" name="man-add"></u-icon>
  18. </u-cell>
  19. </u-cell-group>
  20. <view class="description">
  21. <view class="taskdetals1">
  22. <u-icon name="list-dot" size="35"></u-icon>
  23. </view>
  24. <view class="taskdetals2">
  25. 请在5月15号之前,把B栋所有楼层的灯光设备检查完毕,并详细记录每层楼道的灯光寿命情况,把损坏的灯泡上报维修部。
  26. </view>
  27. </view>
  28. <view class="guidang">
  29. <view class="queding">
  30. <u-button type="primary" :plain="true" text="返回" @click="returndata"></u-button>
  31. </view>
  32. <view class="queding">
  33. <u-button type="primary" text="修改" @click="editdata"></u-button>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. }
  43. },
  44. methods: {
  45. editdata(){
  46. uni.navigateTo({
  47. url: '/pages/my/Mydistribution/distributionedit/distributionedit'
  48. })
  49. },
  50. returndata(){
  51. uni.navigateBack({
  52. delta: 1
  53. });
  54. },
  55. }
  56. }
  57. </script>
  58. <style>
  59. .description {
  60. display: flex;
  61. align-items: center;
  62. width: 100%;
  63. margin-top: 30rpx;
  64. }
  65. .taskdetals1 {}
  66. .taskdetals2 {
  67. font-size: 25rpx;
  68. padding-left: 15rpx;
  69. }
  70. .guidang {
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center;
  74. margin-top: 40rpx;
  75. padding: 30rpx;
  76. }
  77. .queding {
  78. width: 40%;
  79. }
  80. </style>