123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <template>
- <view class="content-wrap">
- <!-- 收货地址 -->
- <view v-if="!state.data.address" class="address-lane">
- <view class="title">请选择或新增收货地址</view>
- <view style="margin-top: 30rpx" class="action">
- <button type="default" class="button" @click="state.show = true">
- 添加收货地址
- </button>
- </view>
- </view>
- <view v-if="state.data.address" class="address-lane">
- <view class="title">收货地址</view>
- <view @click="state.show = true" class="address-content" style="margin-top: 30rpx">
- <view class="flex">
- <image :showLoading="true" :src="`${$imgUrl}applyCard/location.png`"
- style="width: 48rpx; height: 48rpx">
- </image>
- <view style="margin-left: 18rpx" class="">
- <view class="address">
- {{ state.data.region + state.data.address }}
- </view>
- <view style="margin-top: 15rpx" class="flex">
- <view class="name">
- {{ state.data.consignee }}
- </view>
- <view class="phone">
- {{ state.data.consigneeTel }}
- </view>
- </view>
- </view>
- </view>
- <view class="arror">
- <image :src="`${$imgUrl}common/arror-right.png`" class="icon"></image>
- </view>
- </view>
-
- <view style="margin-top: 30rpx" class="action">
- <button type="default" class="button" @click="nextAction()">
- 下一步
- </button>
- </view>
- </view>
-
- </view>
- <u-popup mode="bottom" v-model="state.show">
- <view class="address-line">
- <view v-if="state.addressArray" v-for="(item, index) in state.addressArray" :key="index"
- @click="addressSelected(item)" style="margin-bottom: 60rpx" class="flex-bettwen">
- <view class="flex">
- <view class="xing">
- {{ item.consignee.charAt(0) }}
- </view>
- <view class="content">
- <view class="flex">
- <view class="name">
- {{ item.consignee }}
- </view>
- <view class="phone">
- {{ item.consigneeTel }}
- </view>
- </view>
- <view class="address">
- {{ item.region + item.address }}
- </view>
- </view>
- </view>
- <view @click.stop="editAddress(item)" style="margin-left: 80rpx" class="picture">
- <image :showLoading="true" :src="`${$imgUrl}applyCard/edit.png`"
- style="width: 48rpx; height: 48rpx"></image>
- </view>
- </view>
- <view :style="state.addressArray ? 'margin-top: 60rpx;' : ''" class="action-bottom">
- <button type="default" class="button" @click="goToAddAddress()">
- 添加收货地址
- </button>
- </view>
- </view>
- </u-popup>
- </template>
-
- <script setup lang="ts">
- import {
- reactive
- } from "vue";
- import {
- getItem,
- StorageKeys
- } from "@/utils/storage";
- import {
- stringToJson
- } from "@/utils/network/encryption";
- import {
- addressQuery,
- gongWuSupplementObu
- } from "@/utils/network/api.js";
- import {
- request
- } from "@/utils/network/request.js";
- import {
- onLoad,
- onShow
- } from "@dcloudio/uni-app";
- import {
- navTo,
- confirm,
- msg
- } from "@/utils/utils";
- onLoad((option) => {
- state.data.openId = getItem(StorageKeys.OpenId);
- state.data.vehicleId = option.vehicleId;
- state.data.deptId = option.deptId;
- });
- onShow(() => {
- var data = {
- openId: getItem(StorageKeys.OpenId),
- };
- const options = {
- type: 2,
- data: data,
- method: "POST",
- showLoading: true,
- };
- request(addressQuery, options).then((res) => {
- console.log(res);
- const data = stringToJson(res.bizContent);
- state.addressArray = data.data;
- });
- });
- const state = reactive({
- data: {
- openId: "",
- orderSource: "WECHAT",
- receiveMethod: 0,
- deptId: 0,
- vehicleId: "",
- consignee: "", //收货人
- consigneeTel: "", //收货电话
- region: "",
- address: "",
- postalCode: "",
- postCode: "",
- area: "",
- },
- show: false,
- addressArray: undefined,
- });
- const addressSelected = (val: any) => {
- console.log(val);
- state.data = {
- ...state.data,
- ...val,
- };
- state.data.postCode = val.postalCode;
- state.data.area = val.region;
- state.show = false;
- };
- const goToAddAddress = () => {
- uni.navigateTo({
- url: "/subpackage/orders/addAddress",
- });
- };
- const editAddress = (val) => {
- uni.navigateTo({
- url: `/subpackage/orders/editAddress?content=` + JSON.stringify(val),
- });
- };
-
- const nextAction = () => {
- console.log("下一步");
- console.log(state.data);
-
- const options = {
- type: 2,
- data: state.data,
- method: "POST",
- showLoading: true,
- };
- request(gongWuSupplementObu, options).then((res) => {
- console.log(res);
- const result = stringToJson(res.bizContent);
- if (result?.orderId) {
- // console.log(888888888);
- navTo("/subpackage/orders/order-details-obu?id=" + result.orderId)
- } else if (res.statusCode == 600) {
- msg(res.errorMsg)
- setTimeout(()=>{
- uni.switchTab({
- url: "/pages/order/order"
- })
- },2000)
-
-
- } else {
- msg("信息提交错误")
- }
- });
- }
- </script>
-
- <style lang="scss">
- page {
- background: #EEF7F7;
- }
-
- .flex {
- display: flex;
- align-items: center;
- }
-
- .content-wrap {
- position: relative;
- padding: 50rpx 30rpx;
-
- .title {
- font-size: 30rpx;
- font-family: Noto Sans S Chinese;
- font-weight: bold;
- color: #000000;
- line-height: 30rpx;
- margin-bottom: 30rpx;
- }
-
- .car-input {}
-
- .chepai-lane {
- margin-top: 60rpx;
- margin-bottom: 20rpx;
- }
-
- .address-lane {
- margin-bottom: 30rpx;
-
- .title {
- font-size: 30rpx;
- font-weight: bold;
- color: #000000;
- line-height: 30rpx;
- }
- }
- }
-
- .address-content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 30rpx;
- border-bottom: 1rpx solid #dcdcdc;
-
- .name {
- font-size: 26rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- font-size: 26rpx;
- }
-
- .phone {
- font-size: 26rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 26rpx;
- margin-left: 20rpx;
- }
-
- .arror .icon {
- width: 36rpx;
- height: 36rpx;
- }
-
- .address {
- font-size: 32rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 32rpx;
- }
- }
-
- .address-line {
- padding: 20px;
-
- .flex-bettwen {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
-
- .xing {
- width: 68rpx;
- height: 68rpx;
- background: rgba(0, 179, 139, 0.2);
- border-radius: 50%;
- font-size: 26rpx;
- font-weight: 400;
- color: #00b38b;
- line-height: 68rpx;
- text-align: center;
- }
-
- .content {
- margin-left: 20px;
-
- .name {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 500;
- color: #333333;
- }
-
- .phone {
- margin-left: 10rpx;
- font-size: 24rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 36rpx;
- }
-
- .address {
- margin-top: 10rpx;
- font-size: 26rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 36rpx;
- }
-
- .picture {
- width: 48rpx;
- height: 48rpx;
- }
-
- .editIcon {
- width: 48rpx;
- height: 48rpx;
- }
- }
- }
-
- .action {
- padding-bottom: 100rpx;
-
- .button {
- height: 80rpx;
- background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #ffffff;
- line-height: 80rpx;
- }
- }
-
- .action-bottom {
- padding-bottom: 30rpx;
-
- .button {
- height: 80rpx;
- background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #ffffff;
- line-height: 80rpx;
- }
- }
- </style>
|