1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="activity">
- <web-view :webview-styles="webviewStyles" :src="activityPath"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- webviewStyles: {
- progress: {
- color: '#FF3333'
- }
- },
- productID:'',
- activityPath:''
- }
- },
- onLoad(option) {
- console.log(option)
- switch(option.id){
- case '277':
- this.activityPath = 'https://spi-b.caimei365.com/caimei-h5/html/2020/caimeih5_01.html'
- uni.setNavigationBarTitle({title:'三昭国际优惠'});
- break;
- case '278':
- this.activityPath = 'https://spi-b.caimei365.com/caimei-h5/html/2020/caimeih5_02.html'
- uni.setNavigationBarTitle({title:'点斗优惠'});
- break;
- case '223':
- this.activityPath = 'https://spi-b.caimei365.com/caimei-h5/html/2020/caimeih5_03.html'
- uni.setNavigationBarTitle({title:'品牌OEM服务'});
- break;
- }
-
- },
- methods:{
-
- }
- }
- </script>
-
- <style lang="scss">
- .activity{
- width: 100%;
- height: auto;
- image{
- width: 100%;
- height: auto;
- }
- }
- </style>
|