12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view class="content">
- <view v-html="content"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- content:"",
- }
- },
- onLoad(val) {
- var info=uni.getStorageSync('content');
- console.log(this.content)
- }
-
- }
-
-
- </script>
- <style scoped lang="scss">
- page{
- height: 100%;
- }
- .content{
- height: 100%;
- }
- .logo{
- padding-top: 15%;
- text-align: center;
- image{
- width: 80px;
- height: 80px;
- }
- p{
- margin: 10px 0px;
- font-size: 14px;
- }
- }
- .set-box{
- margin-top: 30upx;
- background: #fff;
- padding: 0 40upx;
- .item{
-
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 25upx 0;
- .left{
- display: flex;
- align-items: center;
- .text{
- font-size: 30upx;
- color: #666;
- }
- }
- .right{
- width: 10upx;
- height: 20upx;
- }
- .right-text{
-
- }
- }
- }
- .contact-btn {
- display: inline-block;
- position: absolute;
- width: 100%;
- background: salmon;
- opacity: 0;
- }
- </style>
|