31 lines
618 B
Vue
31 lines
618 B
Vue
<template>
|
|
<view>
|
|
<view class="industry--list">
|
|
<view class="industry--box">
|
|
<image class="industry--cover" src="../../static/dev/good_cover_00.jpg" mode="aspectFill"></image>
|
|
<view class="industry--content">
|
|
<view class="industry--title">MLB</view>
|
|
<view class="industry--credibility">信誉值</view>
|
|
<view class="industry--business">主营</view>
|
|
<view class="industry--trading">成交</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"industry-list",
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|