You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
358 B
29 lines
358 B
1 year ago
|
<template>
|
||
|
<view>
|
||
|
<!-- 顶部导航栏 -->
|
||
|
<u-navbar
|
||
|
title="动态盘点"
|
||
|
placeholder
|
||
|
:autoBack="true"
|
||
|
leftIconSize='35'
|
||
|
bgColor='#d3832a'
|
||
|
leftIconColor='#ffffff'
|
||
|
titleStyle='color:#ffffff'
|
||
|
></u-navbar>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|