feat: 1.修改“货”字;2.优化视频播放;3.优化小班心得和思考题状态显示

更新多个文件中的"收货地址"相关文案为"收件地址",包括页面标题、按钮文字、状态提示等
更新隐私政策文件中"健康超市收货"为"健康超市收件"
更新订单状态相关文案:"待发货"改为"待发出","待收货"改为"待收到","确认收货"改为"确认收到"
更新商品库存状态提示:"无货"改为"无库存"
更新manifest.json版本号为2.0.42
更新edu-core依赖版本为v1.0.8
新增yingbing-video视频播放器组件
This commit is contained in:
2026-03-03 15:17:40 +08:00
parent 455ce146a3
commit 735badd45d
52 changed files with 11654 additions and 80 deletions

View File

@@ -5,7 +5,7 @@
<z-nav-bar title="确认订单" bgColor="#258feb" fontColor="#fff"></z-nav-bar> -->
<view class="common_address_box" style="background-color: #fff">
<z-nav-bar :title="`${addressId ? '编辑' : '添加'}收地址`" bgColor="#258feb" fontColor="#fff">
<z-nav-bar :title="`${addressId ? '编辑' : '添加'}收地址`" bgColor="#258feb" fontColor="#fff">
<template slot="right">
<text @click="handleClickDelete" v-if="addressId" style="padding-right: 20rpx; color: red;font-size: 28rpx;">删除</text>
</template>
@@ -20,7 +20,7 @@
<view v-for="(item, index) in argee" :key="index" style="font-size: 32rpx;">
<radio class="agreeRadio" :value="item.id" :checked="item.id == radioValue"
color="#258feb" @click="radioCheck(index)"></radio>
默认收地址
默认收地址
</view>
</radio-group>
</view>

View File

@@ -12,7 +12,7 @@
>
<z-nav-bar
navFontAlign="left"
title="我的收地址"
title="我的收地址"
bgColor="#258feb"
fontColor="#fff"
>
@@ -128,7 +128,7 @@ import { mapState } from "vuex";
export default {
components: {
courseDescription, //课程说明
editAddress, //编辑收地址
editAddress, //编辑收地址
},
props: ["backState", "type"],
data() {
@@ -161,7 +161,7 @@ export default {
customButtonGroup1: [
{
with: 200,
text: "+ 添加收地址",
text: "+ 添加收地址",
backgroundColor: "linear-gradient(90deg, #3C77BE 0%,#258feb 100%)",
color: "#fff",
},

View File

@@ -25,7 +25,7 @@
</view>
<view class="normal_box" v-else>
<view class="normal_box_top">
<view class="curriulum_title">请添加收地址 </view>
<view class="curriulum_title">请添加收地址 </view>
</view>
</view>
<view class="right">
@@ -241,6 +241,13 @@
</template>
</view>
</view>
<view v-if="v.type == 2" class="top">
<view class="yq_beizhu">
<u-icon name="info-circle" color="#ffb529" size="12" style="display: inline-block;margin-right: 10rpx;"></u-icon>
如订单包含一种或多种预售书预售书和现售书需分开发出即需要收取多次快递首重费用如多本书会按照实际重量收取快递续重费用
</view>
</view>
<view
class="bottom jf_box"
@@ -1405,7 +1412,7 @@
} else {
if (this.options.goods[0].goodsType != "05") {
if (!this.addressData.id) {
this.$commonJS.showToast("请选择收地址");
this.$commonJS.showToast("请选择收地址");
return false;
}
}
@@ -1415,8 +1422,8 @@
userId: this.userInfo.id, //下单人ID
shippingUser: this.addressData
? this.addressData.consigneeName
: "111", //收人姓名
userPhone: this.addressData.consigneePhone, //收人手机号
: "111", //收人姓名
userPhone: this.addressData.consigneePhone, //收人手机号
jfDeduction: this.jfNumber,
paymentMethod: this.payType, //支付方式 2支付宝1微信3ios内购 4天医币购买
orderMoney: this.totalPrice, //订单金额
@@ -2425,5 +2432,9 @@
.themeColor {
color: $themeColor;
}
.yq_beizhu {
color: #aaa;
font-size: 24rpx;
}
</style>