master
jevononlie 5 months ago
parent eb791f6d27
commit 57139a18fa

@ -2,7 +2,7 @@
* @Author: jevononlie 728254585@qq.com * @Author: jevononlie 728254585@qq.com
* @Date: 2024-04-10 13:38:49 * @Date: 2024-04-10 13:38:49
* @LastEditors: jevononlie 728254585@qq.com * @LastEditors: jevononlie 728254585@qq.com
* @LastEditTime: 2024-05-08 16:29:35 * @LastEditTime: 2024-05-24 14:54:57
* @FilePath: /app-nx-personal/src/config.ts * @FilePath: /app-nx-personal/src/config.ts
* @Description: ,`customMade`, koroFileHeader : https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: ,`customMade`, koroFileHeader : https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/ */

@ -127,6 +127,12 @@
"pagePath": "pages/my/my", "pagePath": "pages/my/my",
"iconPath": "static/tabs/user_default.png", "iconPath": "static/tabs/user_default.png",
"selectedIconPath": "static/tabs/user_selected.png" "selectedIconPath": "static/tabs/user_selected.png"
},
{
"path": "pages/dustbin/dustbin",
"style": {
"navigationBarTitleText": "垃圾袋编码"
}
} }
] ]
}, },

@ -0,0 +1,58 @@
<!--
* @Author: jevononlie 728254585@qq.com
* @Date: 2024-05-16 16:30:17
* @LastEditors: jevononlie 728254585@qq.com
* @LastEditTime: 2024-05-27 13:43:55
* @FilePath: /app-nx-personal/src/pages/recyclingCabinet/recyclingCabinet.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<script setup lang="ts">
import { ref, reactive, computed } from 'vue'
import { onShow, onLoad } from '@dcloudio/uni-app'
//
const { safeAreaInsets } = uni.getSystemInfoSync()
onShow(() => {
//
})
onLoad((options) => {
console.log('options垃圾箱扫描过来参数', JSON.stringify(options, null, 4))
})
const handleIndex = () => {
wx.navigator({
url: 'pages/index/index',
})
}
const handleStaff = () => {
uni.navigateToMiniProgram({
appId: 'wxf82bcc798891a29d',
path: 'pages/index/index?id=123',
extraData: {
'data1': 'test'
},
success(res) {
//
}
})
}
</script>
<template>
<view class="viewport">
<view class="todo">todo</view>
</view>
</template>
<style lang="scss">
page {
height: 100%;
overflow: hidden;
background-color: #f7f7f8;
}
.viewport {
position: relative;
height: 100%;
padding: 32rpx;
}
</style>
Loading…
Cancel
Save