feat: 锁定账户修改,标价修改

This commit is contained in:
黄泽群
2025-10-11 17:35:13 +08:00
parent 77902b94c6
commit c6f292ed22
2 changed files with 6 additions and 6 deletions
@@ -152,7 +152,7 @@ export default {
key: "cur" key: "cur"
}, },
{ {
name: "锁定次数", name: "锁定账户",
key: "lockAmount" key: "lockAmount"
}, },
@@ -218,7 +218,7 @@ export default {
key: "cur" key: "cur"
}, },
{ {
name: "锁定次数", name: "锁定账户",
key: "lockAmount" key: "lockAmount"
}, },
@@ -346,7 +346,7 @@ export default {
if (item.key === "cur") { if (item.key === "cur") {
id = this.curId; id = this.curId;
} }
if (item.key === "lock") { if (item.key === "lockAmount") {
id = this.lockId; id = this.lockId;
} }
if (item.key === "pre") { if (item.key === "pre") {
@@ -400,7 +400,7 @@ export default {
if (selInfo === "cur") { if (selInfo === "cur") {
id = this.curId; id = this.curId;
} }
if (selInfo === "lock") { if (selInfo === "lockAmount") {
id = this.lockId; id = this.lockId;
} }
this.form.id = id; this.form.id = id;
@@ -6,9 +6,9 @@
<view class="bottom-shop-view"> <view class="bottom-shop-view">
<text class="text-28 text-zu text-overflow1">{{obj.title}}</text> <text class="text-28 text-zu text-overflow1">{{obj.title}}</text>
<text class="text-28" style="color:#FF4242"> <text class="text-28" style="color:#FF4242">
¥{{obj.adPrice}} ¥{{obj.price}}
<text class="text-24 text-fu text-d" style="margin-left:12rpx"> <text class="text-24 text-fu text-d" style="margin-left:12rpx">
¥{{obj.price}} ¥{{obj.adPrice}}
</text> </text>
</text> </text>
</view> </view>