多个bug修改

This commit is contained in:
丁杰 2026-04-09 16:10:17 +08:00
parent e4b7646da9
commit 35dca559d3
9 changed files with 2615 additions and 2587 deletions

View File

@ -7,8 +7,8 @@
"type" : "uni-app:app-ios"
},
{
"customPlaygroundType" : "device",
"playground" : "standard",
"customPlaygroundType" : "local",
"playground" : "custom",
"type" : "uni-app:app-android"
}
]

View File

@ -3,7 +3,7 @@
"apps": [],
"details": [
{
"appID": "wx5b1c0c8d01ded35d",
"appID": "wx17eef65c270b4869",
"paths": ["*"]
}
]

View File

@ -107,7 +107,7 @@
"payment" : {
"weixin" : {
"__platform__" : [ "ios", "android" ],
"appid" : "wx2381a791a52a402d",
"appid" : "wx17eef65c270b4869",
"UniversalLinks" : "https://app.mrrweb.com.cn/"
},
"appleiap" : {},
@ -117,7 +117,7 @@
},
"share" : {
"weixin" : {
"appid" : "wx2381a791a52a402d",
"appid" : "wx17eef65c270b4869",
"UniversalLinks" : "https://app.mrrweb.com.cn/"
}
},
@ -134,7 +134,7 @@
},
"oauth" : {
"weixin" : {
"appid" : "wx2381a791a52a402d",
"appid" : "wx17eef65c270b4869",
"UniversalLinks" : "https://app.mrrweb.com.cn/"
}
}
@ -197,7 +197,7 @@
"quickapp" : {},
/* */
"mp-weixin" : {
"appid" : "wxb486b10a60d2c78d",
"appid" : "wx17eef65c270b4869",
"privacy" : {
"requiredPrivateInfos" : [ "getBackgroundFetchData" ]
},

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -369,6 +369,7 @@
uni.showLoading({
title: '上传中'
})
console.log(this.formData,'=============================');
if (this.formData.type == 1) {
res = await uploadImage.handleUpload(this.userInfo.id, 3);
} else {

View File

@ -9,13 +9,14 @@
</view>
<view class="titles-right">
<text class="titles-text">展示位置及拍摄技巧</text>
<image src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/b153e8d5-37b1-4205-a4a1-9f6603f30c2a.png" mode="widthFix" style="width: 24rpx;margin-top: 2rpx;margin-left: 6rpx;"></image>
</view>
</view>
<view class="container-card" v-for="(item,index) in cardList[type]" :key="index">
<view class="card-header flex-row-center-between">
<text class="card-title">{{ item.title }}</text>
<view class="card-header-right" @click="goList(item.id)">
<text class="card-header-right-text">查看详情</text>
<text class="card-header-right-text">查看全部</text>
<image class="card-header-right-img" src="/static/images/icons/right_gray14.png"></image>
</view>
</view>
@ -142,6 +143,7 @@
return obj
},
goList(id) {
console.log(id,'ididididididi');
uni.navigateTo({
url: `/pages/shop/photoAlbum/videoList?id=${id}&type=${this.type}`
});
@ -156,7 +158,7 @@
},
goAdd(id, item) {
if (this.type == 1) {
if ( this.imgVideoList[id] && this.imgVideoList[id].length >= 20) {
if ( this.imgVideoList[id] && this.imgVideoList[id].length >= 21) {
uni.showToast({
title: '最多上传20张图片',
icon: 'none',
@ -255,6 +257,7 @@
}
.titles-right {
display: flex;
.titles-text {
font-family: PingFangSC, PingFang SC;
font-weight: 400;

View File

@ -1,486 +1,496 @@
<template>
<view class="container">
<custom-navbar title="店铺图片" :leftImg="'/static/images/back.png'" :showUser="true" backgroundColor="#fff"
titleColor="#000" borderBottom="none">
<template #right>
<text class="custom-right" @click="toggleManage">{{ isManage ? '取消' : '管理' }}</text>
</template>
</custom-navbar>
<view class="review">
<view class="review-title">
<text class="review-title-text">添加环境图片吸引更多顾客到店消费</text>
</view>
</view>
<view class="container-card">
<view class="card-content flex-row-center" v-if="type==1">
<view class="card-content-page">{{ imgVideoList.length }}/20</view>
<view class="content-default" @click="goAdd(class_type)"
v-if="!(class_type == 1 && imgVideoList && imgVideoList.length)">
<image class="content-default-img" src="/static/images/icons/addPhoto.png"></image>
<text class="content-default-text">添加照片</text>
</view>
<view class="content-photo" v-for="(item2,index2) in imgVideoList" :key="index2" v-if="imgVideoList"
@click="isManage ? toggleSelect(index2) : goAdd(class_type,item2)">
<!-- 选择框 -->
<image class="content-photo-select" v-if="isManage"
:src="selectedItems.includes(index2) ? '/static/images/icons/yes_icon.png' : '/static/images/icons/no_icon2.png'">
</image>
<image class="content-photo-img" mode="aspectFill" :src="getItem(item2).url"></image>
<view class="content-photo-title">
{{ getItem(item2).name }}
</view>
<view class="content-photo-mask" v-if="item2.apply_state==1">
<image class="photo-mask-img" mode="aspectFill" src="/static/images/icons/time.png"></image>
<text class="photo-mask-text">审核中</text>
</view>
</view>
</view>
<view class="card-content flex-row-center" v-else>
<view class="card-content-page">{{ imgVideoList.length }}/10</view>
<view class="content-default content-default2" @click="goAdd(class_type)"
v-if="!(class_type == 1 && imgVideoList && imgVideoList.length)">
<image class="content-default-img" src="/static/images/icons/addPhoto.png"></image>
<text class="content-default-text">添加视频</text>
</view>
<view class="content-photo content-video" v-for="(item2,index2) in imgVideoList" :key="index2"
v-if="imgVideoList" @click="isManage ? toggleSelect(index2) : goAdd(class_type,item2)">
<!-- 选择框 -->
<image class="content-photo-select" v-if="isManage"
:src="selectedItems.includes(index2) ? '/static/images/icons/yes_icon.png' : '/static/images/icons/no_icon2.png'">
</image>
<image class="content-photo-video" mode="aspectFill" :src="getItem(item2).url"></image>
<view class="content-photo-title">
{{ getItem(item2).name }}
</view>
<view class="content-photo-play">
<image class="content-photo-play-img" mode="aspectFill" src="/static/images/icons/play.png">
</image>
</view>
<view class="content-photo-mask" v-if="item2.apply_state==1">
<image class="photo-mask-img" mode="aspectFill" src="/static/images/icons/time.png"></image>
<view class="photo-mask-text">审核中</view>
</view>
<view class="content-photo-mask" v-if="item2.apply_state==3">
<image class="photo-mask-img" mode="aspectFill" src="/static/images/icons/close2.png"></image>
<view class="photo-mask-text">已驳回</view>
</view>
</view>
</view>
</view>
<view class="container-buttons flex-row-center-center" v-if="isManage">
<view class="container-buttons-sure2 flex-row-center-center" @click="handleDelete">删除</view>
</view>
</view>
</template>
<script>
import request from "@/utils/request";
export default {
data() {
return {
imgVideoList: [],
type: 2, //1 2
class_type: 4, //1(/) 2(/) 3(/) 4(/)
isManage: false, //
selectedItems: [] //
}
},
async onShow() {
await this.getList()
},
async onLoad(options) {
if (options.type) {
this.type = options.type
}
if (options.id) {
this.class_type = options.id
}
},
methods: {
// /
toggleManage() {
this.isManage = !this.isManage;
if (!this.isManage) {
this.selectedItems = []; // 退
}
},
//
toggleSelect(index) {
console.log(1111, index)
if (this.selectedItems.includes(index)) {
//
this.selectedItems = this.selectedItems.filter(i => i !== index);
} else {
//
this.selectedItems.push(index);
}
},
//
async handleDelete() {
// ID
let deleteIds = this.selectedItems.map(index => this.imgVideoList[index].id);
let auth_ids = this.selectedItems.map(index => this.imgVideoList[index].auth_id).filter(item =>
item !== 0);
console.log(1111, deleteIds, auth_ids, [1, 6])
try {
const res = await request.post("/sj/imgVideo/del", {
ids: deleteIds,
auth_ids: auth_ids
});
if (res.code == 200) {
//
await this.getList();
// 退
this.isManage = false;
this.selectedItems = [];
} else {
uni.showToast({
title: '删除失败',
icon: 'none'
});
}
} catch (err) {
uni.showToast({
title: '删除失败',
icon: 'none'
});
}
},
goAdd(id, item) {
if (this.isManage) return; //
if (this.type == 1) {
if (this.imgVideoList.length >= 20) {
uni.showToast({
title: '最多上传20张图片',
icon: 'none',
duration: 2000
});
return
}
} else if (this.type == 2) {
if (this.imgVideoList.length >= 10) {
uni.showToast({
title: '最多上传10张视频',
icon: 'none',
duration: 2000
});
return
}
}
if (!id) {
uni.showToast({
title: '参数异常,无法上传',
icon: 'none',
duration: 2000
});
return;
}
let url = `/pages/shop/photoAlbum/addPhoto?id=${id}&type=${this.type}`;
if (item) {
url += `&item=${encodeURIComponent(JSON.stringify(item))}`;
}
uni.navigateTo({
url: url
});
},
getItem(item) {
let obj = {
name: "",
url: ""
}
if (item.apply_state == 1) {
obj.url = item.auth_url
obj.name = item.auth_name
} else {
obj.url = item.url || item.auth_url
obj.name = item.name || item.auth_name
}
if (item.type == 2) {
obj.url = obj.url + `?x-oss-process=video/snapshot,t_1000,m_fast,f_jpg,w_600,ar_auto`
}
return obj
},
async getList() {
try {
const res = await request.post("/sj/imgVideo/list", {
type: this.type,
class_type: this.class_type
});
// + 访
this.imgVideoList = res.code === 200 ?
res.data?.list?.[this.type]?.[this.class_type] || [] :
[];
} catch (err) {
//
console.error("获取媒体列表失败:", err);
this.imgVideoList = [];
}
}
}
}
</script>
<style lang="less">
.container {
.custom-right {
font-weight: 500;
font-size: 26rpx;
color: #333333;
line-height: 37rpx;
text-align: left;
font-style: normal;
white-space: nowrap;
}
.review {
background: rgba(255, 250, 218, 1);
border-radius: 20rpx 20rpx 0rpx 0rpx;
margin: 20rpx;
padding: 20rpx 20rpx 20rpx 20rpx;
.review-title {
margin-bottom: 6rpx;
.review-title-text {
font-weight: 400;
font-size: 24rpx;
color: #835225;
line-height: 33rpx;
text-align: left;
font-style: normal;
}
}
}
.container-card {
border-radius: 20rpx;
margin: 20rpx;
padding: 20rpx 20rpx 30rpx 20rpx;
background: #fff;
transform: translateY(-30rpx);
.card-header {
margin-bottom: 20rpx;
.card-title {
font-weight: 500;
font-size: 28rpx;
color: #1D2129;
line-height: 48rpx;
text-align: left;
font-style: normal;
}
.card-header-right {
.card-header-right-text {
font-weight: 400;
font-size: 22rpx;
color: #999999;
line-height: 30rpx;
text-align: left;
font-style: normal;
}
.card-header-right-img {
width: 8rpx;
height: 16rpx;
margin-left: 7rpx;
}
}
}
.card-content {
gap: 14rpx;
flex-wrap: wrap;
.card-content-page {
font-weight: 400;
font-size: 24rpx;
color: #999999;
line-height: 33rpx;
text-align: left;
font-style: normal;
width: 100%;
}
.content-default {
width: 214rpx;
height: 214rpx;
background: #F5F5F5;
border-radius: 20rpx;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.content-default-img {
width: 42rpx;
height: 35rpx;
margin-bottom: 8rpx;
}
.content-default-text {
font-weight: 400;
font-size: 22rpx;
color: #666666;
line-height: 30rpx;
text-align: left;
font-style: normal;
display: block;
}
}
.content-default2 {
width: 328rpx;
height: 186rpx;
background: #F5F5F5;
border-radius: 17rpx;
}
.content-photo {
box-sizing: border-box;
width: 214rpx;
height: 214rpx;
border-radius: 20rpx;
position: relative;
overflow: hidden;
//
.content-photo-select {
position: absolute;
top: 12rpx;
right: 14rpx;
width: 36rpx;
height: 36rpx;
z-index: 999;
}
.content-photo-img {
width: 214rpx;
height: 214rpx;
border-radius: 20rpx;
}
.content-photo-video {
width: 328rpx;
height: 186rpx;
border-radius: 20rpx;
}
.content-photo-title {
background: rgba(51, 51, 51, 0.6);
padding: 6rpx 0 4rpx 0;
position: absolute;
left: 0;
right: 0;
bottom: 0;
font-weight: 400;
font-size: 15rpx;
color: #CACACA;
line-height: 21rpx;
text-align: center;
font-style: normal;
}
.content-photo-play {
width: 25rpx;
height: 25rpx;
position: absolute;
right: 10rpx;
top: 6rpx;
.content-photo-play-img {
width: 25rpx;
height: 25rpx;
}
}
.content-photo-mask {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 20rpx;
.photo-mask-img {
width: 36rpx;
height: 36rpx;
margin-bottom: 8rpx;
}
.photo-mask-text {
font-weight: 400;
font-size: 24rpx;
color: #FFFFFF;
line-height: 33rpx;
text-align: left;
font-style: normal;
}
}
}
.content-video {
width: 328rpx;
height: 186rpx;
}
}
}
}
.container-buttons {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 30rpx 0;
background: #FFFFFF;
gap: 60rpx;
.container-buttons-cancel {
width: 278rpx;
height: 98rpx;
border-radius: 49rpx;
border: 1rpx solid #E8101E;
font-weight: 400;
font-size: 32rpx;
color: #E8101E;
text-align: center;
font-style: normal;
}
.container-buttons-sure {
width: 278rpx;
height: 98rpx;
background: #E8101E;
border-radius: 49rpx;
font-weight: 400;
font-size: 32rpx;
color: #FFFFFF;
text-align: center;
font-style: normal;
}
.container-buttons-sure2 {
width: 710rpx;
height: 98rpx;
background: #E8101E;
border-radius: 49rpx;
font-weight: 400;
font-size: 38rpx;
color: #FFFFFF;
text-align: left;
font-style: normal;
}
}
<template>
<view class="container">
<custom-navbar :title="pagestitle" :leftImg="'/static/images/back.png'" :showUser="true" backgroundColor="#fff"
titleColor="#000" borderBottom="none">
<template #right>
<text class="custom-right" @click="toggleManage">{{ isManage ? '取消' : '管理' }}</text>
</template>
</custom-navbar>
<view class="review">
<view class="review-title">
<text class="review-title-text">添加{{pagestitle}}吸引更多顾客到店消费</text>
</view>
</view>
<view class="container-card">
<view class="card-content flex-row-center" v-if="type==1">
<view class="card-content-page" v-if="class_type!=1">{{ imgVideoList.length }}/20张</view>
<view class="content-default" @click="goAdd(class_type)"
v-if="!(class_type == 1 && imgVideoList && imgVideoList.length)">
<image class="content-default-img" src="/static/images/icons/addPhoto.png"></image>
<text class="content-default-text">添加照片</text>
</view>
<view class="content-photo" v-for="(item2,index2) in imgVideoList" :key="index2" v-if="imgVideoList"
@click="isManage ? toggleSelect(index2) : goAdd(class_type,item2)">
<!-- 选择框 -->
<image class="content-photo-select" v-if="isManage"
:src="selectedItems.includes(index2) ? '/static/images/icons/yes_icon.png' : '/static/images/icons/no_icon2.png'">
</image>
<image class="content-photo-img" mode="aspectFill" :src="getItem(item2).url"></image>
<view class="content-photo-title">
{{ getItem(item2).name }}
</view>
<view class="content-photo-mask" v-if="item2.apply_state==1">
<image class="photo-mask-img" mode="aspectFill" src="/static/images/icons/time.png"></image>
<text class="photo-mask-text">审核中</text>
</view>
</view>
</view>
<view class="card-content flex-row-center" v-else>
<view class="card-content-page">{{ imgVideoList.length }}/10</view>
<view class="content-default content-default2" @click="goAdd(class_type)"
v-if="!(class_type == 1 && imgVideoList && imgVideoList.length)">
<image class="content-default-img" src="/static/images/icons/addPhoto.png"></image>
<text class="content-default-text">添加视频</text>
</view>
<view class="content-photo content-video" v-for="(item2,index2) in imgVideoList" :key="index2"
v-if="imgVideoList" @click="isManage ? toggleSelect(index2) : goAdd(class_type,item2)">
<!-- 选择框 -->
<image class="content-photo-select" v-if="isManage"
:src="selectedItems.includes(index2) ? '/static/images/icons/yes_icon.png' : '/static/images/icons/no_icon2.png'">
</image>
<image class="content-photo-video" mode="aspectFill" :src="getItem(item2).url"></image>
<view class="content-photo-title">
{{ getItem(item2).name }}
</view>
<view class="content-photo-play">
<image class="content-photo-play-img" mode="aspectFill" src="/static/images/icons/play.png">
</image>
</view>
<view class="content-photo-mask" v-if="item2.apply_state==1">
<image class="photo-mask-img" mode="aspectFill" src="/static/images/icons/time.png"></image>
<view class="photo-mask-text">审核中</view>
</view>
<view class="content-photo-mask" v-if="item2.apply_state==3">
<image class="photo-mask-img" mode="aspectFill" src="/static/images/icons/close2.png"></image>
<view class="photo-mask-text">已驳回</view>
</view>
</view>
</view>
</view>
<view class="container-buttons flex-row-center-center" v-if="isManage">
<view class="container-buttons-sure2 flex-row-center-center" @click="handleDelete">删除</view>
</view>
</view>
</template>
<script>
import request from "@/utils/request";
export default {
data() {
return {
imgVideoList: [],
type: 2, //1 2
class_type: 4, //1(/) 2(/) 3(/) 4(/)
isManage: false, //
selectedItems: [], //
pagestitle: "店铺图片"
}
},
async onShow() {
await this.getList()
},
async onLoad(options) {
console.log(options, '查看option');
if (options.type) {
this.type = options.type
}
if (options.id) {
this.class_type = options.id
if (this.class_type == 2) {
this.pagestitle = "环境图片"
} else if (this.class_type == 3) {
this.pagestitle = "作品图片"
} else if (this.class_type == 4) {
this.pagestitle = "其它图片"
} else {
this.pagestitle = "店铺图片"
}
}
},
methods: {
// /
toggleManage() {
this.isManage = !this.isManage;
if (!this.isManage) {
this.selectedItems = []; // 退
}
},
//
toggleSelect(index) {
console.log(1111, index)
if (this.selectedItems.includes(index)) {
//
this.selectedItems = this.selectedItems.filter(i => i !== index);
} else {
//
this.selectedItems.push(index);
}
},
//
async handleDelete() {
// ID
let deleteIds = this.selectedItems.map(index => this.imgVideoList[index].id);
let auth_ids = this.selectedItems.map(index => this.imgVideoList[index].auth_id).filter(item =>
item !== 0);
console.log(1111, deleteIds, auth_ids, [1, 6])
try {
const res = await request.post("/sj/imgVideo/del", {
ids: deleteIds,
auth_ids: auth_ids
});
if (res.code == 200) {
//
await this.getList();
// 退
this.isManage = false;
this.selectedItems = [];
} else {
uni.showToast({
title: '删除失败',
icon: 'none'
});
}
} catch (err) {
uni.showToast({
title: '删除失败',
icon: 'none'
});
}
},
goAdd(id, item) {
if (this.isManage) return; //
if (this.type == 1) {
if (this.imgVideoList.length >= 20) {
uni.showToast({
title: '最多上传20张图片',
icon: 'none',
duration: 2000
});
return
}
} else if (this.type == 2) {
if (this.imgVideoList.length >= 10) {
uni.showToast({
title: '最多上传10张视频',
icon: 'none',
duration: 2000
});
return
}
}
if (!id) {
uni.showToast({
title: '参数异常,无法上传',
icon: 'none',
duration: 2000
});
return;
}
let url = `/pages/shop/photoAlbum/addPhoto?id=${id}&type=${this.type}`;
if (item) {
url += `&item=${encodeURIComponent(JSON.stringify(item))}`;
}
uni.navigateTo({
url: url
});
},
getItem(item) {
let obj = {
name: "",
url: ""
}
if (item.apply_state == 1) {
obj.url = item.auth_url
obj.name = item.auth_name
} else {
obj.url = item.url || item.auth_url
obj.name = item.name || item.auth_name
}
if (item.type == 2) {
obj.url = obj.url + `?x-oss-process=video/snapshot,t_1000,m_fast,f_jpg,w_600,ar_auto`
}
return obj
},
async getList() {
try {
const res = await request.post("/sj/imgVideo/list", {
type: this.type,
class_type: this.class_type
});
// + 访
this.imgVideoList = res.code === 200 ?
res.data?.list?.[this.type]?.[this.class_type] || [] : [];
} catch (err) {
//
console.error("获取媒体列表失败:", err);
this.imgVideoList = [];
}
}
}
}
</script>
<style lang="less">
.container {
.custom-right {
font-weight: 500;
font-size: 26rpx;
color: #333333;
line-height: 37rpx;
text-align: left;
font-style: normal;
white-space: nowrap;
}
.review {
background: rgba(255, 250, 218, 1);
border-radius: 20rpx 20rpx 0rpx 0rpx;
margin: 20rpx;
padding: 20rpx 20rpx 20rpx 20rpx;
.review-title {
margin-bottom: 6rpx;
.review-title-text {
font-weight: 400;
font-size: 24rpx;
color: #835225;
line-height: 33rpx;
text-align: left;
font-style: normal;
}
}
}
.container-card {
border-radius: 20rpx;
margin: 20rpx;
padding: 20rpx 20rpx 30rpx 20rpx;
background: #fff;
transform: translateY(-30rpx);
.card-header {
margin-bottom: 20rpx;
.card-title {
font-weight: 500;
font-size: 28rpx;
color: #1D2129;
line-height: 48rpx;
text-align: left;
font-style: normal;
}
.card-header-right {
.card-header-right-text {
font-weight: 400;
font-size: 22rpx;
color: #999999;
line-height: 30rpx;
text-align: left;
font-style: normal;
}
.card-header-right-img {
width: 8rpx;
height: 16rpx;
margin-left: 7rpx;
}
}
}
.card-content {
gap: 14rpx;
flex-wrap: wrap;
.card-content-page {
font-weight: 400;
font-size: 24rpx;
color: #999999;
line-height: 33rpx;
text-align: left;
font-style: normal;
width: 100%;
}
.content-default {
width: 214rpx;
height: 214rpx;
background: #F5F5F5;
border-radius: 20rpx;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.content-default-img {
width: 42rpx;
height: 35rpx;
margin-bottom: 8rpx;
}
.content-default-text {
font-weight: 400;
font-size: 22rpx;
color: #666666;
line-height: 30rpx;
text-align: left;
font-style: normal;
display: block;
}
}
.content-default2 {
width: 328rpx;
height: 186rpx;
background: #F5F5F5;
border-radius: 17rpx;
}
.content-photo {
box-sizing: border-box;
width: 214rpx;
height: 214rpx;
border-radius: 20rpx;
position: relative;
overflow: hidden;
//
.content-photo-select {
position: absolute;
top: 12rpx;
right: 14rpx;
width: 36rpx;
height: 36rpx;
z-index: 999;
}
.content-photo-img {
width: 214rpx;
height: 214rpx;
border-radius: 20rpx;
}
.content-photo-video {
width: 328rpx;
height: 186rpx;
border-radius: 20rpx;
}
.content-photo-title {
background: rgba(51, 51, 51, 0.6);
padding: 6rpx 0 4rpx 0;
position: absolute;
left: 0;
right: 0;
bottom: 0;
font-weight: 400;
font-size: 15rpx;
color: #CACACA;
line-height: 21rpx;
text-align: center;
font-style: normal;
}
.content-photo-play {
width: 25rpx;
height: 25rpx;
position: absolute;
right: 10rpx;
top: 6rpx;
.content-photo-play-img {
width: 25rpx;
height: 25rpx;
}
}
.content-photo-mask {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border-radius: 20rpx;
.photo-mask-img {
width: 36rpx;
height: 36rpx;
margin-bottom: 8rpx;
}
.photo-mask-text {
font-weight: 400;
font-size: 24rpx;
color: #FFFFFF;
line-height: 33rpx;
text-align: left;
font-style: normal;
}
}
}
.content-video {
width: 328rpx;
height: 186rpx;
}
}
}
}
.container-buttons {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 30rpx 0;
background: #FFFFFF;
gap: 60rpx;
.container-buttons-cancel {
width: 278rpx;
height: 98rpx;
border-radius: 49rpx;
border: 1rpx solid #E8101E;
font-weight: 400;
font-size: 32rpx;
color: #E8101E;
text-align: center;
font-style: normal;
}
.container-buttons-sure {
width: 278rpx;
height: 98rpx;
background: #E8101E;
border-radius: 49rpx;
font-weight: 400;
font-size: 32rpx;
color: #FFFFFF;
text-align: center;
font-style: normal;
}
.container-buttons-sure2 {
width: 710rpx;
height: 98rpx;
background: #E8101E;
border-radius: 49rpx;
font-weight: 400;
font-size: 38rpx;
color: #FFFFFF;
text-align: left;
font-style: normal;
}
}
</style>

View File

@ -173,7 +173,7 @@ const uploadFile = async (file, userId, type, uploadType) => {
let imageType;
if (uploadType == 'image') {
//imageType = file.path.split('.')
imageType = file.name.split('.')
imageType = file.path.split('.')
} else if (uploadType == 'video') {
// #ifdef H5
imageType = file.name.split('.')
@ -252,7 +252,9 @@ const uploadToOss = (file, ossConfig, name, uploadType) => {
if (uploadType == 'image') {
path = file.path
// 获取文件扩展名并设置 Content-Type
console.log('111111');
const ext = file.path.split('.').pop().toLowerCase()
console.log('33333333');
const mimeTypes = {
jpg: 'image/jpeg',
jpeg: 'image/jpeg',