康巴易测肤/伤疤uniapp小程序类
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.

59 lines
829B

  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">{{title}}</text>
  6. </view>
  7. <button @click="clk">点击拍照</button>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. title: ''
  15. }
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. clk() {
  21. uni.navigateTo({
  22. url: '/pages/skin-assessment/photograph',
  23. })
  24. },
  25. }
  26. }
  27. </script>
  28. <style>
  29. .content {
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. .logo {
  36. height: 200rpx;
  37. width: 200rpx;
  38. margin-top: 200rpx;
  39. margin-left: auto;
  40. margin-right: auto;
  41. margin-bottom: 50rpx;
  42. }
  43. .text-area {
  44. display: flex;
  45. justify-content: center;
  46. }
  47. .title {
  48. font-size: 36rpx;
  49. color: #8f8f94;
  50. }
  51. </style>