Browse Source

feat: 在认证服务页面添加基础服务项并调整充值按钮样式

在认证服务页面中新增了“基础服务”项,包含宠物喂养和上门遛狗的描述。同时,调整了充值按钮的样式,将其背景色改为灰色,并添加了圆角效果,以提示用户该功能暂未开放。
master
前端-胡立永 4 weeks ago
parent
commit
c64c34dc5e
2 changed files with 11 additions and 1 deletions
  1. +6
    -0
      otherPages/authentication/serve/index.vue
  2. +5
    -1
      otherPages/myOrdersManage/bond/index.vue

+ 6
- 0
otherPages/authentication/serve/index.vue View File

@ -85,6 +85,12 @@
<up-icon name="arrow-right" color="#999999" size="32rpx"></up-icon>
</view>
</up-form-item>
<up-form-item label="基础服务" prop="jc">
<view class="flex-rowr">
<text>宠物喂养上门遛狗</text>
<!-- <up-icon name="arrow-right" color="#999999" size="32rpx"></up-icon> -->
</view>
</up-form-item>
<up-form-item label="增值服务" prop="serve">
<view class="flex-rowr" @click="openServeSelectPopup">
<text>{{ serveDesc }}</text>


+ 5
- 1
otherPages/myOrdersManage/bond/index.vue View File

@ -20,8 +20,11 @@
<text>¥</text>
<input v-model="money" type="digit" />
</view>
<view class="text2" :style="{ borderRadius: '23.5rpx' }" @click="onPay">
<!-- <view class="text2" @click="onPay">
去充值
</view> -->
<view class="text2" style="background-color: #999;color: #fff">
暂未开放
</view>
</view>
</view>
@ -176,6 +179,7 @@
background-color: #FFBF60;
line-height: 47rpx;
display: flex;
border-radius: 24rpx;
justify-content: center;
}


Loading…
Cancel
Save