44 lines
1.1 KiB
Vue
44 lines
1.1 KiB
Vue
<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>
|