1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view class="page">
- <view class="p-eav" v-for="(item,idx) in 2" :key='idx' >
- <eavItem />
- <view class="ic-wrap align-center justify-center">
- <image src="/static/meva-del.png" mode="widthFix" class="ic"></image>
- </view>
- </view>
- <safe-area bgColor="#fff" />
- </view>
- </template>
- <script>
- import eavItem from './components/eva-item.vue'
- export default {
- components:{
- eavItem
- },
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .p-eav{
- border-bottom: 2rpx solid #eee;
- position: relative;
- &:last-child{
- border: none;
- }
- .ic-wrap{
- position: absolute;
- right: 0;
- bottom: 14rpx;
- width: 80rpx;
- height: 80rpx;
- z-index: 2;
-
- .ic{
- width: 32rpx;
- height: 32rpx;
-
- }
- }
-
- }
- </style>
|