processedDetail.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <view>
  3. <view class="timeBox flex justify-between align-center padding-lr-sm">
  4. <view class="time">2021-01-18 15:16:45</view>
  5. <button class="cu-btn radius bg-green sm">已处理</button>
  6. </view>
  7. <view >
  8. <!-- 基本信息start -->
  9. <view class="basic-info">
  10. <view class="info-tit margin-left-xs">
  11. <text class="cuIcon-titles margin-right-xs"></text>
  12. 基本信息
  13. </view>
  14. <view class="info-content">
  15. <view class="info-one-info ">
  16. <text>设备名称:</text>
  17. <text>三楼赛特威尔测试烟感二</text>
  18. </view>
  19. <view>
  20. <text>设备地址:</text>
  21. <text>上海市青浦区徐泾镇徐乐路208号</text>
  22. </view>
  23. <view>
  24. <text>告警信息:</text>
  25. <text>烟雾拆卸报警</text>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- 基本信息end -->
  30. <!-- 处理信息start -->
  31. <view class="processStatus">
  32. <view class="info-tit margin-left-xs">
  33. <text class="cuIcon-titles margin-right-xs"></text>
  34. 处理信息
  35. </view>
  36. <view class="info-content">
  37. <view class="info-one-info ">
  38. <text>是否误报:</text>
  39. <text>非误报</text>
  40. </view>
  41. <view>
  42. <text>处理人:</text>
  43. <text>13895656565</text>
  44. </view>
  45. <view>
  46. <text>处理时间:</text>
  47. <text>2021-01-18 18:00:00</text>
  48. </view>
  49. <view>
  50. <text>处理内容:</text>
  51. <text>测试</text>
  52. </view>
  53. </view>
  54. </view>
  55. <!-- 处理状态end -->
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. export default {
  61. data() {
  62. return {
  63. radio: 'A',
  64. radio: 'B',
  65. modalName: null,
  66. type: '0',
  67. detailMessage:{},
  68. detailMessage2:{}
  69. }
  70. },
  71. onLoad: function(option) {
  72. },
  73. methods: {
  74. submit() {
  75. uni.makePhoneCall({
  76. phoneNumber: '15122423833' //仅为示例
  77. });
  78. },
  79. RadioChange(e) {
  80. this.radio = e.detail.value
  81. },
  82. textareaAInput(e) {
  83. this.textareaAValue = e.detail.value
  84. },
  85. }
  86. }
  87. </script>
  88. <style lang="scss">
  89. .timeBox {
  90. height: 88rpx;
  91. background: #EFF4FF;
  92. line-height: 88rpx;
  93. .time {
  94. color: #333
  95. }
  96. }
  97. .info-tit {
  98. color: #4074E7;
  99. line-height: 90rpx;
  100. height: 90rpx;
  101. }
  102. // 基本信息
  103. .info-content>view {
  104. margin-left: 24rpx;
  105. border-bottom: 1px solid #EDEDED;
  106. line-height: 92rpx;
  107. color: #666;
  108. }
  109. .info-content view text:first-child {
  110. width: 160rpx;
  111. display: inline-block
  112. }
  113. </style>