| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view class="mone">
- <template v-for="ls in cardInfo.model_imgs">
- <image :src="ls" class="image" mode="widthFix"></image>
- </template>
- </view>
- </template>
- <script>
- import {
- mapState,
- } from 'vuex';
- export default {
- props: {
- // 浏览数量
- shareNumber: {
- type: Number,
- default:0
- },
- // 是否显示默认数据
- isDefault: {
- type: Boolean,
- default: true
- },
- isShare: {
- type: Boolean,
- default: false
- },
- //1为模板2为用户
- isLook: {
- type: Number,
- default: 0
- },
- templateDetail: {
- type: Object,
- default: () => {
- return {}
- }
- },
- },
- data() {
- return {
- defaults: {
- model_imgs: [
- 'https://api.myjie.cn/resource/user/user1/fw1.png',
- 'https://api.myjie.cn/resource/user/user1/fw2.png',
- 'https://api.myjie.cn/resource/user/user1/fw3.png',
- 'https://api.myjie.cn/resource/user/user1/fw4.png'
- ],
- }
- }
- },
- computed: {
- ...mapState(['baseURL']),
- cardInfo() {
- if (this.isDefault) {
- return this.defaults
- } else {
- console.log(this.templateDetail,'this.templateDetail')
- return this.templateDetail
- }
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .mone {
- display: flex;
- flex-direction: column;
- line-height: 0;
- .image{
- width: 750rpx;
- }
- }
- </style>
|