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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -151,9 +151,10 @@ export default {
})
},
toAdd() {
this.$emit('change', {
type: 'Add',
})
// this.$emit('change', {
// type: 'Add',
// })
uni.navigateTo({url: './add'})
},
idNumberInit(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