content.vue 957 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="content">
  3. <view v-html="content"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. content:"",
  11. }
  12. },
  13. onLoad(val) {
  14. this.content=uni.getStorageSync('content');
  15. }
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. page{
  20. height: 100%;
  21. }
  22. .content{
  23. height: 100%;
  24. }
  25. .logo{
  26. padding-top: 15%;
  27. text-align: center;
  28. image{
  29. width: 80px;
  30. height: 80px;
  31. }
  32. p{
  33. margin: 10px 0px;
  34. font-size: 14px;
  35. }
  36. }
  37. .set-box{
  38. margin-top: 30upx;
  39. background: #fff;
  40. padding: 0 40upx;
  41. .item{
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-between;
  45. padding: 25upx 0;
  46. .left{
  47. display: flex;
  48. align-items: center;
  49. .text{
  50. font-size: 30upx;
  51. color: #666;
  52. }
  53. }
  54. .right{
  55. width: 10upx;
  56. height: 20upx;
  57. }
  58. .right-text{
  59. }
  60. }
  61. }
  62. .contact-btn {
  63. display: inline-block;
  64. position: absolute;
  65. width: 100%;
  66. background: salmon;
  67. opacity: 0;
  68. }
  69. </style>