聊天功能优化,部分问题修复

This commit is contained in:
2025-12-05 09:37:30 +08:00
parent 6590a3514b
commit 885ef57c93
9 changed files with 554 additions and 159 deletions

View File

@@ -18,11 +18,11 @@
/>
</view>
<view class="u-m-t-16">
<view class="font-bold u-m-b-16">所需会员</view>
<view class="font-bold u-m-b-16">所需成长</view>
<input
v-model="form.experienceValue"
:disabled="optiopns.index == 0 ? true : false"
placeholder="请输入所需会员值"
placeholder="请输入所需成长值"
:placeholderStyle="placeholderStyle"
/>
</view>
@@ -171,7 +171,7 @@ const form = reactive({
remark: "",
});
function addCoupon() {
form.couponList.push({
form.cycleRewardCouponList.push({
coupon: { id: null },
num: "",
title: "",
@@ -225,6 +225,13 @@ async function save() {
});
return false;
}
if(form.remark.trim() == ""){
uni.showToast({
title: "请输入等级说明",
icon: "none",
});
return false;
}
const submitForm = {
...form,
};