| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view>
- <u-row
- customStyle="margin-bottom: 10px"
- style=" border-bottom: 2rpx solid #f0f0f0; color: #434343;"
- v-for="(items, id) in eyeData"
- >
- <u-col v-for="item in tableEye" :span="item.span" style='padding: 32rpx 0;'>
- <view v-if="id == 0" class="demo-layout bg-purple-light">{{item.label}}</view>
- <view v-else style="color: rgba(0,0,0,0.60);">{{items[item.title]}}</view>
- </u-col>
- </u-row>
- </view>
- </template>
- <script>
- export default {
- props:{
- eyeData: {
- type: Array,
- default: []
- },
- tableEye: {
- type: Array,
- default: []
- }
- },
- data() {
- return {
-
- }
- },
- }
- </script>
- <style>
- </style>
|