|
@@ -58,9 +58,9 @@
|
|
|
<no-data></no-data>
|
|
|
</block>
|
|
|
<!-- 弹窗 -->
|
|
|
- <view class="lmtac">
|
|
|
+ <view class="lmtac" :class="upflag?'upbox':''">
|
|
|
<view class="flex1 table">
|
|
|
- <view class="upimg">
|
|
|
+ <view class="upimg" @click="upflag=!upflag">
|
|
|
<image :src="upsimg"></image>
|
|
|
</view>
|
|
|
<view class="flex1" style="overflow-y: auto;">
|
|
@@ -127,6 +127,7 @@
|
|
|
jbtxt:'',
|
|
|
jbidx:'',
|
|
|
title:'',
|
|
|
+ upflag:false,
|
|
|
}
|
|
|
},
|
|
|
onLoad(e) {
|
|
@@ -333,7 +334,13 @@ font-size: 28rpx;color: #666666;
|
|
|
// 弹窗
|
|
|
.lmtac{padding: 0 22rpx 40rpx;box-sizing: border-box;display: flex;flex-direction: column;
|
|
|
position: fixed;left: 0;right: 0;bottom: 0;background: #FFFFFF;height:412rpx;
|
|
|
-box-shadow: 0px 12rpx 6rpx 0px #EDEDED;
|
|
|
+box-shadow: 0px 12rpx 6rpx 0px #EDEDED;transition: all 0.3s;
|
|
|
+ &.upbox{
|
|
|
+ height: 100vh;
|
|
|
+ .upimg{
|
|
|
+ image{transform: rotate(180deg);}
|
|
|
+ }
|
|
|
+ }
|
|
|
.table{display: flex;flex-direction: column;overflow: hidden;}
|
|
|
.upimg{padding: 20rpx;margin: 0 auto 6rpx;width: 64rpx;flex: 0 0 auto;
|
|
|
image{width: 24rpx;height: 26rpx;}
|
|
@@ -343,7 +350,7 @@ box-shadow: 0px 12rpx 6rpx 0px #EDEDED;
|
|
|
display: flex;align-items: flex-start;font-weight: bold;font-size: 30rpx;
|
|
|
.laber{color: #222327;flex: 0 0 auto;}
|
|
|
.lmame{display: flex;flex-wrap: wrap;flex: 1;
|
|
|
- .tit{color: #1D64E2;display: flex;align-items: center;margin-right: 20rpx;}
|
|
|
+ .tit{color: #1D64E2;display: flex;align-items: center;margin-right: 32rpx;margin-bottom: 12rpx;}
|
|
|
.delimg{
|
|
|
width: 40rpx;height: 40rpx;display: flex;align-items: center;justify-content: center;
|
|
|
image{width: 26rpx;height: 26rpx;margin-left: 12rpx;}
|