result.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="app-content">
  3. <view class="billing_box_bg">
  4. <view class="top-view"> </view>
  5. <view class="result-view">
  6. <view class="iconfont iconchenggong"></view>
  7. <view class="result-title">拆散成功</view>
  8. <button class="admin-button-com big blue" style="width:45vw;" @click="goBackHome">返回</button>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. name: "success",
  16. methods: {
  17. init(){
  18. },
  19. goBackHome() {
  20. uni.navigateBack({})
  21. }
  22. }
  23. };
  24. </script>
  25. <style lang="scss" scoped>
  26. .go-back{
  27. width: 80%;
  28. height: 80upx;
  29. color: #FFFFFF;
  30. margin-top: 50upx;
  31. background: #3385FF;
  32. border-radius: 10upx;
  33. font-size:30upx;
  34. }
  35. .billing_box_bg {
  36. position: relative;
  37. padding: 60upx 30upx;
  38. display: flex;
  39. background: white;
  40. flex-direction: column;
  41. background-color: #f5f5f5;
  42. .top-view {
  43. position: absolute;
  44. top: 0;
  45. left: 0;
  46. width: 100%;
  47. height: 299upx;
  48. background: #3385ff;
  49. border-radius: 0upx 0upx 83upx 83upx;
  50. }
  51. .result-view {
  52. position: relative;
  53. display: flex;
  54. flex-direction: column;
  55. align-items: center;
  56. padding: 70upx;
  57. width: 100%;
  58. background: #ffffff;
  59. border-radius: 20upx;
  60. z-index: 1;
  61. .iconchenggong {
  62. font-size: 170upx;
  63. color: $mainColor1;
  64. }
  65. .result-title {
  66. margin: 50upx 0 70upx;
  67. font-size: 32upx;
  68. }
  69. }
  70. }
  71. </style>