AiListPage
@@ -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: '基层办公',
|
||||||
|
|||||||
@@ -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: '文明乡风',
|
||||||
|
|||||||
@@ -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: '居民互动',
|
||||||
|
|||||||
@@ -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: '基层党建',
|
||||||
|
|||||||
@@ -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: '居民管理',
|
||||||
|
|||||||
@@ -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',
|
||||||
|
|||||||
@@ -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) {
|
||||||
|
Before Width: | Height: | Size: 282 B After Width: | Height: | Size: 282 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 766 B After Width: | Height: | Size: 766 B |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |