| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <!-- 商家资质 -->
- <view>
- <view class="box_qualification" v-for="(item,index) in list" :key="index">
- <view class="box_head_cert">营业执照</view>
- <view class="cert_box_code">资质编号:97655788888FS7665</view>
- <view class="box_certification">1</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [{
- title: 1,
- }, {
- title: 1,
- }]
- }
- }
- }
- </script>
- <style lang="scss">
- .box_qualification {
- margin: 20rpx;
- padding: 20rpx;
- background-color: #fff;
- border-radius: 6rpx;
- }
- .box_head_cert {
- font-size: 30rpx;
- }
- .cert_box_code {
- font-size: 26rpx;
- color: #4B5563;
- }
- .box_certification {
- margin-top: 20rpx;
- width: 100%;
- height: 240rpx;
- background-color: pink;
- border-radius: 20rpx;
- }
- </style>
|