| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div>
- <div class="imgSector"><img :src="adList[this.$store.state.template.editWebsiteClass - 1]" alt="自助建站广告示例图"></div>
- </div>
- </template>
- <script>
- export default {
- components: {
- },
- props: {
- dataSort: {
- type: Number,
- default: 0
- }
- },
- data() {
- return {
- adList: [
- "https://img.bjzxtw.org.cn/master/image/jpeg/20251218/1766037864430211.jpg",
- "https://img.bjzxtw.org.cn/master/image/jpeg/20251218/1766046928121425.jpg",
- "https://img.bjzxtw.org.cn/master/image/png/20260123/1769150356310701.png",
- "https://img.bjzxtw.org.cn/master/image/png/20260123/1769156945822889.png",
- "https://img.bjzxtw.org.cn/master/image/jpeg/20251223/1766483147860978.jpg", //皮肤5
- "https://img.bjzxtw.org.cn/master/image/png/20251218/1766041303638810.png", //皮肤6
- "https://img.bjzxtw.org.cn/master/image/jpeg/20251224/1766543103356259.jpg", //皮肤7
- "https://img.bjzxtw.org.cn/pre/image/jpeg/20250825/1756089046963566.jpg",
- "https://img.bjzxtw.org.cn/pre/image/jpeg/20250825/1756089100963223.jpg",
- "https://img.bjzxtw.org.cn/pre/image/jpeg/20250825/1756089122529907.jpg",
- "https://img.bjzxtw.org.cn/pre/image/jpeg/20250825/1756089147944865.jpg",
- ]
- };
- },
- };
- </script>
- <style scoped lang="less">
- .imgSector {
- img {
- display: block;
- }
- }
- </style>
|