1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="activity">
- <!-- <image @click.stop="navToDetailPage" src="https://img.caimei365.com/group1/M00/03/9A/Cmis216Zf8GAb_UqABE6NiwUUZs004.jpg" mode="widthFix"></image> -->
- <web-view :webview-styles="webviewStyles" :src="activityPath"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- webviewStyles: {
- progress: {
- color: '#FF3333'
- }
- },
- productID:'',
- activityPath:'https://www.caimei365.com/info/center-3-1.html'
- }
- },
- onLoad(option) {
- console.log(option)
- this.activityPath = option.path
- this.productID = option.productID
- uni.setNavigationBarTitle({title:'多重精华,多重修复'});
- },
- methods:{
- navToDetailPage() {//跳转商品详情页
- this.$api.navigateTo(`/pages/goods/product?id=${this.productID}`)
- },
- }
- }
- </script>
-
- <style lang="scss">
- .activity{
- width: 100%;
- height: auto;
- image{
- width: 100%;
- height: auto;
- }
- }
- </style>
|