| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <template>
- <view class="container">
- <scroll-view class="content" scroll-y>
- <!-- 上传要求 -->
- <view class="section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">上传要求</text>
- </view>
- <view class="requirement-list">
- <view class="requirement-item">
- <text class="check-icon">✓</text>
- <text>证件需为原件</text>
- </view>
- <view class="requirement-item">
- <text class="check-icon">✓</text>
- <text>露出完整边角</text>
- </view>
- <view class="requirement-item">
- <text class="check-icon">✓</text>
- <text>照片字迹清晰可见</text>
- </view>
- </view>
- </view>
-
- <!-- 老版本需要上传两张 -->
- <view class="section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">老版本需要上传两张</text>
- </view>
- <view class="instruction-list">
- <view class="instruction-item">1.包含执业证编码、头像信息</view>
- <view class="instruction-item">2.包含执业证注册信息,主执业机构地点</view>
- <view class="instruction-item">3.如有多张变更记录,请继续补充上传</view>
- </view>
- <view class="example-images">
- <view class="example-image-item">
- <image src="@/static/image/img_example1.png" mode=""></image>
- <!-- <view class="image-placeholder">示例图片1:老版本执业证编码页</view> -->
- <!-- 请将示例图片放置在 @/static/image/example_old_practice_1.png -->
- </view>
- <view class="example-image-item">
- <image src="@/static/image/img_example2.png" mode=""></image>
- <!-- <view class="image-placeholder">示例图片2:老版本执业证注册信息页</view> -->
- <!-- 请将示例图片放置在 @/static/image/example_old_practice_2.png -->
- </view>
- </view>
- </view>
-
- <!-- 新版本需上传至少一张 -->
- <view class="section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">新版本需上传至少一张</text>
- </view>
- <view class="instruction-list">
- <view class="instruction-item">1.包含执业证编码、头像信息、执业证注册信息、主执业机构地点信息、执业证注册信息、主执业机构地点。</view>
- <view class="instruction-item">2.如有变更记录请继续补充上传。</view>
- </view>
- <view class="example-image">
- <image src="@/static/image/img_example3.png" mode=""></image>
- <!-- <view class="image-placeholder">示例图片:新版本执业证</view> -->
- <!-- 请将示例图片放置在 @/static/image/example_new_practice.png -->
- </view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- background: #f5f5f5;
- }
- .content {
- padding: 24rpx;
- box-sizing: border-box;
- }
- .section {
- background: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- margin-bottom: 24rpx;
-
- &:last-child {
- margin-bottom: 0;
- }
-
- .section-header {
- display: flex;
- align-items: center;
- margin-bottom: 24rpx;
-
- .section-indicator {
- width: 6rpx;
- height: 32rpx;
- background: #388BFF;
- border-radius: 3rpx;
- margin-right: 16rpx;
- }
-
- .section-title {
- font-size: 32rpx;
- font-weight: bold;
- color: #333;
- }
- }
-
- .requirement-list {
- .requirement-item {
- display: flex;
- align-items: center;
- margin-bottom: 16rpx;
- font-size: 28rpx;
- color: #333;
-
- &:last-child {
- margin-bottom: 0;
- }
-
- .check-icon {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- background: #52C41A;
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 24rpx;
- margin-right: 16rpx;
- }
- }
- }
-
- .instruction-list {
- margin-bottom: 24rpx;
-
- .instruction-item {
- font-size: 28rpx;
- color: #666;
- line-height: 1.8;
- margin-bottom: 8rpx;
-
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
-
- .example-images {
- display: flex;
- flex-direction: column;
- gap: 24rpx;
-
- .example-image-item {
- width: 100%;
- border-radius: 8rpx;
- overflow: hidden;
- background: #f5f5f5;
- min-height: 400rpx;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .image-placeholder {
- font-size: 28rpx;
- color: #999;
- text-align: center;
- }
-
- image {
- width: 100%;
- display: block;
- }
- }
- }
-
- .example-image {
- width: 100%;
- border-radius: 8rpx;
- overflow: hidden;
- background: #f5f5f5;
- min-height: 400rpx;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .image-placeholder {
- font-size: 28rpx;
- color: #999;
- }
-
- image {
- width: 100%;
- display: block;
- }
- }
- }
- </style>
|