123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <template>
- <view>
- <view class="addr_item">
- <view class="contact_user" style="display: flex; justify-content: space-between; width: 100%">
- <view style="display: flex">
- <text class="contact_name">{{ order_datail.order_addr?.contact_name }}</text>
- <text class="contact_phone">{{ order_datail.order_addr?.contact_phone }}</text>
- </view>
- <view class="contact_shop text-ellipsis" style="width: 250rpx; text-align: end">
- <text v-if="order_datail.order_addr?.shop_type">({{ $CONSTANTS.SHOP_TYPES[order_datail.order_addr?.shop_type] }}) </text>
- {{ order_datail.order_addr?.contact_shop }}
- </view>
- </view>
- <view class="contact_addr"
- >{{ order_datail.order_addr?.contact_province }} {{ order_datail.order_addr?.contact_city }} {{ order_datail.order_addr?.contact_area }} {{ order_datail.order_addr?.contact_addr }}</view
- >
- </view>
- <view class="car_list">
- <view class="business_name"><image src="../../static/icon/shop_fill.png" class="business_icon" /> {{ order_datail?.business_name }}</view>
- <view class="car_item" v-for="(item, index) in order_datail.order_items" :key="index" @click="_navToProduct(item.product_id)">
- <view class="box_left">
- <image class="car_image" :src="item.product_thumb" mode=""></image>
- </view>
- <view class="box_center">
- <view class="car_name">{{ item.product_name }}</view>
- <view class="car_spec">{{ item.product_spec }}</view>
- <view v-if="item.promo_title" class="promo_title">{{ item.promo_title }}</view>
- <view class="car_price">
- <text class="price">¥{{ item.pay_total }}</text>
- </view>
- </view>
- <view class="box_right">
- <view class="buy_num_box">
- <view class="buy_num">共{{ item.buy_num }}件</view>
- </view>
- </view>
- </view>
- </view>
- <view class="price_content">
- <view class="price_content_item">
- <view>订单总价</view>
- <view class="price">¥{{ order_datail?.price_total }}</view>
- </view>
- <view class="price_content_item">
- <view>优惠价格</view>
- <view class="price">¥-{{ order_datail?.coupon_total }}</view>
- </view>
- <view class="price_content_item">
- <view>订单金额</view>
- <view class="price">¥{{ order_datail?.pay_total }}</view>
- </view>
- <view class="price_content_title"></view>
- <view class="price_content_item">
- <view>订单编号</view>
- <view>{{ order_datail?.order_code }}</view>
- </view>
- <view class="price_content_item">
- <view>下单时间</view>
- <view>{{ order_datail?.insert_time }}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- order_datail: {},
- };
- },
- onLoad(param) {
- this._getOrderDetail(param.order_id); // 获取并打印订单详情
- },
- methods: {
- _getOrderDetail(orderId) {
- this.$http
- .request("api/orders/get_detail", { id: orderId })
- .then((response) => {
- if (response.code == "success") {
- this.order_datail = response.data; // 打印订单详情
- }
- })
- .catch((error) => {
- uni.showToast({
- title: "获取订单详情失败",
- icon: "error",
- duration: 2000,
- });
- });
- },
- _navToProduct(id) {
- if (id) {
- uni.navigateTo({
- url: "/pages/product/index?product_id=" + id,
- });
- }
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .addr_item {
- font-size: 24rpx;
- overflow: hidden;
- line-height: 40rpx;
- padding: 20rpx 35rpx;
- border-radius: 15rpx;
- padding-bottom: 0rpx;
- margin-bottom: 10rpx;
- background-color: #ffffff;
- .contact_user {
- font-size: 24rpx;
- line-height: 50rpx;
- .contact_name {
- font-size: 26rpx;
- font-weight: bold;
- margin-right: 16rpx;
- }
- .contact_shop {
- float: right;
- }
- }
- .contact_addr {
- font-size: 24rpx;
- line-height: 30rpx;
- padding: 10rpx 5rpx;
- }
- }
- .car_list {
- display: block;
- overflow: hidden;
- margin: 0rpx auto;
- margin-top: 20rpx;
- background: #ffffff;
- margin-bottom: 20rpx;
- .business_name {
- padding: 8rpx 35rpx;
- border-bottom: 1px solid #f3f3f3;
- font-size: 32rpx;
- z-index: 1;
- display: flex;
- align-items: center;
- .business_icon {
- width: 48rpx;
- height: 48rpx;
- margin-right: 10rpx;
- }
- }
- .car_item {
- height: 170rpx;
- display: block;
- overflow: hidden;
- margin: 0rpx auto;
- padding: 20rpx 35rpx;
- border-bottom: 2rpx solid #dddddd;
- .box_left {
- float: left;
- width: 140rpx;
- height: 190rpx;
- margin-top: 10rpx;
- .car_image {
- width: 140rpx;
- height: 140rpx;
- border-radius: 5rpx;
- }
- }
- .box_center {
- float: left;
- width: 300rpx;
- margin-left: 25rpx;
- .car_name {
- max-height: 70rpx;
- font-size: 30rpx;
- line-height: 40rpx;
- overflow: hidden;
- white-space: nowrap;
- /* 不换行 */
- overflow: hidden;
- /* 隐藏超出的内容 */
- text-overflow: ellipsis;
- /* 用省略号表示被隐藏的部分 */
- }
- .car_spec {
- color: #999999;
- font-size: 24rpx;
- line-height: 60rpx;
- max-height: 60rpx;
- overflow: hidden;
- }
- .promo_title {
- max-height: 80rpx;
- font-size: 20rpx;
- line-height: 40rpx;
- overflow: hidden;
- padding: 0rpx 0rpx;
- color: #dd524d;
- }
- .car_price {
- font-size: 30rpx;
- line-height: 60rpx;
- .price {
- color: red;
- }
- }
- }
- .box_right {
- float: right;
- width: 185rpx;
- .buy_num_box {
- float: right;
- color: #333333;
- overflow: hidden;
- font-size: 24rpx;
- margin-top: 130rpx;
- text-align: center;
- .buy_num {
- float: left;
- width: 100rpx;
- height: 30rpx;
- font-size: 24rpx;
- line-height: 30rpx;
- padding: 0rpx 0rpx;
- border-radius: 8rpx;
- }
- }
- }
- }
- .car_item:last-child {
- border-bottom: none;
- }
- }
- .price_content {
- background-color: #fff;
- bottom: var(--window-bottom);
- padding: 40rpx 35rpx 20rpx;
- width: 100%;
- box-sizing: border-box;
- .price_content_title {
- margin-bottom: 20rpx;
- border-bottom: 1px dashed #f3f3f3;
- }
- .price_content_item {
- margin-bottom: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
- color: #00000073;
- .price {
- color: red;
- }
- }
- }
- </style>
|