|
@@ -38,9 +38,9 @@
|
|
|
@tap="goDetail(item.id)">
|
|
|
<view class="cu-avatar lg" style="background-image:url(../../../static/unprocessIcon.png);">
|
|
|
</view>
|
|
|
- <view class="content">
|
|
|
+ <view class="content" style="width:460rpx">
|
|
|
<view class="pro-title">
|
|
|
- <view class="cut">{{item.site_name}}</view>
|
|
|
+ <view class="cut inOneLine">{{item.site_name}}</view>
|
|
|
</view>
|
|
|
<view class="pro-date ">{{item.start_time}}</view>
|
|
|
</view>
|
|
@@ -59,25 +59,25 @@
|
|
|
<!-- 执行中 -->
|
|
|
<block v-if="TabCur==1">
|
|
|
<view style=" height: calc(100vh - 400rpx);overflow: scroll;">
|
|
|
- <view class="cu-list menu-avatar ">
|
|
|
- <view class="cu-item" :class="modalName=='move-box-'+ index?'move-cur':''"
|
|
|
+ <view class="cu-list menu-avatar eleDoing">
|
|
|
+ <view class="cu-item " :class="modalName=='move-box-'+ index?'move-cur':''"
|
|
|
@touchstart="ListTouchStart" @touchmove="ListTouchMove" @touchend="ListTouchEnd"
|
|
|
:data-target="'move-box-' + index" v-for="(item,index) in planListData" :key="index"
|
|
|
@tap="goDetail(item.id)">
|
|
|
<view class="cu-avatar lg" style="background-image:url(../../../static/processingIcon.png);">
|
|
|
</view>
|
|
|
- <view class="content">
|
|
|
+ <view class="content" style="width:460rpx">
|
|
|
<view class="pro-title">
|
|
|
- <view class="cut">{{item.site_name}}</view>
|
|
|
+ <view class="cut inOneLine">{{item.site_name}}</view>
|
|
|
</view>
|
|
|
<view class="pro-date ">{{item.start_time}}</view>
|
|
|
</view>
|
|
|
<view class="action" style="z-index:99">
|
|
|
<view class="processing" @tap="goProcessedDetail(item.id)">执行中</view>
|
|
|
</view>
|
|
|
- <view class="move">
|
|
|
- <view class="bg-grey" @click.stop="editItem(item)">编辑</view>
|
|
|
- <view class="bg-red" @click.stop="deleteItem(item)">删除</view>
|
|
|
+ <view class="move" style="width: 66px;" >
|
|
|
+ <view class="bg-grey"@click.stop="editItem(item)">编辑</view>
|
|
|
+ <!-- <view class="bg-red" @click.stop="deleteItem(item)">删除</view> -->
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="text-center margin-top" v-if="planListData.length === 0">暂无数据...</view>
|
|
@@ -91,9 +91,9 @@
|
|
|
<view class="cu-item" v-for="(item,index) in planListData" :key="index" @tap="goDetail(item.id)">
|
|
|
<view class="cu-avatar lg" style="background-image:url(../../../static/processedIcon.png);">
|
|
|
</view>
|
|
|
- <view class="content">
|
|
|
+ <view class="content" style="width:460rpx">
|
|
|
<view class="pro-title">
|
|
|
- <view class="cut">{{item.site_name}}</view>
|
|
|
+ <view class="cut inOneLine">{{item.site_name}}</view>
|
|
|
</view>
|
|
|
<view class="pro-date ">{{item.start_time}}</view>
|
|
|
</view>
|
|
@@ -283,4 +283,8 @@
|
|
|
color: #4274E7
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .cu-list.eleDoing>.cu-item.move-cur {
|
|
|
+ -webkit-transform: translateX(-66px);
|
|
|
+ }
|
|
|
</style>
|