|
@@ -121,7 +121,10 @@
|
|
|
/>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="distinguish-button"> <view class="button" @click="confirmDistinguish">确定</view> </view>
|
|
|
+ <view class="distinguish-button">
|
|
|
+ <view class="button cancel" @click.stop="this.$api.navigateBack(1)">取消</view>
|
|
|
+ <view class="button confirm" @click="confirmDistinguish">确定</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<!-- 时间组件 -->
|
|
|
<tui-datetime
|
|
@@ -574,17 +577,24 @@ page {
|
|
|
margin-top: 100rpx;
|
|
|
box-sizing: border-box;
|
|
|
padding: 0 50rpx;
|
|
|
-
|
|
|
+ display: flex;
|
|
|
.button {
|
|
|
- width: 100%;
|
|
|
+ flex: 1;
|
|
|
height: 80rpx;
|
|
|
- background: $btn-confirm;
|
|
|
+ margin: 0 20rpx;
|
|
|
border-radius: 40rpx;
|
|
|
text-align: center;
|
|
|
color: #ffffff;
|
|
|
line-height: 80rpx;
|
|
|
font-size: $font-size-28;
|
|
|
box-shadow: 0 10rpx 14rpx 0 rgba(86, 119, 252, 0.2);
|
|
|
+ &.confirm{
|
|
|
+ background: $btn-confirm;
|
|
|
+ }
|
|
|
+ &.cancel{
|
|
|
+ background: $btn-cancel;
|
|
|
+ color: #999999;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|