123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <template>
- <view>
- <view class="timeBox flex justify-between align-center padding-lr-sm">
- <view class="time">2021-01-18 15:16:45</view>
- <button class="cu-btn radius bg-green sm">已处理</button>
- </view>
-
- <view >
- <!-- 基本信息start -->
- <view class="basic-info">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 基本信息
- </view>
- <view class="info-content">
- <view class="info-one-info ">
- <text>[2020]HP第DZ4104号人工督查单</text>
- </view>
-
- <view>
- <text>事件未处理测试</text>
- </view>
-
- </view>
- </view>
- <!-- 基本信息end -->
-
- <!-- 处理信息start -->
- <view class="processStatus">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 处理信息
- </view>
- <view class="info-content">
- <view class="info-one-info ">
- <text>处理账号/电话:</text>
- <text>13262908435</text>
- </view>
- <view>
- <text>处理时间:</text>
- <text>2021-01-18 18:00:00</text>
- </view>
-
- <view>
- <text>处理内容:</text>
- <text>测试</text>
- </view>
- </view>
- </view>
- <!-- 处理状态end -->
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- radio: 'A',
- radio: 'B',
- modalName: null,
- type: '0',
- detailMessage:{},
- detailMessage2:{}
- }
- },
- onLoad: function(option) {
-
-
-
- },
- methods: {
-
- submit() {
- uni.makePhoneCall({
- phoneNumber: '15122423833' //仅为示例
- });
- },
-
- RadioChange(e) {
- this.radio = e.detail.value
- },
- textareaAInput(e) {
- this.textareaAValue = e.detail.value
- },
- }
- }
- </script>
- <style lang="scss">
- .timeBox {
- height: 88rpx;
- background: #EFF4FF;
- line-height: 88rpx;
- .time {
- color: #333
- }
- }
- .info-tit {
- color: #4074E7;
- line-height: 90rpx;
- height: 90rpx;
- }
- // 基本信息
- .info-content>view {
- margin-left: 24rpx;
- border-bottom: 1px solid #EDEDED;
- line-height: 92rpx;
- color: #666;
- }
- .info-content view text:first-child {
- width: 160rpx;
- display: inline-block
- }
- </style>
|