聊天功能优化,部分问题修复
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user