|
@@ -2,6 +2,7 @@
|
|
<div class="paymentSuccess">
|
|
<div class="paymentSuccess">
|
|
<Header />
|
|
<Header />
|
|
<div class="main">{{ $t("Key657") }}</div>
|
|
<div class="main">{{ $t("Key657") }}</div>
|
|
|
|
+ <a class="goBack" @click="goBack">{{$t("Key94")}}</a>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -24,11 +25,15 @@ export default {
|
|
//监控data中数据变化
|
|
//监控data中数据变化
|
|
watch: {},
|
|
watch: {},
|
|
//方法集合
|
|
//方法集合
|
|
- methods: {},
|
|
|
|
|
|
+ methods: {
|
|
|
|
+ goBack(){
|
|
|
|
+ window.history.go(-1)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
async created() {
|
|
async created() {
|
|
await updateWordPack({
|
|
await updateWordPack({
|
|
- word_key_list: ["Key657"],
|
|
|
|
|
|
+ word_key_list: ["Key657", "Key94"],
|
|
});
|
|
});
|
|
},
|
|
},
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
//生命周期 - 挂载完成(可以访问DOM元素)
|
|
@@ -55,10 +60,22 @@ export default {
|
|
height: 100%;
|
|
height: 100%;
|
|
.main {
|
|
.main {
|
|
font-size: 50px;
|
|
font-size: 50px;
|
|
- height: 100%;
|
|
|
|
|
|
+ height: 70%;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
+ .goBack{
|
|
|
|
+ width: 100px;
|
|
|
|
+ height: 48px;
|
|
|
|
+ background: #f90;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ color: #fff;
|
|
|
|
+ line-height: 48px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ display: block;
|
|
|
|
+ margin: 0 auto;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|