You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
1.8 KiB
99 lines
1.8 KiB
<template>
|
|
<view class="my_server">
|
|
<list-cell :icons="'iconfont ' + icons" :colors="colors" :rightshow="false">{{titles}}</list-cell>
|
|
<view class="server_box">
|
|
<view v-for="(item, index) in serverList" :key="index" class="server_list" @tap="jumpLink(item)">
|
|
<view>
|
|
<text :class="'iconfont ' + item.icon" :style="'color:' + colors"></text>
|
|
</view>
|
|
<view class="server_text">
|
|
{{item.name}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import listCell from "./list-cell";
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
components: {
|
|
listCell
|
|
},
|
|
props: {
|
|
serverList: {
|
|
type: Array
|
|
},
|
|
colors: {
|
|
type: String
|
|
},
|
|
titles: {
|
|
type: String,
|
|
default: '我的服务'
|
|
},
|
|
icons: {
|
|
type: String,
|
|
default: 'icon-fuwu'
|
|
}
|
|
},
|
|
methods: {
|
|
jumpLink(row) {
|
|
const whiteUrls = ['pages/views/user/myaddress', 'setting/index']
|
|
if (!whiteUrls.some(v => row.url.includes(v))) {
|
|
uni.showToast({
|
|
icon:'none',
|
|
title: '功能正在开发中,敬请期待'
|
|
})
|
|
return
|
|
}
|
|
//页面跳转
|
|
uni.navigateTo({
|
|
url: row.url
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped lang="scss">
|
|
/* 我的服务 */
|
|
.my_server {
|
|
background-color: #fff;
|
|
margin-bottom: 20upx;
|
|
}
|
|
|
|
.server_box {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
padding-bottom: 30upx;
|
|
}
|
|
.server_box::after{
|
|
width: 25%;
|
|
content: '';
|
|
border:1px solid transparent;
|
|
}
|
|
.server_list {
|
|
max-width: 25%;
|
|
min-width: 25%;
|
|
text-align: center;
|
|
margin-top: 30upx;
|
|
}
|
|
.server_list:active{
|
|
opacity: 0.8;
|
|
}
|
|
.server_list text{
|
|
font-size: 56upx;
|
|
line-height: 60upx;
|
|
display: inline-block;
|
|
}
|
|
.server_text{
|
|
font-size: 24upx;
|
|
color: #3c3c3c;
|
|
margin-top: 15upx;
|
|
}
|
|
</style> |