aaa
This commit is contained in:
parent
e5608a0ad1
commit
cb037e4e5e
|
@ -7,6 +7,12 @@
|
|||
<view class="wz">
|
||||
该设备还剩余时长:{{expireTimeStr + 1}}分钟
|
||||
</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 class="box">
|
||||
<view class="tit">
|
||||
|
@ -36,15 +42,18 @@
|
|||
套餐说明
|
||||
</view>
|
||||
|
||||
<view class="">
|
||||
{{item.description == null ? '无' : item.description}}
|
||||
</view>
|
||||
<view class="wz" v-if="deviceobj.storeContactMobile == null">
|
||||
联系客服:<text style="color: #8883F0;" @click="call">{{deviceobj.userMobile}}</text>
|
||||
</view>
|
||||
<view class="wz" v-else>
|
||||
联系客服:<text style="color: #8883F0;" @click="call">{{deviceobj.storeContactMobile}}</text>
|
||||
<view class="" style="margin-top: 30rpx;">
|
||||
<textarea
|
||||
:readonly="isReadOnly"
|
||||
v-model="item.description == null ? '无' : item.description"
|
||||
id="myTextarea"
|
||||
cols="30"
|
||||
rows="10"
|
||||
style="pointer-events: none;"
|
||||
></textarea>
|
||||
<!-- <textarea name="" v-model="item.description == null ? '无' : item.description" id="" cols="30" rows="10"></textarea> -->
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="tongyi">
|
||||
|
@ -558,7 +567,7 @@
|
|||
color: #fff;
|
||||
margin-bottom: 30rpx;
|
||||
margin-top: 110rpx;
|
||||
|
||||
height: 200rpx;
|
||||
.wz {
|
||||
font-weight: 400;
|
||||
font-size: 32rpx;
|
||||
|
@ -573,7 +582,7 @@
|
|||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||||
padding: 36rpx 54rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
border-radius: 30rpx 30rpx 0 0;
|
||||
.tongyi {
|
||||
width: 590rpx;
|
||||
position: fixed;
|
||||
|
@ -603,7 +612,7 @@
|
|||
|
||||
.shuom {
|
||||
width: 648rpx;
|
||||
height: 230rpx;
|
||||
max-height: 100%;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
||||
filter: blur(0px);
|
||||
|
@ -619,11 +628,13 @@
|
|||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
.wz {
|
||||
font-size: 28rpx;
|
||||
color: #383838;
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
}
|
||||
.wz {
|
||||
font-size: 28rpx;
|
||||
color: #ccc;
|
||||
margin-top: 30rpx;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.list_val {
|
||||
|
|
|
@ -437,7 +437,7 @@
|
|||
padding: 30rpx;
|
||||
box-sizing: border-box;
|
||||
width: 680rpx;
|
||||
height: 376rpx;
|
||||
height: 320rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
||||
margin-top: 24rpx;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<view class="title" style="margin-top: 50rpx;">
|
||||
详细说明
|
||||
</view>
|
||||
<input type="text" v-model="description" placeholder="输入说明解释" />
|
||||
<textarea v-model="description" placeholder="输入说明解释" auto-height="true" />
|
||||
</view>
|
||||
<view class="trues" @click="btnadd">
|
||||
{{title}}
|
||||
|
@ -185,7 +185,7 @@
|
|||
|
||||
.list {
|
||||
width: 654rpx;
|
||||
height: 728rpx;
|
||||
max-height: 100%;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
||||
filter: blur(0px);
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<text>{{item.name}}({{item.value}}分钟)</text> <text>¥{{item.price}}</text>
|
||||
</view>
|
||||
<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>
|
||||
</u-swipe-action>
|
||||
|
|
Loading…
Reference in New Issue
Block a user