| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <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">
- <view v-if="id == 0" class="demo-layout bg-purple-light" style='padding: 32rpx 0;'>{{item.label}}</view>
- <view v-if="id == 0" style="color: rgba(0,0,0,0.60); padding: 32rpx 0;">{{items[item.title]}}</view>
- <view v-else style="color: rgba(0,0,0,0.60); padding: 32rpx 0;">{{items[item.title]}}</view>
- </u-col>
- </u-row>
- </view>
- </template>
- <script>
- export default {
- props:{
- eyeData: {
- type: Array,
- default: []
- },
- tableEye: {
- type: Array,
- default: []
- }
- },
- created(){
-
- },
- data() {
- return {
-
- }
- },
- }
- </script>
- <style>
- </style>
|