新增信息更新

This commit is contained in:
weipengfei 2023-07-29 14:39:08 +08:00
parent b8511bf263
commit 778510b9a7
3 changed files with 35 additions and 2 deletions

View File

@ -313,7 +313,16 @@
}, {
"path": "newArchives/newArchives",
"style": {
"navigationBarTitleText": "新增档案",
"navigationBarTitleText": "信息登记",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#3175f9",
"navigationBarTextStyle": "white"
}
}, {
"path": "updateArchives/updateArchives",
"style": {
"navigationBarTitleText": "信息更新",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#3175f9",
"navigationBarTextStyle": "white"

View File

@ -1,6 +1,7 @@
<template>
<view class="">
<button class="new_btn" @click="navTo('/subpkg/newArchives/newArchives')">新建档案</button>
<button class="new_btn" @click="navTo('/subpkg/newArchives/newArchives')">信息登记</button>
<button class="new_btn" @click="navTo('/subpkg/updateArchives/updateArchives')">信息更新(测试中)</button>
</view>
</template>

View File

@ -0,0 +1,23 @@
<template>
<view class=""></view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {},
onShow() {},
methods: {},
onPullDownRefresh() {
uni.stopPullDownRefresh()
}
}
</script>
<style lang="scss">
</style>