success.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="success-container">
  3. <view class="icon-area">
  4. <!-- 绿色对勾图标 (SVG) -->
  5. <svg class="success-icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg">
  6. <path d="M512 0C229.23 0 0 229.23 0 512s229.23 512 512 512 512-229.23 512-512S794.77 0 512 0z m0 960C264.58 960 64 759.42 64 512S264.58 64 512 64s448 200.58 448 448-200.58 448-448 448z" fill="#64D01D" />
  7. <path d="M743.08 335.78c-12.23-12.24-32.07-12.24-44.3 0L426.6 607.96 325.22 506.58c-12.24-12.24-32.07-12.24-44.3 0-12.24 12.24-12.24 32.07 0 44.3l124.58 124.58c6.12 6.12 14.14 9.17 22.15 9.17s16.03-3.05 22.15-9.17L743.08 380.08c12.24-12.24 12.24-32.07 0-44.3z" fill="#64D01D" />
  8. </svg>
  9. <text class="main-title">提交成功</text>
  10. </view>
  11. <text class="sub-tip">请保持手机畅通,等待平台工作人员与您联系</text>
  12. <view class="info-card">
  13. <view class="info-item">
  14. <text class="label">服务站点:</text>
  15. <text class="value">{{ station }}</text>
  16. </view>
  17. <view class="info-item">
  18. <text class="label">报 名 人 :</text>
  19. <text class="value">{{ name }}</text>
  20. </view>
  21. <view class="info-item">
  22. <text class="label">联系手机:</text>
  23. <text class="value">{{ phone }}</text>
  24. </view>
  25. </view>
  26. <view class="footer-btn" @click="goHome">我知道了</view>
  27. </view>
  28. </template>
  29. <script>
  30. import logic from './success_logic.js';
  31. export default logic;
  32. </script>
  33. <style>
  34. @import './success.css';
  35. </style>