Administrator
2021-06-22 ee7a99184338ee5d7b4d9712706aeb6af6e15b43
components/pColumn/pColumn.vue
@@ -6,7 +6,14 @@
               <view class="t-type">{{Pdata.alarmType}} </view>
               <view class="t-id"> 警单编号:{{Pdata.id}}</view>
            </view>
            <view class="bottom">{{Pdata.place}}</view>
            <view class="image-time">
               <image src="../../static/images/pColumn/alarm.png"></image>
               <view class="t-time"> {{Pdata.alarmTime}}</view>
            </view>
            <view class="image-place">
               <image src="../../static/images/pColumn/position-bule.png"></image>
               <view class="place">{{Pdata.place}}</view>
            </view>
         </view>
         <view class="right">
            <button type="default" @click="PClick">{{fromW == 0?'详情':fromW == 1?'接受':""}}</button>
@@ -109,6 +116,8 @@
   .inPColumn,
   .left,
   .right,
   .image-time,
   .image-place,
   .top {
      display: flex;
   }
@@ -120,9 +129,10 @@
      padding-top: 0.8rem;
      .inPColumn {
         // background-color: #00BFFF;
         margin: 0.2rem 0 0.4rem 0;
         width: 95%;
         height: 4rem;
         height: 5rem;
         border-bottom: 1px rgb(207, 207, 207) solid;
         align-items: center;
         justify-content: space-between;
@@ -136,6 +146,7 @@
               .t-type {
                  font-size: 1.1rem;
                  color: #ff0000;
                  letter-spacing: 1px;
               }
            
               .t-id {
@@ -147,9 +158,42 @@
               }
            }
            .bottom {
               font-size: 0.9rem;
            .image-time{
               align-items: center;
               height: 30px;
               image{
                  width: 35rpx;
                  height: 35rpx;
               }
               .t-time{
                  font-size: 0.8rem;
                  color: #808080;
                  height: 20rpx;
                  line-height: 20rpx;
                  margin-left: 15rpx;
               }
            }
            .image-place{
               align-items: center;
               height: 20px;
               image{
                  width: 35rpx;
                  height: 35rpx;
               }
               .place {
                  font-size: 0.8rem;
                  margin-left: 15rpx;
                  color: #808080;
                  height: 20rpx;
                  line-height: 20rpx;
               }
            }
         }
         .right {