|
@@ -19,16 +19,101 @@
|
|
<!-- 地址 -->
|
|
<!-- 地址 -->
|
|
|
|
|
|
<!-- 需要下单的商品列表 -->
|
|
<!-- 需要下单的商品列表 -->
|
|
- <Commodity :goodsList="goodsList" />
|
|
|
|
|
|
+ <Commodity :goodsList="goodsList" :goodsValue="goodsValue" />
|
|
<!-- 需要下单的商品列表 -->
|
|
<!-- 需要下单的商品列表 -->
|
|
|
|
+
|
|
|
|
+ <!-- 选择物流 -->
|
|
|
|
+ <view class="logistics u-flex u-row-between">
|
|
|
|
+ <text style="font-weight: 600; width: 320rpx">{{ i18n.flow }}</text>
|
|
|
|
+ <view class="u-flex" @click="openLogistics">
|
|
|
|
+ <text class="change">{{
|
|
|
|
+ containname ? transportTypeName + " | " + containname : i18n.selection
|
|
|
|
+ }}</text>
|
|
|
|
+ <u-icon name="arrow-right" size="16"></u-icon>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <!-- 选择物流 -->
|
|
|
|
+
|
|
|
|
+ <!-- 选择物流弹窗 -->
|
|
|
|
+ <SelectLogistics
|
|
|
|
+ :logisticsShow="logisticsShow"
|
|
|
|
+ @closeLogistics="closeLogistics"
|
|
|
|
+ :containerList="containerList"
|
|
|
|
+ :language="language"
|
|
|
|
+ @openContainer="openContainer"
|
|
|
|
+ />
|
|
|
|
+ <!-- 选择物流弹窗 -->
|
|
|
|
+
|
|
|
|
+ <!-- 选择物流价格之后的下一步 -->
|
|
|
|
+ <NextLogistics
|
|
|
|
+ :nextLogisticsShow="nextLogisticsShow"
|
|
|
|
+ :language="language"
|
|
|
|
+ :goodinfo="goodinfo"
|
|
|
|
+ :goodsValue="goodsValue"
|
|
|
|
+ @closeLogistics="closeLogistics"
|
|
|
|
+ />
|
|
|
|
+ <!-- 选择物流价格之后的下一步 -->
|
|
|
|
+
|
|
|
|
+ <!-- 推荐商品 -->
|
|
|
|
+ <RecommendGoods :swiptlist="swiptlist" />
|
|
|
|
+ <!-- 推荐商品 -->
|
|
|
|
+
|
|
|
|
+ <!-- 商品信息 -->
|
|
|
|
+ <GoodsInformation :goodinfo="goodinfo" />
|
|
|
|
+ <!-- 商品信息 -->
|
|
|
|
+
|
|
|
|
+ <view class="btn u-flex u-row-right">
|
|
|
|
+ <view class="u-flex">
|
|
|
|
+ <text class="kg"
|
|
|
|
+ >{{ i18n.Atotalof }}{{ Number(sku_info.weight) * value }}kg,</text
|
|
|
|
+ >
|
|
|
|
+ <text>{{ i18n.total }}:</text>
|
|
|
|
+ <text class="money" style="font-size: 28rpx">¥</text>
|
|
|
|
+
|
|
|
|
+ <view class="">
|
|
|
|
+ <text
|
|
|
|
+ class="money"
|
|
|
|
+ v-if="goodinfo.is_discount == 1"
|
|
|
|
+ style="font-weight: bold"
|
|
|
|
+ >{{
|
|
|
|
+ Number(
|
|
|
|
+ sum * 10000 + Number(sku_info.price) * Number(value) * 10000
|
|
|
|
+ ) / 10000
|
|
|
|
+ }}</text
|
|
|
|
+ >
|
|
|
|
+ <text
|
|
|
|
+ class="money"
|
|
|
|
+ v-if="goodinfo.is_discount == 0"
|
|
|
|
+ style="font-weight: bold"
|
|
|
|
+ >{{
|
|
|
|
+ Number(
|
|
|
|
+ sum * 10000 +
|
|
|
|
+ Number(sku_info.discount_price) * Number(value) * 10000
|
|
|
|
+ ) / 10000
|
|
|
|
+ }}</text
|
|
|
|
+ >
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="order" @click="topay">
|
|
|
|
+ {{ i18n.Submitorder }}
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import Commodity from "./component/commodity.vue";
|
|
import Commodity from "./component/commodity.vue";
|
|
|
|
+import SelectLogistics from "./component/selectLogistics.vue";
|
|
|
|
+import NextLogistics from "./component/nextLogistics.vue";
|
|
|
|
+import RecommendGoods from "./component/recommendGoods.vue";
|
|
|
|
+import GoodsInformation from "./component/goodsInformation.vue";
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
Commodity,
|
|
Commodity,
|
|
|
|
+ SelectLogistics,
|
|
|
|
+ NextLogistics,
|
|
|
|
+ RecommendGoods,
|
|
|
|
+ GoodsInformation,
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -39,6 +124,13 @@ export default {
|
|
transportTypeName: "", //运输方式名称
|
|
transportTypeName: "", //运输方式名称
|
|
swiptlist: [], //推荐商品
|
|
swiptlist: [], //推荐商品
|
|
goodsList: [], //需要下单的商品
|
|
goodsList: [], //需要下单的商品
|
|
|
|
+ logisticsShow: false, //打开选择物流窗口
|
|
|
|
+ language: "", //语言
|
|
|
|
+ nextLogisticsShow: false, //打开选择货柜窗口
|
|
|
|
+ goodinfo: {}, //商品信息
|
|
|
|
+ goodsValue: 0, //商品数量
|
|
|
|
+ sku_info: {},
|
|
|
|
+ containname: "", //货柜名称
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -48,9 +140,56 @@ export default {
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
this.goodsList = JSON.parse(decodeURIComponent(options.goodsList));
|
|
this.goodsList = JSON.parse(decodeURIComponent(options.goodsList));
|
|
- console.log(this.goodsList);
|
|
|
|
|
|
+ this.goodsValue = this.goodsList.order_goods[0].goods_num;
|
|
|
|
+ this.recommend();
|
|
|
|
+ },
|
|
|
|
+ onShow() {
|
|
|
|
+ if (uni.getStorageSync("language") != "") {
|
|
|
|
+ this.language = uni.getStorageSync("language");
|
|
|
|
+ }
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ //关闭选择物流窗口
|
|
|
|
+ closeLogistics(data) {
|
|
|
|
+ this.logisticsShow = false;
|
|
|
|
+ this.nextLogisticsShow = false;
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ //打开选择货柜弹窗
|
|
|
|
+ openContainer(data) {
|
|
|
|
+ this.goodinfo.province_id = this.province_id;
|
|
|
|
+ this.goodinfo.transport_type_id = this.transport_type_id;
|
|
|
|
+ let weight = 0;
|
|
|
|
+ let height = 0;
|
|
|
|
+ let length = 0;
|
|
|
|
+ let price = 0;
|
|
|
|
+ let width = 0;
|
|
|
|
+ console.log(this.goodsList);
|
|
|
|
+ this.goodsList.order_goods.map((item) => {
|
|
|
|
+ console.log(item);
|
|
|
|
+ weight += item.sku_item.weight;
|
|
|
|
+ height += item.sku_item.height;
|
|
|
|
+ length += item.sku_item.length;
|
|
|
|
+ width += item.sku_item.width;
|
|
|
|
+ price += Number(item.sku_item.price);
|
|
|
|
+ this.goodinfo.type = item.goods.status;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ this.goodinfo.weight = weight;
|
|
|
|
+ this.goodinfo.height = height;
|
|
|
|
+ this.goodinfo.length = length;
|
|
|
|
+ this.goodinfo.width = width;
|
|
|
|
+ this.goodinfo.price = price;
|
|
|
|
+ console.log(this.goodinfo);
|
|
|
|
+ this.logisticsShow = false;
|
|
|
|
+ this.nextLogisticsShow = true;
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ //打开选择物流窗口
|
|
|
|
+ openLogistics() {
|
|
|
|
+ this.logisticsShow = true;
|
|
|
|
+ this.transport();
|
|
|
|
+ },
|
|
//跳转到填写地址
|
|
//跳转到填写地址
|
|
toadd() {
|
|
toadd() {
|
|
var that = this;
|
|
var that = this;
|
|
@@ -58,6 +197,7 @@ export default {
|
|
url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
|
|
url: "/pageC/addressManagement/addressManagement?tabs=" + Number(0),
|
|
events: {
|
|
events: {
|
|
getadd(res) {
|
|
getadd(res) {
|
|
|
|
+ console.log(res);
|
|
that.addinfo = res;
|
|
that.addinfo = res;
|
|
that.province_id = res.province_id;
|
|
that.province_id = res.province_id;
|
|
that.transport();
|
|
that.transport();
|
|
@@ -77,18 +217,19 @@ export default {
|
|
.then((res) => {
|
|
.then((res) => {
|
|
this.containerList = res;
|
|
this.containerList = res;
|
|
this.transport_type_id = res[0].id;
|
|
this.transport_type_id = res[0].id;
|
|
|
|
+ this.transportTypeName = res[0].name_cn; //等待后续更改language删除掉
|
|
//根据不同的语言选择不用的类型
|
|
//根据不同的语言选择不用的类型
|
|
if (this.language == "zh-CN") {
|
|
if (this.language == "zh-CN") {
|
|
- this.type = res[0].name_cn;
|
|
|
|
|
|
+ this.transportTypeName = res[0].name_cn;
|
|
}
|
|
}
|
|
if (this.language == "en-US") {
|
|
if (this.language == "en-US") {
|
|
- this.type = res[0].name_en;
|
|
|
|
|
|
+ this.transportTypeName = res[0].name_en;
|
|
}
|
|
}
|
|
if (this.language == "es-ES") {
|
|
if (this.language == "es-ES") {
|
|
- this.type = res[0].name_es;
|
|
|
|
|
|
+ this.transportTypeName = res[0].name_es;
|
|
}
|
|
}
|
|
if (this.language == "it-IT") {
|
|
if (this.language == "it-IT") {
|
|
- this.type = res[0].name_ita;
|
|
|
|
|
|
+ this.transportTypeName = res[0].name_ita;
|
|
}
|
|
}
|
|
})
|
|
})
|
|
.catch(() => {});
|
|
.catch(() => {});
|
|
@@ -151,5 +292,73 @@ export default {
|
|
margin-top: 20rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ //物流
|
|
|
|
+ .logistics {
|
|
|
|
+ width: 702rpx;
|
|
|
|
+ background: #ffffff;
|
|
|
|
+ border-radius: 16rpx;
|
|
|
|
+ padding: 28rpx 22rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ margin-top: 20rpx;
|
|
|
|
+
|
|
|
|
+ .change {
|
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 28rpx;
|
|
|
|
+ color: #f83224;
|
|
|
|
+ line-height: 40rpx;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ margin-right: 8rpx;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .btn {
|
|
|
|
+ width: 750rpx;
|
|
|
|
+ height: 166rpx;
|
|
|
|
+ background: #ffffff;
|
|
|
|
+ box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.05);
|
|
|
|
+ position: fixed;
|
|
|
|
+ bottom: 0;
|
|
|
|
+ left: 0;
|
|
|
|
+ padding: 0 24rpx 5rpx 5rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+
|
|
|
|
+ .money {
|
|
|
|
+ font-family: HarmonyOS_Sans_Medium;
|
|
|
|
+ font-size: 48rpx;
|
|
|
|
+ color: #f83224;
|
|
|
|
+ line-height: 38rpx;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ // font-weight: 500;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .kg {
|
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 34rpx;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .order {
|
|
|
|
+ width: 232rpx;
|
|
|
|
+ height: 80rpx;
|
|
|
|
+ background: #f83224;
|
|
|
|
+ border-radius: 40rpx;
|
|
|
|
+ font-family: PingFangTC, PingFangTC;
|
|
|
|
+ font-weight: 500;
|
|
|
|
+ font-size: 32rpx;
|
|
|
|
+ color: #ffffff;
|
|
|
|
+ line-height: 80rpx;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ margin-left: 20rpx;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|