居民信息管理

This commit is contained in:
liuye
2024-07-12 11:56:16 +08:00
parent 1b14f88546
commit b1002fca35
11 changed files with 495 additions and 609 deletions

View File

@@ -1,6 +1,6 @@
<template> <template>
<section class="AppListPage"> <section class="AppListPage">
<div class="header" :style="{backgroundImage: url(headerBg)}"> <div class="header" :style="{backgroundImage: `url(${headerBg})`}">
<img :src="headerBg" alt=""> <img :src="headerBg" alt="">
<p>{{label}}</p> <p>{{label}}</p>
</div> </div>
@@ -29,8 +29,6 @@ export default {
}, },
methods: { methods: {
linkTo(url) { linkTo(url) {
console.log(111)
console.log(url)
uni.navigateTo({url}) uni.navigateTo({url})
} }
} }

View File

@@ -7,32 +7,31 @@
<script> <script>
export default { export default {
name: 'AppPageInteraction', name: 'AppPageInteraction',
appName: '工作台(居民管理)', appName: '居民管理',
data() { data() {
return { return {
label: '居民管理', label: '居民管理',
appList: [ appList: [
{ {
name: '居民信息管理', name: '居民信息管理',
icon: require('./img/jmhd.png'), icon: 'https://cdn.sinoecare.com/i/2024/07/10/668ddad302ae9.png',
url: '../AppResidentFile/AppResidentFile' url: '/mods/AppResidentFile/AppResidentFile'
}, },
{ {
name: '居民档案', name: '居民档案',
icon: require('./img/jmda.png'), icon: 'https://cdn.sinoecare.com/i/2024/07/10/668ddad1bb61d.png',
url: '../AppPeopleList/AppPeopleList' url: '/mods/AppPeopleList/AppPeopleList'
}, },
// { // {
// name: '小程序公告', // name: '小程序公告',
// icon: require('./img/xcxgg.png'), // icon: 'https://cdn.sinoecare.com/i/2024/07/10/668ddad4445c1.png,
// url: '../AppUniMsg/AppUniMsg' // url: '../AppUniMsg/AppUniMsg'
// } // }
], ],
headerBg: require('./img/header-bg.png'), headerBg: 'https://cdn.sinoecare.com/i/2024/07/10/668ddacfbac60.png',
} }
}, },
onShow() { onShow() {
document.title = "居民管理"
} }
} }
</script> </script>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 684 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

View File

@@ -43,7 +43,7 @@ import {mapState} from 'vuex'
export default { export default {
name: "AppPhotoReport", name: "AppPhotoReport",
appName: "居民上报", appName: "事件上报",
data() { data() {
return { return {
list: [], list: [],

View File

@@ -56,7 +56,7 @@
<script> <script>
export default { export default {
appName: "居民上报详情", appName: "事件上报详情",
data() { data() {
return { return {
info: {}, info: {},

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long