You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="flex-col page"> <view class="flex-col section_2"> <view class="flex-col section_3"> <view class="justify-between search"> <view class="flex-row group_4"> <image src="https://project-user-resource-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497990103652578.png" class="image_6" /> <text class="text_2">请输入评级编号</text> </view> <view class="flex-col items-center text-wrapper" @click="$url('/packages/ratingQueryDetail/ratingQueryDetail')"> <text>搜索</text> </view> </view> </view> <view class="section_4"> </view> </view> </view></template>
<script> export default { data() { return {}; }, };</script>
<style scoped lang="css"> .page { background-color: #f6f6f6; width: 100%; overflow-y: auto; height: 100%; } .section_2 { padding: 32rpx 32rpx 16rpx; flex: 1 1 auto; background-color: rgb(255, 255, 255); overflow-y: auto; } .section_3 { padding: 6rpx 0; background-color: rgb(246, 246, 246); border-radius: 10rpx; } .section_4 { margin-top: 1296rpx; align-self: center; background-color: rgb(0, 0, 0); border-radius: 4rpx; width: 196rpx; height: 8rpx; } .search { margin-left: 31rpx; margin-right: 6rpx; } .group_4 { align-self: center; color: rgb(195, 195, 195); font-size: 28rpx; font-weight: 500; line-height: 40rpx; white-space: nowrap; } .text-wrapper { padding: 20rpx 0; color: rgb(255, 255, 255); font-size: 32rpx; font-weight: 500; line-height: 44rpx; white-space: nowrap; background-color: rgb(231, 162, 63); border-radius: 6rpx; width: 130rpx; height: 84rpx; } .image_6 { margin-bottom: 4rpx; width: 37rpx; height: 34rpx; } .text_2 { margin-left: 10rpx; }</style>
|