Browse Source

修复bug

master
longjieli 2 months ago
parent
commit
09e1f350a5
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      otherPages/userManage/pet/components/petHealthInfo.vue
  2. +1
    -1
      otherPages/userManage/pet/petInfo.vue

+ 1
- 1
otherPages/userManage/pet/components/petHealthInfo.vue View File

@ -43,7 +43,7 @@
<!-- <u-form-item required label="健康" :prop="`petHealthInfo.healths`" labelWidth="80" @click="healthsSelect"> --> <!-- <u-form-item required label="健康" :prop="`petHealthInfo.healths`" labelWidth="80" @click="healthsSelect"> -->
<u-form-item required label="健康" :prop="`petHealthInfo.health`" labelWidth="80"> <u-form-item required label="健康" :prop="`petHealthInfo.health`" labelWidth="80">
<u--input disabledColor="#ffffff" placeholder="请输入" <u--input disabledColor="#ffffff" placeholder="请输入"
:v-model="petHealthInfo.health"
v-model="petHealthInfo.health"
placeholderStyle="text-align:right;color:#AAA" border="none" inputAlign="right"></u--input> placeholderStyle="text-align:right;color:#AAA" border="none" inputAlign="right"></u--input>
<view slot="right"> <view slot="right">
<u-icon v-if="showHealths" name="arrow-down" color="#AAA"></u-icon> <u-icon v-if="showHealths" name="arrow-down" color="#AAA"></u-icon>


+ 1
- 1
otherPages/userManage/pet/petInfo.vue View File

@ -266,7 +266,7 @@
}); });
return; return;
} }
if (params.health) {
if (!params.health) {
uni.showToast({ uni.showToast({
title: '请填写宠物健康情况', title: '请填写宠物健康情况',
duration: 3000, duration: 3000,


Loading…
Cancel
Save