Files
2025-07-07 16:05:18 +08:00

36 lines
704 B
Vue

<template>
<NavBar />
<view class="container">
<view class="title">
<PageTitle :title="$t('menu.partner')" />
</view>
<view class="content">
<image src="/static/success.png" mode="aspectFit" style="width: 56px; height: 56px"></image>
<text class="successTitle">{{ $t('partner.promotionLink.success') }}</text>
</view>
<view class="btns">
<button class="btn secondaryButton" type="button" @click="handleClose">
{{ $t('form.close') }}
</button>
</view>
</view>
</template>
<script>
export default {
name: '',
data() {
return {};
},
methods: {
handleClose() {
uni.navigateBack();
}
}
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>