82 lines
1.1 KiB
Vue
82 lines
1.1 KiB
Vue
<template>
|
|
<view class="page">
|
|
<!-- #ifdef APP -->
|
|
<statusBar></statusBar>
|
|
<!-- #endif -->
|
|
|
|
<!-- 导航栏 -->
|
|
<uni-nav-bar
|
|
:fixed="true"
|
|
:statusBar="true"
|
|
:border="false"
|
|
title="销售过程"
|
|
leftIcon="left"
|
|
@clickLeft="goBack"
|
|
color="#333"
|
|
backgroundColor="#FFFFFF">
|
|
</uni-nav-bar>
|
|
|
|
<view class="content">
|
|
<view class="empty-state">
|
|
<text class="empty-text">家具销售场景 - 销售过程功能开发中...</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// #ifdef APP
|
|
import statusBar from "@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar";
|
|
// #endif
|
|
|
|
export default {
|
|
// #ifdef APP
|
|
components: {
|
|
statusBar
|
|
},
|
|
// #endif
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
onLoad() {
|
|
},
|
|
methods: {
|
|
goBack() {
|
|
uni.navigateBack();
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.page {
|
|
min-height: 100vh;
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
.content {
|
|
padding-top: 44px;
|
|
padding: 44px 16px 20px;
|
|
}
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 400px;
|
|
}
|
|
|
|
.empty-text {
|
|
font-size: 16px;
|
|
color: #999999;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|