This commit is contained in:
wangyuxin
2026-04-21 17:24:52 +08:00
parent b8fcaff48c
commit fb08057489
36 changed files with 630 additions and 329 deletions

View File

@@ -52,132 +52,98 @@
</template>
<script setup>
import {
ref
} from 'vue';
<script>
export default {
onReady: function(e) {},
components: {
const commonFuncList = ref([{
name: "一键开门",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-door.png",
path: "/pageSubPack/notice-list/oneClickOpen"
},
computed: {
{
name: "生活缴费",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-pay.png",
path: "/pageSubPack/payment-list/paymentIndex"
},
created() {
{
name: "在线报修",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-repair.png",
path: "/pageSubPack/online-repair/onlineRepair"
},
onShow() {
{
name: "访客邀请",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-visitor.png",
path: "/pageSubPack/visitor/visitor-list"
}
])
const communityFuncList = ref([{
name: "一键开门",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-door.png",
path: "/pageSubPack/notice-list/oneClickOpen"
},
mounted() {},
onReady() {
this.$nextTick(() => {
})
{
name: "生活缴费",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-pay.png",
path: "/pageSubPack/payment-list/paymentIndex"
},
data() {
return {
/* 设定状态栏默认高度 */
statusBarHeight: 20,
// 常用功能列表
commonFuncList: [{
name: "一键开门",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-door.png",
path: "/pages/notice-list/oneClickOpen"
},
{
name: "生活缴费",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-pay.png",
path: "/pages/payment-list/paymentIndex"
},
{
name: "在线报修",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-repair.png",
path: "/pages/online-repair/onlineRepair"
},
{
name: "访客邀请",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-visitor.png",
path: "/pages/visitor/visitor-list"
}
],
// 智慧社区功能列表
communityFuncList: [{
name: "一键开门",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-door.png",
path: "/pages/notice-list/oneClickOpen"
},
{
name: "生活缴费",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-pay.png",
path: "/pages/payment-list/paymentIndex"
},
{
name: "在线报修",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-repair.png",
path: "/pages/online-repair/onlineRepair"
},
{
name: "访客邀请",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-visitor.png",
path: "/pages/visitor/visitor-list"
},
{
name: "投诉意见",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-complaint.png",
path: "/pages/service-list/complaintsSuggestionsIndex"
},
{
name: "问卷调查",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-survey.png",
path: "/pages/service-list/questionnaireSurveyIndex"
},
{
name: "社区活动",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-activity.png",
path: "/pages/activity-list/activityList"
},
{
name: "公告公示",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-notice.png",
path: "/pages/notice-list/noticeList"
},
{
name: "联系物业",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-contact.png",
path: "/pages/service-list/contactProperty"
}
]
}
{
name: "在线报修",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-repair.png",
path: "/pageSubPack/online-repair/onlineRepair"
},
methods: {
// 功能点击事件
handleFuncClick(item) {
console.log(item.path);
uni.setStorageSync('sourcePage', 'serviceIndex')
uni.redirectTo({
url: item.path,
success: res => {},
fail: () => {},
complete: () => {}
});
},
{
name: "访客邀请",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-visitor.png",
path: "/pageSubPack/visitor/visitor-list"
},
{
name: "投诉意见",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-complaint.png",
path: "/pageSubPack/service-list/complaintsSuggestionsIndex"
},
{
name: "问卷调查",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-survey.png",
path: "/pageSubPack/service-list/questionnaireSurveyIndex"
},
{
name: "社区活动",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-activity.png",
path: "/pageSubPack/activity-list/activityList"
},
{
name: "公告公示",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-notice.png",
path: "/pageSubPack/notice-list/noticeList"
},
{
name: "联系物业",
icon: "http://47.104.199.163:9090/images/propertyImgs/icon-contact.png",
path: "/pageSubPack/service-list/contactProperty"
}
])
const loginName = ref("wangh")
const phoneNum = ref('156*****1212')
// --方法----
const handleFuncClick = (item) => {
uni.setStorageSync('sourcePage', 'serviceIndex')
uni.redirectTo({
url: item.path,
success: res => {},
fail: () => {},
complete: () => {}
});
}
</script>
<style lang="scss">
page {
background: #f2f1f6;