Files
mwims-mini-program/mwims-config-hand-app/pages/component/success.vue
T

44 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view>
<cu-custom bgColor="bg-cyan" :isBack="true"><block slot="backText">返回</block><block slot="content">配置结果</block></cu-custom>
<view class="padding-lr">
<view class="padding-xs flex align-center" style="padding-top: 20%;">
<view class="flex-sub text-center">
<view class="text-xsl padding">
<text class=" cuIcon-roundcheckfill text-green"></text>
</view>
</view>
</view>
<view class="padding-xs flex align-center">
<view class="flex-sub text-center">
<view class="text-xl padding text-center">
<text class="text-black text-bold" style="font-size: 20px;">配置成功</text>
</view>
</view>
</view>
<view class="padding flex flex-direction" style="padding-top: 40%;">
<button class="cu-btn bg-cyan margin-tb-sm lg" @click="buttonClick">返回首页</button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
buttonClick() {
uni.navigateTo({
url: "/pages/index/index"
})
}
}
}
</script>
<style>
</style>