processedDetail.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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>[2020]HP第DZ4104号人工督查单</text>
  17. </view>
  18. <view>
  19. <text>事件未处理测试</text>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 基本信息end -->
  24. <!-- 处理信息start -->
  25. <view class="processStatus">
  26. <view class="info-tit margin-left-xs">
  27. <text class="cuIcon-titles margin-right-xs"></text>
  28. 处理信息
  29. </view>
  30. <view class="info-content">
  31. <view class="info-one-info ">
  32. <text>处理账号/电话:</text>
  33. <text>13262908435</text>
  34. </view>
  35. <view>
  36. <text>处理时间:</text>
  37. <text>2021-01-18 18:00:00</text>
  38. </view>
  39. <view>
  40. <text>处理内容:</text>
  41. <text>测试</text>
  42. </view>
  43. </view>
  44. </view>
  45. <!-- 处理状态end -->
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. radio: 'A',
  54. radio: 'B',
  55. modalName: null,
  56. type: '0',
  57. detailMessage:{},
  58. detailMessage2:{}
  59. }
  60. },
  61. onLoad: function(option) {
  62. },
  63. methods: {
  64. submit() {
  65. uni.makePhoneCall({
  66. phoneNumber: '15122423833' //仅为示例
  67. });
  68. },
  69. RadioChange(e) {
  70. this.radio = e.detail.value
  71. },
  72. textareaAInput(e) {
  73. this.textareaAValue = e.detail.value
  74. },
  75. }
  76. }
  77. </script>
  78. <style lang="scss">
  79. .timeBox {
  80. height: 88rpx;
  81. background: #EFF4FF;
  82. line-height: 88rpx;
  83. .time {
  84. color: #333
  85. }
  86. }
  87. .info-tit {
  88. color: #4074E7;
  89. line-height: 90rpx;
  90. height: 90rpx;
  91. }
  92. // 基本信息
  93. .info-content>view {
  94. margin-left: 24rpx;
  95. border-bottom: 1px solid #EDEDED;
  96. line-height: 92rpx;
  97. color: #666;
  98. }
  99. .info-content view text:first-child {
  100. width: 160rpx;
  101. display: inline-block
  102. }
  103. </style>