123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <template>
- <s-layout class="set-wrap" :title="t('wallet.points_transfer')" :bgStyle="{ color: '#FFF' }">
- <uni-forms :model="state.model" :rules="state.rules" validateTrigger="bind" labelPosition="left" border
- class="form-box" labelWidth='200' ref="FormRef">
- <view class="bg-white ss-p-x-30">
- <uni-forms-item name="recipientUserName" :label="t('wallet.recipient')" :required="true"
- :error-message="state.usernameErrorMsg">
- <uni-easyinput v-model="state.model.recipientUserName" type="recipientUserName"
- :placeholder="t('wallet.enter_recipient_username')" :inputBorder="false" :clearable="false" @blur="verifyUsername">
- <template v-slot:right>
- <view v-if="state.verifyUsername" class="icon">
- <image style :src="sheep.$url.static('/static/images/shibai.png')" />
- </view>
- <view v-else class="icon">
- <image :src="sheep.$url.static('/static/images/chenggong.png')" />
- </view>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="recipientUserPhone" :label="t('wallet.recipient_phone')" :required="true"
- :error-message="state.mobileErrorMsg">
- <uni-easyinput v-model="state.model.recipientUserPhone" type="number"
- :placeholder="t('wallet.enter_recipient_phone')" :inputBorder="false" :clearable="false"
- @blur="verifyPhone" >
- <template v-slot:right>
- <view v-if="state.verifyMobile" class="icon">
- <image style :src="sheep.$url.static('/static/images/shibai.png')" />
- </view>
- <view v-else class="icon">
- <image :src="sheep.$url.static('/static/images/chenggong.png')" />
- </view>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="mobile" :label="t('account.phone_number')" class="mobile loginUniFormItem ss-p-t-10"
- >
- <uni-easyinput v-model="state.model.smsCodeUseReqDTO.mobile" type="smsCodeUseReqDTO"
- :placeholder="t('account.enter_phone_number')" :inputBorder="false" :clearable="false" :disabled="true">
- <template v-slot:right>
- <button class="ss-reset-button code-btn code-btn-start" :disabled="verifyUsername == true || state.verifyMobile == true"
- :class="{ 'disabled': verifyUsername == true || state.verifyMobile == true }"
- @tap="getSmsCode('consumptionTransfers', state.model.smsCodeUseReqDTO.mobile)">
- {{ getSmsTimer('consumptionTransfers') }}
- </button>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="smsCodeUseReqDTO.code" :label="t('account.verification_code')" :required="true">
- <uni-easyinput v-model="state.model.smsCodeUseReqDTO.code" type="number"
- :placeholder="t('account.enter_verification_code')" :inputBorder="false" :clearable="false" >
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="consumptionPoints" :label="t('wallet.transfer_amount')" :required="true">
- <uni-easyinput v-model="state.model.consumptionPoints" type="number"
- :placeholder="t('wallet.enter_transfer_amount')" :inputBorder="false" :clearable="false" @input="validateInput" />
- </uni-forms-item>
- </view>
- </uni-forms>
- <view class="ss-flex ss-row-center ss-col-center ss-m-t-30">
- {{t('wallet.current_transferable_amount')}}<text class="text-red">{{canUseConsumptionPoints}}</text>
- <!-- <button class="ss-m-l-10 all-btn " @click="useAllPonints">{{t('common.all')}}</button> -->
- </view>
- <su-fixed bottom placeholder bg="none">
- <view class="footer-box ss-p-20 ss-flex">
- <button class="ss-rest-button btn" @tap="onSubmit">{{t('common.confirm')}}</button>
- </view>
- </su-fixed>
- </s-layout>
- </template>
- <script setup>
- import {
- computed,
- reactive,
- onBeforeMount,
- ref,
- unref,
- watch,
- nextTick
- } from 'vue';
- import sheep from '@/sheep';
- import {
- clone
- } from 'lodash';
- import {
- onLoad
- } from '@dcloudio/uni-app';
- import {
- points2point
- } from '@/sheep/hooks/useGoods';
- import {
- email
- } from '@/sheep/validate/form';
- import AuthUtil from '@/sheep/api/member/auth';
- import ConsumptionApi from '@/sheep/api/distri/consumption';
- import {
- showAuthModal,
- closeAuthModal,
- getSmsCode,
- getSmsTimer,
- showWalletModal,
- colseWalletModal
- } from '@/sheep/hooks/useModal';
- import { t } from '@/locale'
- const userInfo = computed(() => sheep.$store('user').userInfo);
- const userWallet = computed(() => sheep.$store('user').userWallet);
- const state = reactive({
- verifyUsername: true,
- verifyMobile:true,
- usernameErrorMsg: '',
- mobileErrorMsg: '',
- model: {
- recipientUserName: undefined,
- recipientUserId: undefined,
- recipientUserPhone: undefined,
- consumptionPoints: undefined,
- smsCodeUseReqDTO: {
- mobile: undefined,
- scene: 11,
- code: undefined
- }
- },
- rules: {
- recipientUserName: {
- rules: [{
- required: true,
- errorMessage: t('wallet.recipient_cannot_be_empty'),
- }, ],
- },
- recipientUserPhone: {
- rules: [{
- required: true,
- errorMessage: t('wallet.recipient_phone_cannot_be_empty'),
- }, ],
- },
- "smsCodeUseReqDTO.code": {
- rules: [{
- required: true,
- errorMessage: t('wallet.verification_code_cannot_be_empty'),
- }, ],
- },
- consumptionPoints: {
- rules: [{
- required: true,
- errorMessage: t('wallet.transfer_amount_cannot_be_empty'),
- },
- {
- validateFunction: function (rule, value, data, callback) {
- if (value<=0) {
- callback(t('wallet.transfer_amount_less_than_zero'));
- }
- return true;
- },
- },
- ],
- },
- }
- });
- const canUseConsumptionPoints = computed(() => points2point(userWallet.value.integralDO.consumptionPoints));
- let lastUsername = ref('')
- async function verifyUsername(e) {
- const username = e.detail.value;
- if(username == lastUsername.value) return;
- if (username == '') {
- state.verifyUsername = true
- return false;
- }else if (username === userInfo.value.username) {
- state.usernameErrorMsg = t('wallet.recipient_cannot_be_self')
- return false;
- }
- lastUsername.value = username
- // 提交数据
- const {
- data
- } = await AuthUtil.verifyUsername(username);
- if (data) {
- state.usernameErrorMsg = t('wallet.user_does_not_exist')
- } else {
- state.usernameErrorMsg = ''
- }
- state.verifyUsername = data
- }
-
- async function verifyPhone(e) {
- const phone = e.detail.value;
- if (phone == '' || !state.model.recipientUserName) {
- // 为空或者没输入用户名,不调校验
- state.verifyMobile = true
- return false;
- }
-
- // 提交数据
- const {
- data
- } = await AuthUtil.verifyPhone(state.model.recipientUserName, phone);
- // false就是已经有这个用户名,可以登录,true是没有,不可以登录
- if (!data || data.mobile !== phone ) {
- state.mobileErrorMsg = t('wallet.username_phone_mismatch')
- state.verifyMobile = true
- } else {
- state.mobileErrorMsg = ''
- state.model.recipientUserId = data.id
- state.verifyMobile = false
- }
- }
-
- async function validateInput(value) {
- // 确保输入是整数
- const intValue = parseInt(value);
- const strPoints = value.toString()
- const [integerPart, decimalPart] = strPoints.split('.')
- if (decimalPart) {
- const points = parseFloat(`${integerPart}.${decimalPart.slice(0, 2)}`);
- // 使用 nextTick 确保 DOM 更新
- nextTick(() => {
- state.model.consumptionPoints = integerPart;
- });
- }
-
- if (intValue > parseInt(canUseConsumptionPoints.value)) {
- nextTick(() => {
- state.model.consumptionPoints = parseInt(canUseConsumptionPoints.value);
- });
- } else {
- nextTick(() => {
- state.model.consumptionPoints = intValue;
- });
- }
- }
- // 提交审核
- const FormRef = ref(null);
- const onSubmit = async () => {
-
- if(state.model.recipientUserName === userInfo.value.username){
- uni.showToast({
- title: t('wallet.cannot_transfer_to_self'),
- icon: 'none',
- duration: 2000
- })
- return;
- }else if (state.verifyUsername ) {
- return;
- }else if(state.verifyMobile ){
- return;
- }
- // 参数校验
- const validate = await unref(FormRef)
- .validate()
- .catch((error) => {
- console.log('error: ', error);
- });
- if (!validate) {
- return;
- }
- const {
- data,
- code
- } = await ConsumptionApi.createConsumptionLog(state.model);
- if (code === 0) {
- showWalletModal({msg:t('wallet.transfer_successful')})
- uni.$emit('consumptionTransfersComplete');
- sheep.$router.redirect('/pages/user/wallet/score')
- }
- }
- const isLogin = computed(() => sheep.$store('user').isLogin);
- // 监听到在这个页面登陆,并刷新页面
- watch(
- () => isLogin.value,
- (newVal) => {
- if (newVal) {
- window.location.reload()
- }
- }, {
- deep: true, // 深度监听
- },
- );
-
- onLoad(async (options) => {
- if (!isLogin.value) {
- showAuthModal();
- }
- state.model.smsCodeUseReqDTO.mobile = userInfo.value.mobile
- });
- </script>
- <style lang="scss" scoped>
- .code-btn-start {
- width: 158rpx;
- height: 56rpx;
- line-height: normal;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- border-radius: 28rpx;
- font-size: 26rpx;
- font-weight: 500;
- color: #fff;
- }
- .disabled {
- border: 1px solid #f7f7f7;
- background: gainsboro !important;
- }
- .icon {
- display: flex;
- align-items: center;
- margin-right: 7rpx
- }
- .icon image {
- width: 35rpx;
- height: 35rpx;
- }
- :deep() {
- .file-picker__progress {
- height: 0 !important;
- }
- .uni-list-item__content-title {
- font-size: 28rpx !important;
- color: #333333 !important;
- line-height: normal !important;
- }
- .uni-icons {
- font-size: 40rpx !important;
- }
- .is-disabled {
- color: #333333;
- }
- }
- :deep(.disabled) {
- opacity: 1;
- }
- .gender-name {
- font-size: 28rpx;
- font-weight: 500;
- line-height: normal;
- color: #333333;
- }
- .title-box {
- font-size: 28rpx;
- font-weight: 500;
- color: #666666;
- line-height: 100rpx;
- }
- .btn {
- width: 710rpx;
- height: 80rpx;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- border-radius: 40rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: $white;
- }
- .btn-two {
- width: 310rpx;
- height: 80rpx;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- border-radius: 40rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: $white;
- }
- .radio-dark {
- filter: grayscale(100%);
- filter: gray;
- opacity: 0.4;
- }
- .content-img {
- border-radius: 50%;
- }
- .header-box-content {
- position: relative;
- width: 160rpx;
- height: 160rpx;
- overflow: hidden;
- border-radius: 50%;
- }
- .avatar-action {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 0;
- z-index: 1;
- width: 160rpx;
- height: 46rpx;
- background: rgba(#000000, 0.3);
- .avatar-action-btn {
- width: 160rpx;
- height: 46rpx;
- font-weight: 500;
- font-size: 24rpx;
- color: #ffffff;
- }
- }
- // 绑定项
- .account-list {
- background-color: $white;
- height: 100rpx;
- padding: 0 20rpx;
- .list-img {
- width: 40rpx;
- height: 40rpx;
- margin-right: 10rpx;
- }
- .list-name {
- font-size: 28rpx;
- color: #333333;
- }
- .info {
- .avatar {
- width: 38rpx;
- height: 38rpx;
- border-radius: 50%;
- overflow: hidden;
- }
- .name {
- font-size: 28rpx;
- font-weight: 400;
- color: $dark-9;
- }
- }
- .bind-box {
- width: 100rpx;
- height: 50rpx;
- line-height: normal;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 24rpx;
- .bind-btn {
- width: 100%;
- height: 100%;
- border-radius: 25rpx;
- background: #f4f4f4;
- color: #999999;
- }
- .relieve-btn {
- width: 100%;
- height: 100%;
- border-radius: 25rpx;
- background: var(--ui-BG-Main-opacity-1);
- color: var(--ui-BG-Main);
- }
- }
- }
- .list-border {
- font-size: 28rpx;
- font-weight: 400;
- color: #333333;
- border-bottom: 2rpx solid #eeeeee;
- }
- image {
- width: 100%;
- height: 100%;
- }
- </style>
|