1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="container step">
- <image class="step-img" :src="stepImage" mode="" @click="viewMentuzImage"></image>
- </view>
- </template>
- <script>
- export default {
- data (){
- return {
- stepImage:'https://admin-b.caimei365.com/userfiles/1/images/photo/2020/03/%E8%BF%90%E8%90%A5%E4%BA%BA%E5%91%98%E7%BB%91%E5%AE%9A%E6%AD%A5%E9%AA%A41%403x.png'
- }
- },
- methods:{
- viewMentuzImage(e) {
- let self = this
- uni.previewImage({
- urls: self.stepImage,
- current: 0
- });
- },
- }
- }
- </script>
- <style lang="scss">
- .step{
- width: 100%;
- height: auto;
- .step-img{
- width: 100%;
- height: 3798rpx;
- }
- }
- </style>
|