myEvaluate.vue 773 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="page">
  3. <view class="p-eav" v-for="(item,idx) in 2" :key='idx' >
  4. <eavItem />
  5. <view class="ic-wrap align-center justify-center">
  6. <image src="/static/meva-del.png" mode="widthFix" class="ic"></image>
  7. </view>
  8. </view>
  9. <safe-area bgColor="#fff" />
  10. </view>
  11. </template>
  12. <script>
  13. import eavItem from './components/eva-item.vue'
  14. export default {
  15. components:{
  16. eavItem
  17. },
  18. data() {
  19. return {
  20. };
  21. }
  22. }
  23. </script>
  24. <style lang="scss">
  25. .p-eav{
  26. border-bottom: 2rpx solid #eee;
  27. position: relative;
  28. &:last-child{
  29. border: none;
  30. }
  31. .ic-wrap{
  32. position: absolute;
  33. right: 0;
  34. bottom: 14rpx;
  35. width: 80rpx;
  36. height: 80rpx;
  37. z-index: 2;
  38. .ic{
  39. width: 32rpx;
  40. height: 32rpx;
  41. }
  42. }
  43. }
  44. </style>