|
|
@ -81,11 +81,16 @@ |
|
|
|
<img src="/static/image/mine/wdtj.png" style="width: 24px;height: 24px;"> |
|
|
|
<img src="/static/image/mine/wdtj.png" style="width: 24px;height: 24px;"> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</u-cell> |
|
|
|
</u-cell> |
|
|
|
<u-cell size="large" title="我的题库" :value="carName" isLink @tap="toChangeCarType"> |
|
|
|
<u-cell size="large" title="我的题库" :value="carName" @tap="toChangeCarType"> |
|
|
|
<template #icon> |
|
|
|
<template #icon> |
|
|
|
<img src="/static/image/mine/wdtk.png" style="width: 24px;height: 24px;"> |
|
|
|
<img src="/static/image/mine/wdtk.png" style="width: 24px;height: 24px;"> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</u-cell> |
|
|
|
</u-cell> |
|
|
|
|
|
|
|
<u-cell size="large" title="联系我们" @tap="callPhoneNumber"> |
|
|
|
|
|
|
|
<template #icon> |
|
|
|
|
|
|
|
<img src="/static/image/mine/callme.png" style="width: 24px;height: 24px;"> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</u-cell> |
|
|
|
</u-cell-group> |
|
|
|
</u-cell-group> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view v-if="isLogin" class="flex ai-c jc-c mt12 br8 bc-fff" style="height: 50px;" @tap="handleLogout"> |
|
|
|
<view v-if="isLogin" class="flex ai-c jc-c mt12 br8 bc-fff" style="height: 50px;" @tap="handleLogout"> |
|
|
@ -146,6 +151,12 @@ export default { |
|
|
|
this.carName = storage.get('carName') || '小车C1/C2/C3' |
|
|
|
this.carName = storage.get('carName') || '小车C1/C2/C3' |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
|
|
|
|
// 拨打电话 |
|
|
|
|
|
|
|
callPhoneNumber() { |
|
|
|
|
|
|
|
uni.makePhoneCall({ |
|
|
|
|
|
|
|
phoneNumber: '15105693067' |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
toChangeCarType() { |
|
|
|
toChangeCarType() { |
|
|
|
uni.navigateTo({ |
|
|
|
uni.navigateTo({ |
|
|
|
url: "/pages/me/changeCarType" |
|
|
|
url: "/pages/me/changeCarType" |
|
|
|