| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <view class="app-content">
- <view class="billing_box_bg">
- <view class="top-view"> </view>
- <view class="result-view">
- <view class="iconfont iconchenggong"></view>
- <view class="result-title">拆散成功</view>
- <button class="admin-button-com big blue" style="width:45vw;" @click="goBackHome">返回</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "success",
- methods: {
- init(){
- },
- goBackHome() {
- uni.navigateBack({})
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .go-back{
- width: 80%;
- height: 80upx;
- color: #FFFFFF;
- margin-top: 50upx;
- background: #3385FF;
- border-radius: 10upx;
- font-size:30upx;
- }
- .billing_box_bg {
- position: relative;
- padding: 60upx 30upx;
- display: flex;
- background: white;
- flex-direction: column;
- background-color: #f5f5f5;
- .top-view {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 299upx;
- background: #3385ff;
- border-radius: 0upx 0upx 83upx 83upx;
- }
- .result-view {
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 70upx;
- width: 100%;
- background: #ffffff;
- border-radius: 20upx;
- z-index: 1;
- .iconchenggong {
- font-size: 170upx;
- color: $mainColor1;
- }
- .result-title {
- margin: 50upx 0 70upx;
- font-size: 32upx;
- }
- }
- }
- </style>
|