AiListPage

This commit is contained in:
liuye
2021-12-23 11:43:36 +08:00
parent f172bbd77d
commit 407b9cd463
13 changed files with 11 additions and 20 deletions

View File

@@ -1,15 +1,13 @@
<template> <template>
<div class="AppPageBasic"> <div class="AppPageBasic">
<AppListPage :label="label" :appList="appList" /> <AiListPage :label="label" :appList="appList" />
</div> </div>
</template> </template>
<script> <script>
import AppListPage from '@/components/AppListPage/AppListPage'
export default { export default {
name: 'AppPageBasic', name: 'AppPageBasic',
appName: '工作台(基层办公)', appName: '工作台(基层办公)',
components: { AppListPage },
data() { data() {
return { return {
label: '基层办公', label: '基层办公',

View File

@@ -1,15 +1,13 @@
<template> <template>
<div class="AppPageCivilization"> <div class="AppPageCivilization">
<AppListPage :label="label" :appList="appList" /> <AiListPage :label="label" :appList="appList" />
</div> </div>
</template> </template>
<script> <script>
import AppListPage from '@/components/AppListPage/AppListPage'
export default { export default {
name: 'AppPageCivilization', name: 'AppPageCivilization',
appName: '工作台(文明乡风)', appName: '工作台(文明乡风)',
components: { AppListPage },
data() { data() {
return { return {
label: '文明乡风', label: '文明乡风',

View File

@@ -1,15 +1,13 @@
<template> <template>
<div class="AppPageInteraction"> <div class="AppPageInteraction">
<AppListPage :label="label" :appList="appList" /> <AiListPage :label="label" :appList="appList" />
</div> </div>
</template> </template>
<script> <script>
import AppListPage from '@/components/AppListPage/AppListPage'
export default { export default {
name: 'AppPageInteraction', name: 'AppPageInteraction',
appName: '工作台(居民互动)', appName: '工作台(居民互动)',
components: { AppListPage },
data() { data() {
return { return {
label: '居民互动', label: '居民互动',

View File

@@ -1,15 +1,13 @@
<template> <template>
<div class="AppPageParty"> <div class="AppPageParty">
<AppListPage :label="label" :appList="appList" /> <AiListPage :label="label" :appList="appList" />
</div> </div>
</template> </template>
<script> <script>
import AppListPage from '@/components/AppListPage/AppListPage'
export default { export default {
name: 'AppPageParty', name: 'AppPageParty',
appName: '工作台(基层党建)', appName: '工作台(基层党建)',
components: { AppListPage },
data() { data() {
return { return {
label: '基层党建', label: '基层党建',

View File

@@ -1,15 +1,13 @@
<template> <template>
<div class="AppPageResident"> <div class="AppPageResident">
<AppListPage :label="label" :appList="appList" /> <AiListPage :label="label" :appList="appList" />
</div> </div>
</template> </template>
<script> <script>
import AppListPage from '@/components/AppListPage/AppListPage'
export default { export default {
name: 'AppPageResident', name: 'AppPageResident',
appName: '工作台(居民)', appName: '工作台(居民)',
components: { AppListPage },
data() { data() {
return { return {
label: '居民管理', label: '居民管理',

View File

@@ -9,8 +9,8 @@
</template> </template>
<script> <script>
import Detail from './components/detail' import Detail from './detail'
import Add from './components/add' import Add from './add'
export default { export default {
name: 'AppSpecialPeople', name: 'AppSpecialPeople',

View File

@@ -151,9 +151,10 @@ export default {
}) })
}, },
toAdd() { toAdd() {
this.$emit('change', { // this.$emit('change', {
type: 'Add', // type: 'Add',
}) // })
uni.navigateTo({url: './add'})
}, },
idNumberInit(idNumber) { idNumberInit(idNumber) {
if(!idNumber) { if(!idNumber) {

View File

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 282 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 766 B

After

Width:  |  Height:  |  Size: 766 B

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB