certification.vue 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <!-- 商家资质 -->
  3. <view>
  4. <view class="box_qualification" v-for="(item,index) in list" :key="index">
  5. <view class="box_head_cert">营业执照</view>
  6. <view class="cert_box_code">资质编号:97655788888FS7665</view>
  7. <view class="box_certification">1</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. list: [{
  16. title: 1,
  17. }, {
  18. title: 1,
  19. }]
  20. }
  21. }
  22. }
  23. </script>
  24. <style lang="scss">
  25. .box_qualification {
  26. margin: 20rpx;
  27. padding: 20rpx;
  28. background-color: #fff;
  29. border-radius: 6rpx;
  30. }
  31. .box_head_cert {
  32. font-size: 30rpx;
  33. }
  34. .cert_box_code {
  35. font-size: 26rpx;
  36. color: #4B5563;
  37. }
  38. .box_certification {
  39. margin-top: 20rpx;
  40. width: 100%;
  41. height: 240rpx;
  42. background-color: pink;
  43. border-radius: 20rpx;
  44. }
  45. </style>