123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <template>
- <view class="page">
- <view class="goods-detail">
- <view class="order-num">
- <text>订单号:</text>
- <text>{{ orderDetail.order_no }}</text>
- </view>
- <view class="detail" v-for="item in orderDetail.goods">
- <image class="order-img" :src="item.goods_image" mode=""></image>
- <view class="detail-right">
- <view class="title-price">
- <view class="title"> {{ item.goods_name }} </view>
- <view class="price">
- <text style="font-size: 20rpx">¥</text>
- <text>{{ item.amount.split(".")[0] }}</text
- >.
- <text style="font-size: 20rpx">{{
- item.amount.split(".")[1]
- }}</text>
- </view>
- </view>
- <view class="specifications">
- <view class="title"> {{ item.sku_item.item }} </view>
- <text>x{{ item.goods_num }}</text>
- </view>
- </view>
- </view>
- <view class="address" v-if="!isShow">
- <view class="name-address">
- {{
- orderDetail.address_name.split("")[0] +
- "**,***********," +
- orderDetail.full_address
- }}
- </view>
- <image
- class="eye-icon"
- @click="showContent"
- src="../../static/mine/347.png"
- mode=""
- ></image>
- </view>
- <view class="address" v-else>
- <view class="name-address">
- {{
- orderDetail.address_name +
- "," +
- orderDetail.address_mobile +
- "," +
- orderDetail.full_address
- }}
- </view>
- <u-icon name="eye" @click="showContent"></u-icon>
- </view>
- </view>
- <view class="express">
- <view class="_input-1 _input-2">
- <view class="_label">运单号</view>
- <u--input
- placeholder="请输入运单号或扫码获取"
- border="none"
- clearable
- ></u--input>
- <image
- @click="scanningNumber"
- class="scanning-icon"
- src="../../static/mine/348.png"
- mode=""
- ></image>
- </view>
- <view class="_input-1">
- <view class="_label">物流公司</view>
- <u--input
- placeholder="请输入物流公司"
- border="none"
- clearable
- ></u--input>
- </view>
- </view>
- <view class="footer">
- <button class="status-2">立即发货</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- orderDetail: {},
- isShow: false,
- };
- },
- onLoad(options) {
- this.getDetail(options.id);
- },
- methods: {
- //扫描二维码
- scanningNumber() {
- let _this = this;
- //获取手机权限
- uni.authorize({
- scope: "scope.camera",
- success() {
- _this.scanQrCode();
- },
- fail() {
- //用户拒绝授权
- uni.showToast({
- title: "您拒绝了授权",
- icon: "none",
- });
- },
- });
- },
- //扫描条形码
- scanQrCode() {
- uni.scanCode({
- success(res) {
- if (res.result) {
- } else {
- uni.showToast({
- title: "扫描失败",
- icon: "none",
- });
- }
- },
- fail() {
- uni.showToast({
- title: "调用相机失败",
- icon: "none",
- });
- },
- });
- },
- //显示隐藏内容
- showContent() {
- this.isShow = !this.isShow;
- },
- //获取页面基础信息
- getDetail(id) {
- uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
- this.orderDetail = res;
- });
- },
- },
- mounted() {
- uni.setNavigationBarTitle({
- title: "立即发货",
- });
- },
- };
- </script>
- <style lang="scss" scoped>
- .page {
- padding: 20rpx 24rpx;
- .goods-detail {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 26rpx 20rpx;
- .order-num {
- font-size: 26rpx;
- color: #333;
- }
- .detail {
- margin-top: 28rpx;
- display: flex;
- padding-bottom: 20rpx;
- border-bottom: 2rpx solid #f4f4f4;
- .order-img {
- width: 180rpx;
- height: 180rpx;
- border-radius: 10rpx;
- margin-right: 20rpx;
- }
- .detail-right {
- width: 70%;
- .title-price {
- display: flex;
- font-size: 28rpx;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .title {
- width: 330rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .specifications {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- color: #777;
- margin-top: 10rpx;
- .title {
- width: 330rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- }
- }
- .address {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 20rpx;
- .name-address {
- font-size: 26rpx;
- color: #333;
- width: 72%;
- }
- .eye-icon {
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- .express {
- border-radius: 16rpx;
- background-color: #fff;
- padding: 0 20rpx;
- margin-top: 20rpx;
- ._input-1 {
- display: flex;
- align-items: center;
- height: 100rpx;
- ._label {
- font-size: 28rpx;
- color: #222;
- margin-right: 32rpx;
- width: 120rpx;
- }
- .scanning-icon {
- width: 32rpx;
- height: 32rpx;
- }
- }
- ._input-2 {
- border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
- }
- }
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- background-color: #fff;
- // display: flex;
- // justify-content: flex-end;
- // align-items: center;
- padding-top: 20rpx;
- padding-bottom: 80rpx;
- height: 66rpx;
- width: 100%;
- .status-2 {
- background-color: #f83224;
- border-radius: 34rpx;
- font-size: 28rpx;
- color: #fff;
- height: 68rpx;
- border: 2rpx solid #f83224;
- margin: 0 24rpx;
- line-height: 68rpx;
- padding: 0 34rpx;
- }
- }
- </style>
|