ts_aimz_uni/pages/shop/sellGoods/sellGoods.vue
2025-06-17 16:33:04 +08:00

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>