12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view class="box">
- <u-icon name="checkmark-circle-fill" color="#07c160" size="200"></u-icon>
- <text class="text">业务添加提交成功!</text>
- <view class="count-down-box">
- <view @click="goback">返回</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- timestamp: 3,
- id: ''
- }
- },
- onBackPress() {
- this.goback();
- return true;
- },
- onLoad(options) {
- this.id = options.typeId
- },
- methods: {
- goback() {
- this.$common.to('/pages/onely-disinfect/type-business?typeId=' + this.id);
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #fff;
- }
- .box {
- display: flex;
- flex: 1;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding: 100rpx 0;
- .text {
- color: #191919;
- font-size: 36rpx;
- font-weight: bold;
- margin-top: 40rpx;
- }
- .count-down-box {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 30rpx;
- }
- }
- </style>
|