Browse Source

fix: 修复样式问题和调整开发环境API地址

- 移除myLevel页面的背景色注释
- 更新开发环境API地址为8080端口
- 修正levelInfo组件中的等级要求文案
- 调整myUser页面的样式布局
- 更新bindUser页面的背景图引用
master
前端-胡立永 3 weeks ago
parent
commit
eed3624bba
6 changed files with 28 additions and 21 deletions
  1. +4
    -3
      otherPages/workbenchManage/bindUser/index.vue
  2. +1
    -1
      otherPages/workbenchManage/myLevel/commponents/levelInfo.vue
  3. +4
    -2
      otherPages/workbenchManage/myLevel/commponents/myData.vue
  4. +1
    -1
      otherPages/workbenchManage/myLevel/index.scss
  5. +17
    -13
      otherPages/workbenchManage/myUser/index.vue
  6. +1
    -1
      utils/getUrl.js

+ 4
- 3
otherPages/workbenchManage/bindUser/index.vue View File

@ -73,14 +73,15 @@
</template>
</up-input>
</view>
<view class="bind-main-two mb10"
<!-- <view class="bind-main-two mb10"
:style="{'background-image' : `url('${configList.background_popularize_two.paramValueImage}')`}">
<view class="mb20 font32">分享海报邀请</view>
<view class="mb20">扫码进入猫妈狗爸完成绑定</view>
<up-button @click="toSharing" text="保存海报" type="primary" shape="circle" plain style="background: transparent;"></up-button>
</view>
</view> -->
<!-- background_popularize_three -->
<view class="bind-main-three"
:style="{'background-image' : `url('${configList.background_popularize_three.paramValueImage}')`}">
:style="{'background-image' : `url('${configList.background_popularize_two.paramValueImage}')`}">
<view class="mb20 font32">分享链接邀请</view>
<view class="mb20">复制链接给好友进入直接绑定</view>
<up-input disabled v-model="dataF.invitation_url">


+ 1
- 1
otherPages/workbenchManage/myLevel/commponents/levelInfo.vue View File

@ -52,7 +52,7 @@
return props.dataInfo.level_list
})
const cardName = ref("距离下一等级要求")
const cardName = ref("距离等级要求")
const baseList = ref([
// {
// title: '',


+ 4
- 2
otherPages/workbenchManage/myLevel/commponents/myData.vue View File

@ -14,8 +14,10 @@
</view>
</view>
<view class="bottom box-size child" :style="{ borderRadius: '16rpx' }" >
<up-parse :content="configList.cumulative_data_statement.paramValueArea" containerStyle="{
<view class="bottom box-size child"
:style="{ borderRadius: '16rpx' }" >
<up-parse :content="configList.cumulative_data_statement.paramValueArea"
containerStyle="{
color: '#A55822',
fontSize: '22rpx',
lineHeight: '29rpx',


+ 1
- 1
otherPages/workbenchManage/myLevel/index.scss View File

@ -73,7 +73,7 @@
}
.bottom {
height: 546rpx;
background-color: #fff4e6;
// background-color: #fff4e6;
padding: 3%;
font-size: 22rpx;
box-sizing: border-box;


+ 17
- 13
otherPages/workbenchManage/myUser/index.vue View File

@ -61,19 +61,23 @@
</view>
</view>
</view>
<view
v-if="state.state == 1"
style="margin-top: 17rpx;
padding: 15rpx 29rpx;
background-color: #FFF4E6;
border-radius: 16rpx;" >
<up-parse :content="configList.cumulative_reward_statement.paramValueArea"
containerStyle="{
color: '#A55822',
fontSize: '22rpx',
lineHeight: '29rpx',
}"></up-parse>
<view
v-if="state.state == 1"
style="
margin: 0 20rpx;
border-radius: 20rpx;
margin-top: 17rpx;
padding: 15rpx 29rpx;
background-color: #FFF4E6;
border-radius: 16rpx;" >
<up-parse :content="configList.cumulative_reward_statement.paramValueArea"
containerStyle="{
color: '#A55822',
fontSize: '22rpx',
lineHeight: '29rpx',
}"></up-parse>
</view>
</view>
</view>
</template>


+ 1
- 1
utils/getUrl.js View File

@ -3,7 +3,7 @@ const accountInfo = wx.getAccountInfoSync();
// current = accountInfo.miniProgram.envVersion;
const api = {
develop:"http://127.0.0.1:8002",
develop:"http://127.0.0.1:8080",
// develop:"http://h5.xzaiyp.top",
// develop:"https://api.catmdogd.com/prod-api",
trial:"https://pet-admin.hhlm1688.com/api",


Loading…
Cancel
Save