28 lines
452 B
Vue
28 lines
452 B
Vue
<template>
|
|
<view>
|
|
<Navbar title="库存盘点" :showRightText="true" :isBack="false" :text="'盘点记录'" @chickIcon="handleRightText" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
methods: {
|
|
handleRightText() {
|
|
console.log('🚀 ~ handleRightText ~ ')
|
|
// uni.navigateTo({
|
|
// url: '/pages/inspectionEntry/inspectionList'
|
|
// })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|