|
| xqd
@@ -48,7 +48,7 @@
|
|
|
<u--textarea v-model="memo"
|
|
|
:customStyle="{'background':'#F4F4F4','border-radius': '0px 32rpx 8rpx 32rpx'}"
|
|
|
placeholder="无" placeholderStyle="color: #555555" height=120
|
|
|
- border="none" :required="true"></u--textarea>
|
|
|
+ border="none" :required="true" disabled="true"></u--textarea>
|
|
|
</view>
|
|
|
|
|
|
<view class="" v-if="state==0">
|
|
| xqd
@@ -76,28 +76,34 @@
|
|
|
<u-form-item label="邮寄地址" prop="userInfo.mail" borderBottom ref="item1" labelWidth="160rpx" :required="true">
|
|
|
<u--input v-model="model1.userInfo.mail" disabledColor="#ffffff" placeholder="无" placeholderStyle="color: #555555" border="none" disabled="true"></u--input>
|
|
|
</u-form-item>
|
|
|
+ <view class="" style="margin: 30rpx 0;">
|
|
|
+ <!-- <text style="color: red;">*</text> -->
|
|
|
+ <text>备注信息(选填)</text>
|
|
|
+ </view>
|
|
|
+ <u--textarea v-model="model1.userInfo.memo" placeholder="无"
|
|
|
+ :customStyle="{'background':'#F4F4F4','border-radius': '0px 32rpx 8rpx 32rpx'}"
|
|
|
+ placeholderStyle="color: #555555" height=120 border="none" disabled="true"></u--textarea>
|
|
|
</view>
|
|
|
|
|
|
- <view class="" style="margin: 30rpx 0;">
|
|
|
- <!-- <text style="color: red;">*</text> -->
|
|
|
- <text>备注信息(选填)</text>
|
|
|
- </view>
|
|
|
- <u--textarea v-model="model1.userInfo.memo" placeholder="无"
|
|
|
- :customStyle="{'background':'#F4F4F4','border-radius': '0px 32rpx 8rpx 32rpx'}"
|
|
|
- placeholderStyle="color: #555555" height=120 border="none"></u--textarea>
|
|
|
+
|
|
|
</u--form>
|
|
|
</view>
|
|
|
<view class="bottomall">
|
|
|
- <text>开票套餐:</text>
|
|
|
+ <text>开票订单:</text>
|
|
|
<view v-for="(item,index) in model1.userInfo.orders" :key="index" class="boxfls">
|
|
|
-
|
|
|
- <view class="bomimgbox">
|
|
|
- <image :src="item.cover_picture" mode="aspectFill"></image>
|
|
|
+ <view style="display: flex;flex-direction: row;align-items: center;margin-bottom: 10rpx;font-size: 26rpx;">
|
|
|
+ <text>订单号:{{item.code}}</text>
|
|
|
+ <text class="copytype" @click="copyTap(item.code)">复制</text>
|
|
|
+ </view>
|
|
|
+ <view style="display: flex;flex-direction: row;">
|
|
|
+ <view class="bomimgbox">
|
|
|
+ <image :src="item.cover_picture" mode="aspectFill"></image>
|
|
|
+ </view>
|
|
|
+ <view class="goodsinfo">
|
|
|
+ <text style="font-size: 32rpx;">{{item.good_name}}</text>
|
|
|
+ <text>X{{item.number}}</text>
|
|
|
+ <text>¥{{item.amount}}</text>
|
|
|
</view>
|
|
|
- <view class="goodsinfo">
|
|
|
- <text style="font-size: 32rpx;">{{item.good_name}}</text>
|
|
|
- <text>X{{item.number}}</text>
|
|
|
- <text>¥{{item.amount}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
| xqd
@@ -202,7 +208,14 @@
|
|
|
delta:1
|
|
|
})
|
|
|
},
|
|
|
-
|
|
|
+ copyTap(code){
|
|
|
+ uni.setClipboardData({
|
|
|
+ data: code,
|
|
|
+ success: function () {
|
|
|
+ },
|
|
|
+
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
}
|
|
|
</script>
|
|
| xqd
@@ -220,9 +233,15 @@
|
|
|
padding: 40rpx;
|
|
|
margin-top: 10rpx;
|
|
|
font-size: 26rpx;
|
|
|
+ .copytype{
|
|
|
+ padding: 5rpx 10rpx;
|
|
|
+ border: 1rpx solid #000;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ margin-left: 20rpx;
|
|
|
+ }
|
|
|
.boxfls{
|
|
|
display: flex;
|
|
|
- flex-direction: row;
|
|
|
+ // flex-direction: row;
|
|
|
margin-top: 20rpx;
|
|
|
}
|
|
|
.bomimgbox{
|