新增固定资产页面

This commit is contained in:
weipengfei 2023-07-31 14:47:01 +08:00
parent 4fed6d2f9e
commit 68d1bc8218
3 changed files with 34 additions and 1 deletions

View File

@ -328,6 +328,15 @@
"navigationBarTextStyle": "white"
}
}, {
"path": "fixedAssets/fixedAssets",
"style": {
"navigationBarTitleText": "固定资产",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#3175f9",
"navigationBarTextStyle": "white"
}
}]
}],
"globalStyle": {

View File

@ -206,7 +206,8 @@ export const oaHomeData = [
},
{
text: '固定资产',
icon: prefix + 'oa/wcsq@2x.png'
icon: prefix + 'oa/wcsq@2x.png',
url: '/subpkg/fixedAssets/fixedAssets'
},
{
text: '合同管理',

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>