content.vue 977 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. var info=uni.getStorageSync('content');
  15. console.log(this.content)
  16. }
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. page{
  21. height: 100%;
  22. }
  23. .content{
  24. height: 100%;
  25. }
  26. .logo{
  27. padding-top: 15%;
  28. text-align: center;
  29. image{
  30. width: 80px;
  31. height: 80px;
  32. }
  33. p{
  34. margin: 10px 0px;
  35. font-size: 14px;
  36. }
  37. }
  38. .set-box{
  39. margin-top: 30upx;
  40. background: #fff;
  41. padding: 0 40upx;
  42. .item{
  43. display: flex;
  44. align-items: center;
  45. justify-content: space-between;
  46. padding: 25upx 0;
  47. .left{
  48. display: flex;
  49. align-items: center;
  50. .text{
  51. font-size: 30upx;
  52. color: #666;
  53. }
  54. }
  55. .right{
  56. width: 10upx;
  57. height: 20upx;
  58. }
  59. .right-text{
  60. }
  61. }
  62. }
  63. .contact-btn {
  64. display: inline-block;
  65. position: absolute;
  66. width: 100%;
  67. background: salmon;
  68. opacity: 0;
  69. }
  70. </style>