Compare commits

...

3 Commits

Author SHA1 Message Date
ba912698dc fix 2023-09-25 19:44:00 +08:00
d92741f617 Merge branch 'master' of http://192.168.12.3:3000/xingyy/uni-Identify-quality 2023-09-25 19:35:36 +08:00
8b0a6b8b8f fix 2023-09-25 19:35:22 +08:00
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,3 @@
export default {
baseUrl: "http://192.168.88.175:9021",
baseUrl: "https://warehouse.szjixun.cn",
};

View File

@ -14,7 +14,7 @@
<div class="content2">
<div class="wrap1">
<div class="wrap1_1">
<image src="../../static/06@3x.png"></image>
<image :src="avatar"></image>
</div>
<div class="wrap1_2">
<div class="wrap1_2_1">
@ -48,7 +48,8 @@ export default {
orderTotal:0,
validContractDays:0,
nickName:'',
telNum:''
telNum:'',
avatar:''
}
},
onLoad(){
@ -70,6 +71,7 @@ export default {
if(res.status === 0){
this.nickName = res.data.user.nickName
this.telNum = res.data.user.telNum
this.avatar = res.data.user.avatar
}else{
this.$common.msgToast(res.msg);
}