index.vue 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="demo-page">
  3. <!-- 页面标题 -->
  4. <view class="title">普惠金融服务站</view>
  5. <!-- 段落文本 -->
  6. <view class="content">业绩排名</view>
  7. <!-- 按钮 -->
  8. <button @click="goBack">返回上一页</button>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. // 可在此定义页面所需的数据
  16. };
  17. },
  18. methods: {
  19. goBack() {
  20. // 返回上一页
  21. uni.navigateBack({
  22. delta: 1
  23. });
  24. }
  25. }
  26. };
  27. </script>
  28. <style scoped>
  29. .demo-page {
  30. padding: 20px;
  31. text-align: center;
  32. }
  33. .title {
  34. white-space: pre-wrap;
  35. text-align: left;
  36. font-weight: bold;
  37. flex: left;
  38. margin-bottom: 10px;
  39. }
  40. .content {
  41. font-size: 16px;
  42. margin-bottom: 20px;
  43. }
  44. </style>