You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
548 B
35 lines
548 B
2 years ago
|
<template>
|
||
|
<view>
|
||
|
<image :src="imgs" mode="widthFix" class="width90 mart15"></image>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {
|
||
|
promotionalPosters
|
||
|
} from '../../../Utils/Api.js';
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
imgs: ''
|
||
|
}
|
||
|
},
|
||
|
onLoad() {
|
||
|
this.promotionalPosters();
|
||
|
},
|
||
|
methods: {
|
||
|
promotionalPosters() {
|
||
|
promotionalPosters().then(res => {
|
||
|
if (res.return_code == '000000') {
|
||
|
this.imgs = res.return_data;
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|