92 lines
1.9 KiB
Vue
92 lines
1.9 KiB
Vue
<template>
|
|
<div class="main">
|
|
<view class="goAppBox" @click="handleGo">
|
|
<div class="appLeft">
|
|
<image
|
|
class="goAppIcon"
|
|
src="https://eshangtech.com/ShopICO/ahyd-user/images/home/anhuiAPPIcon.png"
|
|
/>
|
|
<span class="appName">安徽充换电APP</span>
|
|
</div>
|
|
|
|
<div class="appRight">
|
|
<span class="search">查看</span>
|
|
<image class="searchIcon" src="/static/images/home/rightArrow.png" />
|
|
</div>
|
|
</view>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
// 跳转安徽充换电
|
|
handleGo() {
|
|
uni.navigateTo({
|
|
url: `/pages/thirdParty/chargAndSwapp`,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped lang="less">
|
|
.main {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: #f6f7f8;
|
|
box-sizing: border-box;
|
|
padding: 32rpx;
|
|
.goAppBox {
|
|
margin-top: 24rpx;
|
|
width: 100%;
|
|
height: 120rpx;
|
|
background: #ffffff;
|
|
border-radius: 6rpx;
|
|
box-sizing: border-box;
|
|
padding: 24rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.appLeft {
|
|
display: flex;
|
|
align-items: center;
|
|
.goAppIcon {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
margin-right: 16rpx;
|
|
border-radius: 50%;
|
|
}
|
|
.appName {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 28rpx;
|
|
color: #130f05;
|
|
line-height: 40rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
|
|
.appRight {
|
|
display: flex;
|
|
align-items: center;
|
|
.search {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-size: 24rpx;
|
|
color: #716f69;
|
|
line-height: 36rpx;
|
|
text-align: left;
|
|
font-style: normal;
|
|
}
|
|
.searchIcon {
|
|
width: 24rpx;
|
|
height: 24rpx;
|
|
margin-left: 4rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |