30 lines
492 B
Vue
30 lines
492 B
Vue
<!-- 我要卖 -->
|
|
<template>
|
|
<view class="page-container"></view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
setup() {},
|
|
data() {
|
|
return {};
|
|
},
|
|
onLoad(options) {
|
|
uni.setNavigationBarTitle({
|
|
title: "我要卖",
|
|
});
|
|
uni.setNavigationBarColor({
|
|
frontColor: "#000000",
|
|
backgroundColor: "#FFFFFF",
|
|
animation: {
|
|
duration: 500,
|
|
timingFunc: "easeIn",
|
|
},
|
|
});
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|