优化页面

This commit is contained in:
pengxiaolong
2025-06-16 22:09:12 +08:00
parent 0f2a48b450
commit 8ec7365e7c
131 changed files with 1358 additions and 690 deletions

View File

@@ -17,6 +17,7 @@
</view>
<view class="contentList">
<scroll-view
show-scrollbar="false"
scroll-y="true"
class="scroll"
refresher-enabled="true"
@@ -376,32 +377,32 @@ export default {
this.triggered = true;
if (this.ConfirmStatus) {
if (
this.genders === 0 &&
this.countrys === "" &&
this.minNumberCoins === "" &&
this.maxNumberCoins === "" &&
this.mindatetimesingle === "" &&
this.maxdatetimesingle === ""
) {
this.pkList({ type: this.listtype });
this.genders === 0 &&
this.countrys === "" &&
this.minNumberCoins === "" &&
this.maxNumberCoins === "" &&
this.mindatetimesingle === "" &&
this.maxdatetimesingle === ""
) {
this.pkList({ type: this.listtype });
} else {
if (
(this.minNumberCoins === "" && this.maxNumberCoins !== "") ||
(this.minNumberCoins !== "" && this.maxNumberCoins === "")
) {
this.pkList({ type: this.listtype });
return;
}
if (
(this.mindatetimesingle === "" && this.maxdatetimesingle !== "") ||
(this.mindatetimesingle !== "" && this.maxdatetimesingle === "")
) {
this.pkList({ type: this.listtype });
return;
}
this.confirm();
}
} else {
if (
(this.minNumberCoins === "" && this.maxNumberCoins !== "") ||
(this.minNumberCoins !== "" && this.maxNumberCoins === "")
) {
this.pkList({ type: this.listtype });
return;
}
if (
(this.mindatetimesingle === "" && this.maxdatetimesingle !== "") ||
(this.mindatetimesingle !== "" && this.maxdatetimesingle === "")
) {
this.pkList({ type: this.listtype });
return;
}
this.confirm();
}
}else{
this.pkList({ type: this.listtype });
}
},