12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="zn-container">
- <view>
- <u-image width="750rpx" height="1988rpx" src="https://lese.sxzxyj.net/img/2020/11/28/4cbe4bf9213a4a5c8d658e4903ec30e0.jpg"></u-image>
- <u-image width="750rpx" height="2211rpx" src="https://lese.sxzxyj.net/img/2020/11/28/83daa070fe8f4bb9a8c583cd05bfa17b.jpg"></u-image>
- <u-image width="750rpx" height="2219rpx" src="https://lese.sxzxyj.net/img/2020/11/28/da1d20d4003f4d8e8b0d836d0e4dfbed.jpg"></u-image>
- <u-image width="750rpx" height="2277rpx" src="https://lese.sxzxyj.net/img/2020/11/28/50723317eb0b43908019709ac183ad6a.jpg"></u-image>
- <u-image width="750rpx" height="1905rpx" src="https://lese.sxzxyj.net/img/2020/11/28/c0acd89eb40a4050a7af8ac4f8855489.jpg"></u-image>
- <u-image width="750rpx" height="1958rpx" src="https://lese.sxzxyj.net/img/2020/11/28/df135dea14014a25b93d5ae0bb260beb.jpg"></u-image>
- </view>
- </view>
- </template>
- <script>
- export default{
- data() {
- return {
- baseUrl: ''
- }
- },
- onLoad() {
- // 开启分享
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- }
- }
- </script>
- <style lang="less">
- .zn-container{
- width: 100%;
- background-color: #FFFFFF;
- > view{
- width: 100%;
- margin: 0 auto;
- }
- }
- </style>
|