This commit is contained in:
3321822538@qq.com 2024-06-14 20:46:37 +08:00
parent e5608a0ad1
commit cb037e4e5e
4 changed files with 31 additions and 20 deletions

View File

@ -7,6 +7,12 @@
<view class="wz"> <view class="wz">
该设备还剩余时长{{expireTimeStr + 1}}分钟 该设备还剩余时长{{expireTimeStr + 1}}分钟
</view> </view>
<view class="wz" v-if="deviceobj.storeContactMobile == null">
联系客服<text @click="call">{{deviceobj.userMobile}}</text>
</view>
<view class="wz" v-else>
联系客服<text @click="call">{{deviceobj.storeContactMobile}}</text>
</view>
</view> </view>
<view class="box"> <view class="box">
<view class="tit"> <view class="tit">
@ -36,15 +42,18 @@
套餐说明 套餐说明
</view> </view>
<view class=""> <view class="" style="margin-top: 30rpx;">
{{item.description == null ? '无' : item.description}} <textarea
</view> :readonly="isReadOnly"
<view class="wz" v-if="deviceobj.storeContactMobile == null"> v-model="item.description == null ? '无' : item.description"
联系客服<text style="color: #8883F0;" @click="call">{{deviceobj.userMobile}}</text> id="myTextarea"
</view> cols="30"
<view class="wz" v-else> rows="10"
联系客服<text style="color: #8883F0;" @click="call">{{deviceobj.storeContactMobile}}</text> style="pointer-events: none;"
></textarea>
<!-- <textarea name="" v-model="item.description == null ? '无' : item.description" id="" cols="30" rows="10"></textarea> -->
</view> </view>
</view> </view>
<view class="tongyi"> <view class="tongyi">
@ -558,7 +567,7 @@
color: #fff; color: #fff;
margin-bottom: 30rpx; margin-bottom: 30rpx;
margin-top: 110rpx; margin-top: 110rpx;
height: 200rpx;
.wz { .wz {
font-weight: 400; font-weight: 400;
font-size: 32rpx; font-size: 32rpx;
@ -573,7 +582,7 @@
border-radius: 0rpx 0rpx 0rpx 0rpx; border-radius: 0rpx 0rpx 0rpx 0rpx;
padding: 36rpx 54rpx; padding: 36rpx 54rpx;
box-sizing: border-box; box-sizing: border-box;
border-radius: 30rpx 30rpx 0 0;
.tongyi { .tongyi {
width: 590rpx; width: 590rpx;
position: fixed; position: fixed;
@ -603,7 +612,7 @@
.shuom { .shuom {
width: 648rpx; width: 648rpx;
height: 230rpx; max-height: 100%;
background: #FFFFFF; background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1); box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
filter: blur(0px); filter: blur(0px);
@ -619,11 +628,13 @@
margin-top: 30rpx; margin-top: 30rpx;
} }
}
.wz { .wz {
font-size: 28rpx; font-size: 28rpx;
color: #383838; color: #ccc;
margin-top: 30rpx; margin-top: 30rpx;
} font-weight: 400;
} }
.list_val { .list_val {

View File

@ -437,7 +437,7 @@
padding: 30rpx; padding: 30rpx;
box-sizing: border-box; box-sizing: border-box;
width: 680rpx; width: 680rpx;
height: 376rpx; height: 320rpx;
background: #FFFFFF; background: #FFFFFF;
border-radius: 24rpx 24rpx 24rpx 24rpx; border-radius: 24rpx 24rpx 24rpx 24rpx;
margin-top: 24rpx; margin-top: 24rpx;

View File

@ -19,7 +19,7 @@
<view class="title" style="margin-top: 50rpx;"> <view class="title" style="margin-top: 50rpx;">
详细说明 详细说明
</view> </view>
<input type="text" v-model="description" placeholder="输入说明解释" /> <textarea v-model="description" placeholder="输入说明解释" auto-height="true" />
</view> </view>
<view class="trues" @click="btnadd"> <view class="trues" @click="btnadd">
{{title}} {{title}}
@ -185,7 +185,7 @@
.list { .list {
width: 654rpx; width: 654rpx;
height: 728rpx; max-height: 100%;
background: #FFFFFF; background: #FFFFFF;
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1); box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
filter: blur(0px); filter: blur(0px);

View File

@ -9,7 +9,7 @@
<text>{{item.name}}{{item.value}}分钟</text> <text>{{item.price}}</text> <text>{{item.name}}{{item.value}}分钟</text> <text>{{item.price}}</text>
</view> </view>
<view class="bumday"> <view class="bumday">
<text class="shi">{{item.description}}</text></text> <text class="shi">{{item.description.length > 20 ? item.description.substring(0, 20) + '...' : item.description}}</text></text>
</view> </view>
</view> </view>
</u-swipe-action> </u-swipe-action>