解决uniapp原生组件的问题

This commit is contained in:
Teng 2025-10-17 13:18:01 +08:00
parent 1a987e2f10
commit 211e278c2c
15 changed files with 17 additions and 17 deletions

View File

@ -333,7 +333,7 @@
} else {
uni.showToast({
title: res.result == '未做变更'? `当前无变更,无需提交` : res.message,
icon: 'error'
icon: 'none'
})
}
})

View File

@ -169,7 +169,7 @@
if (res.data.result == '未做变更') {
uni.showToast({
title: `当前无变更,无需提交`,
icon: 'error'
icon: 'none'
})
return
}
@ -215,7 +215,7 @@
if (res.data.result == '未做变更') {
uni.showToast({
title: `当前无变更,无需提交`,
icon: 'error'
icon: 'none'
})
return
}

View File

@ -545,7 +545,7 @@
if (res.data.result == '未做变更') {
uni.showToast({
title: `当前无变更,无需提交`,
icon: 'error'
icon: 'none'
})
return
}

View File

@ -273,7 +273,7 @@
if (res.result == '未做变更') {
uni.showToast({
title: `当前无变更,无需提交`,
icon: 'error'
icon: 'none'
})
return
}

View File

@ -261,7 +261,7 @@
</view>
</swiper>
<view
style="z-index:999;position: fixed;bottom: 150rpx; width: 100%;display: flex;align-items: center;flex-direction: column;margin-top: -25rpx;">
style="z-index:999;position: fixed;bottom: 150rpx; width: 100%;display: flex;align-items: center;flex-direction: column;margin-top: -25rpx;height: 100rpx;">
<view class="jia-box">
<view v-for="(item,index) in menuArray" :key="index" @click="changecard(index)">
<view :class="whichMenu==index? `black-box` :`gray-box`" v-if="index != menuArray.length - 1">

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -175,7 +175,7 @@ const _sfc_main = {
} else {
common_vendor.index.showToast({
title: res.result == "未做变更" ? `当前无变更,无需提交` : res.message,
icon: "error"
icon: "none"
});
}
});

View File

@ -99,7 +99,7 @@ const _sfc_main = {
if (res.data.result == "未做变更") {
common_vendor.index.showToast({
title: `当前无变更,无需提交`,
icon: "error"
icon: "none"
});
return;
}
@ -144,7 +144,7 @@ const _sfc_main = {
if (res.data.result == "未做变更") {
common_vendor.index.showToast({
title: `当前无变更,无需提交`,
icon: "error"
icon: "none"
});
return;
}

View File

@ -349,7 +349,7 @@ const _sfc_main = {
if (res2.data.result == "未做变更") {
common_vendor.index.showToast({
title: `当前无变更,无需提交`,
icon: "error"
icon: "none"
});
return;
}

View File

@ -130,7 +130,7 @@ const _sfc_main = {
if (res.result == "未做变更") {
common_vendor.index.showToast({
title: `当前无变更,无需提交`,
icon: "error"
icon: "none"
});
return;
}

File diff suppressed because one or more lines are too long