Commit b6c476dd authored by 黄奎's avatar 黄奎

页面修改

parent b9a192ee
<template>
<view class="trade-activity">
wo shi ces
</view>
<view class="trade-activity">
<view class="ad-chi" v-for="(item, index) in tradeData">
{{item.ActivityName}}
<img :src="item.CoverImg" style="margin-bottom:-4px" mode="widthFix" />
</view>
</view>
</template>
<script>
export default {
props: ["dataObj"],
data() {
return {
}
},
created() {
console.log("dataObj",this.dataObj);
},
methods: {
},
};
export default {
props: ["dataObj"],
data() {
return {
tradeData:this.dataObj
}
},
created() {
console.log("tradeData", this.tradeData);
},
methods: {
},
};
</script>
<style>
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment