Files
huangjingfen/pro_v3.5.1/view/uniapp/pages/user/components/menus/template1.vue
apple 78de918c37 Initial commit: queue workspace
Made-with: Cursor
2026-03-21 02:55:24 +08:00

54 lines
1.6 KiB
Vue

<script>
export default {
inject: ['goMenuPage'],
props: {
menuData: {
type: Object,
default: () => {}
},
routineContact: {
type: Number,
default: 0
}
}
};
</script>
<template>
<view class="">
<view class="pt-34 pr-30 pb-36 pl-32 bg--w111-fff rd-16rpx mt-20 service ml-20 mr-20">
<view class="fs-30 fw-500 lh-42rpx text--w111-333">{{ menuData.title }}</view>
<view class="grid-column-4 grid-gap-x-76rpx grid-gap-y-54rpx mt-38">
<view v-show="item.is_show" v-for="(item, index) in menuData.list" :key="index">
<!-- #ifdef MP -->
<view class="flex-col flex-center" v-if="item.url!='/pages/extension/customer_list/chat' || (item.url=='/pages/extension/customer_list/chat' && routineContact == 0)" @click="goMenuPage(item.url, item.name)">
<image :src="item.pic" class="image"></image>
<text class="fs-26 lh-36rpx text--w111-282828 pt-22">{{ item.name }}</text>
</view>
<button class="flex-col flex-center" open-type='contact' v-if="item.url=='/pages/extension/customer_list/chat' && routineContact == 1">
<image :src="item.pic" class="image"></image>
<text class="fs-26 lh-36rpx text--w111-282828 pt-22">{{ item.name }}</text>
</button>
<!-- #endif -->
<!-- #ifndef MP -->
<view class="flex-col flex-center" @click="goMenuPage(item.url, item.name)">
<image :src="item.pic" class="image"></image>
<text class="fs-26 lh-36rpx text--w111-282828 pt-22">{{ item.name }}</text>
</view>
<!-- #endif -->
</view>
</view>
</view>
</view>
</template>
<style scoped lang="scss">
.service {
.image {
width: 48rpx;
height: 48rpx;
}
}
</style>