Files
HTFX-CRM-Sales/pages/home/changeTradePwd/success/index.vue

39 lines
811 B
Vue
Raw Normal View History

2025-07-07 16:05:18 +08:00
<template>
<NavBar />
<view class="container">
<view class="title">
<PageTitle :title="$t('home.changeTradePwd')" />
</view>
<view class="content">
<image src="/static/success.png" mode="aspectFit" style="width: 56px; height: 56px"></image>
<text class="successTitle">{{ $t('changeTradePwd.success') }}</text>
<text class="successDesc">{{ $t('changeTradePwd.successDesc') }}</text>
</view>
<view class="btns">
<button class="btn primaryButton" type="button" @click="handleClose">
{{ $t('common.back') }}
</button>
</view>
</view>
</template>
<script>
export default {
name: '',
data() {
return {};
},
methods: {
handleClose() {
uni.redirectTo({
url: '/pages/home/index'
});
}
}
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>