123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <view class="wrap">
- <page-nav :desc="desc" title="nav.template"></page-nav>
- <view class="list-wrap">
- <u-cell-group title-bg-color="rgb(243, 244, 246)" :title="getGroupTitle(item)" v-for="(item, index) in list" :key="index">
- <u-cell-item :titleStyle="{fontWeight: 500}" @click="openPage(item1.path)" :title="getFieldTitle(item1)"
- v-for="(item1, index1) in item.list" :key="index1">
- <image slot="icon" class="u-cell-icon" :src="getIcon(item1.icon)" mode="widthFix"></image>
- </u-cell-item>
- </u-cell-group>
- </view>
- <u-gap height="70"></u-gap>
- <!-- <u-tabbar :list="vuex_tabbar" :mid-button="true"></u-tabbar> -->
- </view>
- </template>
- <script>
- import list from "./template.config.js";
- export default {
- data() {
- return {
- list: list,
- // desc: '收集众多的常用页面和布局,减少开发者的重复工作,让你专注逻辑,事半功倍'
- }
- },
- computed: {
- getIcon() {
- return path => {
- return 'https://cdn.uviewui.com/uview/example/' + path + '.png';
- }
- },
- desc() {
- return this.$t('template.desc');
- }
- },
- onShow() {
- uni.setNavigationBarTitle({
- title: this.$t('nav.template')
- });
- },
- methods: {
- openPage(path) {
- this.$u.route({
- url: path.indexOf('/page') == 0 ? path : '/pages/template/' + path + '/index'
- })
- },
- getGroupTitle(item) {
- return this.$i18n.locale == 'zh' ? item.groupName : item.groupName_en
- },
- getFieldTitle(item) {
- return this.$i18n.locale == 'zh' ? item.title : item.title_en
- }
- }
- }
- </script>
- <style>
- /* page {
- background-color: rgb(240, 242, 244);
- } */
- </style>
- <style lang="scss" scoped>
- .u-cell-icon {
- width: 36rpx;
- height: 36rpx;
- margin-right: 8rpx;
- }
- </style>
|