|
@@ -30,13 +30,12 @@
|
|
|
<text class="label">生日</text>
|
|
<text class="label">生日</text>
|
|
|
<view class="value-container">
|
|
<view class="value-container">
|
|
|
|
|
|
|
|
- <text class="value" v-if="Number(customInfo.birthdayMonth)>0">
|
|
|
|
|
|
|
+ <text class="value" v-if="Number(customInfo.birthdayMonth)>0" @click="changeBirthday()">
|
|
|
{{ customInfo.lunar==1?"农历 ":"" }}{{ customInfo.birthdayMonth }}月{{ customInfo.birthdayDate }}日
|
|
{{ customInfo.lunar==1?"农历 ":"" }}{{ customInfo.birthdayMonth }}月{{ customInfo.birthdayDate }}日
|
|
|
<text v-if="customInfo.lunar==1 && customInfo.birthday!='0000-00-00'">({{customInfo.birthday}})</text>
|
|
<text v-if="customInfo.lunar==1 && customInfo.birthday!='0000-00-00'">({{customInfo.birthday}})</text>
|
|
|
- <text @click="changeBirthday()" style="color:#007aff;margin-left:20upx;">修改</text>
|
|
|
|
|
</text>
|
|
</text>
|
|
|
- <text class="value" v-else>
|
|
|
|
|
- <text style="color:#007aff;" @click="changeBirthday()">设置</text>
|
|
|
|
|
|
|
+ <text class="value" v-else @click="changeBirthday()">
|
|
|
|
|
+ <text style="color:#007aff;">设置</text>
|
|
|
</text>
|
|
</text>
|
|
|
|
|
|
|
|
</view>
|
|
</view>
|