alipay-account.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <!-- 绑定支付宝帐号 alipayAccount -->
  2. <template>
  3. <view>
  4. <!-- 标题栏 -->
  5. <view class="head-box ss-m-b-60">
  6. <view class="head-title ss-m-b-20">
  7. {{ userInfo.alipayName && userInfo.alipayAccount ? '更换支付宝账号' : '绑定支付宝账号' }}
  8. </view>
  9. <view class="head-subtitle">请绑定已实名认证的支付宝账号</view>
  10. </view>
  11. <!-- 表单项 -->
  12. <uni-forms ref="alipayAccountRef" v-model="state.model" :rules="state.rules" validateTrigger="bind"
  13. labelWidth="140" labelAlign="center" class="loginUniForm">
  14. <uni-forms-item label="名称" class="loginUniFormItem">
  15. <uni-easyinput placeholder="请输入名称" v-model="state.model.alipayName" :inputBorder="false">
  16. </uni-easyinput>
  17. </uni-forms-item>
  18. <uni-forms-item name="alipayAccount" label="账号" class="loginUniFormItem">
  19. <uni-easyinput placeholder="请输入账号" v-model="state.model.alipayAccount" :inputBorder="false">
  20. </uni-easyinput>
  21. </uni-forms-item>
  22. </uni-forms>
  23. <view style="display: flex;justify-content: space-between;margin-top: 20rpx;">
  24. <!-- <button class="ss-reset-button forgot-btn" @tap="showAuthModal('resetPassword')">
  25. 忘记密码
  26. </button> -->
  27. <button class="ss-reset-button login-btn-start" @tap="submit">确定</button>
  28. </view>
  29. </view>
  30. </template>
  31. <script setup>
  32. import {
  33. ref,
  34. reactive,
  35. unref,
  36. computed
  37. } from 'vue';
  38. import sheep from '@/sheep';
  39. import {
  40. alipayAccount
  41. } from '@/sheep/validate/form';
  42. import {
  43. showAuthModal,
  44. closeAuthModal
  45. } from '@/sheep/hooks/useModal';
  46. import AuthUtil from '@/sheep/api/member/auth';
  47. import UserApi from '@/sheep/api/member/user';
  48. import {
  49. onLoad
  50. } from '@dcloudio/uni-app';
  51. const userInfo = computed(() => sheep.$store('user').userInfo);
  52. const alipayAccountRef = ref(null);
  53. const emits = defineEmits(['onConfirm']);
  54. const props = defineProps({
  55. agreeStatus: {
  56. type: Boolean,
  57. default: false,
  58. },
  59. });
  60. // 数据
  61. const state = reactive({
  62. model: {
  63. alipayName: '', // 名称
  64. alipayAccount: '', // 账号
  65. },
  66. rules:{
  67. alipayAccount
  68. }
  69. });
  70. // 账号登录
  71. async function submit() {
  72. // 表单验证
  73. console.log(state.model.alipayName ,state.model.alipayAccount)
  74. if(!state.model.alipayName || !state.model.alipayAccount){
  75. return false;
  76. }
  77. const validate = await unref(alipayAccountRef)
  78. .validate()
  79. .catch((error) => {
  80. console.log('error: ', error);
  81. });
  82. if (!validate) return;
  83. // 同意协议
  84. // if (!props.agreeStatus) {
  85. // emits('onConfirm', true)
  86. // sheep.$helper.toast('请勾选同意');
  87. // return;
  88. // }
  89. // 提交数据
  90. const {
  91. code
  92. } = await UserApi.updateUserAlipayAccount({
  93. alipayName: state.model.alipayName,
  94. alipayAccount: state.model.alipayAccount,
  95. });
  96. // const {
  97. // code,
  98. // data
  99. // } = await AuthUtil.login(state.model);
  100. if (code === 0) {
  101. uni.showToast({
  102. icon: 'success',
  103. title: "修改成功",
  104. });
  105. closeAuthModal();
  106. uni.$emit('submitComplete');
  107. }
  108. }
  109. onLoad(async (options) => {
  110. // state.model.alipayName = userInfo.value.alipayName;
  111. // state.model.alipayAccount = userInfo.value.alipayAccount;
  112. });
  113. </script>
  114. <style lang="scss" scoped>
  115. @import '../index.scss';
  116. .login-btn-start {
  117. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  118. width: 100%;
  119. height: 80rpx;
  120. font-size: 32rpx;
  121. }
  122. .loginUniForm {
  123. border: 1rpx solid #d6d6d6;
  124. padding: 10rpx 15rpx;
  125. border-radius: 10rpx;
  126. }
  127. .loginUniFormItem:first-child {
  128. border-bottom: 1rpx solid #d6d6d6;
  129. padding-bottom: 10rpx;
  130. }
  131. .loginUniFormItem:last-child {
  132. // border-bottom: 1rpx solid #d6d6d6;
  133. padding-top: 10rpx;
  134. }
  135. ::v-deep .loginUniFormItem .uni-forms-item__inner {
  136. padding-bottom: 0;
  137. }
  138. ::v-deep .loginUniFormItem .uni-error-message {
  139. bottom: -20rpx;
  140. }
  141. </style>