consumptionTransfers.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <template>
  2. <s-layout class="set-wrap" :title="t('wallet.积分转让')" :bgStyle="{ color: '#FFF' }">
  3. <uni-forms :model="state.model" :rules="state.rules" validateTrigger="bind" labelPosition="left" border
  4. class="form-box" labelWidth='200' ref="FormRef">
  5. <view class="bg-white ss-p-x-30">
  6. <uni-forms-item name="integralType" :label="t('wallet.转让积分类型')" :required="true">
  7. <!-- <uni-data-picker v-model="state.model.integralType"
  8. :localdata="[{ value: 1, text: t('wallet.红积分') }, { value: 2, text: t('wallet.黄积分') }, { value: 3, text: t('wallet.绿积分') }]"
  9. placeholder="请选择类型" style="width: 100%;" /> -->
  10. <radio-group @change="e => state.model.integralType = Number(e.detail.value)" >
  11. <label v-for="item in [{ value: 1, text: t('wallet.红积分') }, { value: 2, text: t('wallet.黄积分') }, { value: 3, text: t('wallet.绿积分') }]" :key="item.value" class="ss-m-r-20">
  12. <radio :value="item.value" color="var(--ui-BG-Main)" style="transform: scale(0.8)" :checked="state.model.integralType === item.value" />
  13. <text class="ss-m-l-10">{{ item.text }}</text>
  14. </label>
  15. </radio-group>
  16. </uni-forms-item>
  17. <template v-if="state.model.integralType">
  18. <uni-forms-item name="recipientUserName" :label="t('wallet.recipient')" :required="true"
  19. :error-message="state.usernameErrorMsg">
  20. <uni-easyinput v-model="state.model.recipientUserName" type="recipientUserName"
  21. :placeholder="t('wallet.enter_recipient_username')" :inputBorder="false" :clearable="false"
  22. @blur="verifyUsername">
  23. <template v-slot:right>
  24. <view v-if="state.verifyUsername" class="icon">
  25. <image style :src="sheep.$url.static('/static/images/shibai.png')" />
  26. </view>
  27. <view v-else class="icon">
  28. <image :src="sheep.$url.static('/static/images/chenggong.png')" />
  29. </view>
  30. </template>
  31. </uni-easyinput>
  32. </uni-forms-item>
  33. <uni-forms-item name="recipientUserPhone" :label="t('wallet.recipient_phone')" :required="true"
  34. :error-message="state.mobileErrorMsg">
  35. <uni-easyinput v-model="state.model.recipientUserPhone" type="number"
  36. :placeholder="t('wallet.enter_recipient_phone')" :inputBorder="false" :clearable="false"
  37. @blur="verifyPhone">
  38. <template v-slot:right>
  39. <view v-if="state.verifyMobile" class="icon">
  40. <image style :src="sheep.$url.static('/static/images/shibai.png')" />
  41. </view>
  42. <view v-else class="icon">
  43. <image :src="sheep.$url.static('/static/images/chenggong.png')" />
  44. </view>
  45. </template>
  46. </uni-easyinput>
  47. </uni-forms-item>
  48. <uni-forms-item name="consumptionPoints" :label="t('wallet.transfer_amount')" :required="true">
  49. <uni-easyinput v-model="state.model.consumptionPoints" type="number"
  50. :placeholder="t('wallet.enter_transfer_amount')" :inputBorder="false" :clearable="false"
  51. @input="validateInput" />
  52. </uni-forms-item>
  53. </template>
  54. </view>
  55. </uni-forms>
  56. <view class="ss-flex ss-row-center ss-col-center ss-m-t-30">
  57. <template v-if="state.model.integralType">
  58. {{ t('wallet.current_transferable_amount') }}<text class="text-red">{{ canUseConsumptionPoints }}</text>
  59. </template>
  60. <!-- <button class="ss-m-l-10 all-btn " @click="useAllPonints">{{t('common.all')}}</button> -->
  61. </view>
  62. <su-fixed bottom placeholder bg="none" v-if="state.model.integralType">
  63. <view class="footer-box ss-p-20 ss-flex">
  64. <button class="ss-rest-button btn" @tap="onSubmit">{{ t('common.confirm') }}</button>
  65. </view>
  66. </su-fixed>
  67. </s-layout>
  68. </template>
  69. <script setup>
  70. import {
  71. computed,
  72. reactive,
  73. onBeforeMount,
  74. ref,
  75. unref,
  76. watch,
  77. nextTick
  78. } from 'vue';
  79. import sheep from '@/sheep';
  80. import {
  81. clone
  82. } from 'lodash';
  83. import {
  84. onLoad
  85. } from '@dcloudio/uni-app';
  86. import {
  87. points2point
  88. } from '@/sheep/hooks/useGoods';
  89. import {
  90. email
  91. } from '@/sheep/validate/form';
  92. import { showInputPayPassword } from '@/sheep/hooks/useModal'
  93. import AuthUtil from '@/sheep/api/member/auth';
  94. import ConsumptionApi from '@/sheep/api/distri/consumption';
  95. import {
  96. showAuthModal,
  97. closeAuthModal,
  98. getSmsCode,
  99. getSmsTimer,
  100. showWalletModal,
  101. colseWalletModal
  102. } from '@/sheep/hooks/useModal';
  103. import { t } from '@/locale'
  104. const userInfo = computed(() => sheep.$store('user').userInfo);
  105. const userWallet = computed(() => sheep.$store('user').userWallet);
  106. const state = reactive({
  107. verifyUsername: true,
  108. verifyMobile: true,
  109. usernameErrorMsg: '',
  110. mobileErrorMsg: '',
  111. model: {
  112. recipientUserName: undefined,
  113. recipientUserId: undefined,
  114. recipientUserPhone: undefined,
  115. consumptionPoints: undefined,
  116. integralType: 1,
  117. // smsCodeUseReqDTO: {
  118. // mobile: undefined,
  119. // scene: 11,
  120. // code: undefined
  121. // }
  122. },
  123. rules: {
  124. recipientUserName: {
  125. rules: [{
  126. required: true,
  127. errorMessage: t('wallet.recipient_cannot_be_empty'),
  128. },],
  129. },
  130. recipientUserPhone: {
  131. rules: [{
  132. required: true,
  133. errorMessage: t('wallet.recipient_phone_cannot_be_empty'),
  134. },],
  135. },
  136. "smsCodeUseReqDTO.code": {
  137. rules: [{
  138. required: true,
  139. errorMessage: t('wallet.verification_code_cannot_be_empty'),
  140. },],
  141. },
  142. consumptionPoints: {
  143. rules: [{
  144. required: true,
  145. errorMessage: t('wallet.transfer_amount_cannot_be_empty'),
  146. },
  147. {
  148. validateFunction: function (rule, value, data, callback) {
  149. if (value <= 0) {
  150. callback(t('wallet.transfer_amount_less_than_zero'));
  151. }
  152. return true;
  153. },
  154. },
  155. ],
  156. },
  157. }
  158. });
  159. const canUseConsumptionPoints = computed(() => {
  160. if (state.model.integralType == 1) {
  161. return points2point(userWallet.value.integralDO.redCurrentQuota);
  162. } else if (state.model.integralType == 2) {
  163. return points2point(userWallet.value.integralDO.yellowCurrentQuota);
  164. } else if (state.model.integralType == 3) {
  165. return points2point(userWallet.value.integralDO.greenCurrentQuota);
  166. }
  167. return 0;
  168. });
  169. let lastUsername = ref('')
  170. async function verifyUsername(e) {
  171. const username = e.detail.value;
  172. if (username == lastUsername.value) return;
  173. if (username == '') {
  174. state.verifyUsername = true
  175. return false;
  176. } else if (username === userInfo.value.username) {
  177. state.usernameErrorMsg = t('wallet.recipient_cannot_be_self')
  178. return false;
  179. }
  180. lastUsername.value = username
  181. // 提交数据
  182. const {
  183. data
  184. } = await AuthUtil.verifyUsername(username);
  185. if (data) {
  186. state.usernameErrorMsg = t('wallet.user_does_not_exist')
  187. } else {
  188. state.usernameErrorMsg = ''
  189. }
  190. state.verifyUsername = data
  191. }
  192. async function verifyPhone(e) {
  193. const phone = e.detail.value;
  194. if (phone == '' || !state.model.recipientUserName) {
  195. // 为空或者没输入用户名,不调校验
  196. state.verifyMobile = true
  197. return false;
  198. }
  199. // 提交数据
  200. const {
  201. data
  202. } = await AuthUtil.verifyPhone(state.model.recipientUserName, phone);
  203. // false就是已经有这个用户名,可以登录,true是没有,不可以登录
  204. if (!data || data.mobile !== phone) {
  205. state.mobileErrorMsg = t('wallet.username_phone_mismatch')
  206. state.verifyMobile = true
  207. } else {
  208. state.mobileErrorMsg = ''
  209. state.model.recipientUserId = data.id
  210. state.verifyMobile = false
  211. }
  212. }
  213. async function validateInput(value) {
  214. // 确保输入是整数
  215. const intValue = parseInt(value);
  216. const strPoints = value.toString()
  217. const [integerPart, decimalPart] = strPoints.split('.')
  218. if (decimalPart) {
  219. const points = parseFloat(`${integerPart}.${decimalPart.slice(0, 2)}`);
  220. // 使用 nextTick 确保 DOM 更新
  221. nextTick(() => {
  222. state.model.consumptionPoints = integerPart;
  223. });
  224. }
  225. if (intValue > parseInt(canUseConsumptionPoints.value)) {
  226. nextTick(() => {
  227. state.model.consumptionPoints = parseInt(canUseConsumptionPoints.value);
  228. });
  229. } else {
  230. nextTick(() => {
  231. state.model.consumptionPoints = intValue;
  232. });
  233. }
  234. }
  235. // 提交审核
  236. const FormRef = ref(null);
  237. const onSubmit = async () => {
  238. if (state.model.recipientUserName === userInfo.value.username) {
  239. uni.showToast({
  240. title: t('wallet.cannot_transfer_to_self'),
  241. icon: 'none',
  242. duration: 2000
  243. })
  244. return;
  245. } else if (state.verifyUsername) {
  246. return;
  247. } else if (state.verifyMobile) {
  248. return;
  249. }
  250. // 参数校验
  251. const validate = await unref(FormRef)
  252. .validate()
  253. .catch((error) => {
  254. console.log('error: ', error);
  255. });
  256. if (!validate) {
  257. return;
  258. }
  259. showInputPayPassword(async (password) => {
  260. state.model.payPassword = password
  261. const {
  262. data,
  263. code
  264. } = await ConsumptionApi.createConsumptionLog(state.model);
  265. if (code === 0) {
  266. sheep.$helper.toast(t('wallet.transfer_successful'))
  267. uni.$emit('consumptionTransfersComplete');
  268. sheep.$router.redirect('/pages/user/wallet/score')
  269. }
  270. })
  271. }
  272. const isLogin = computed(() => sheep.$store('user').isLogin);
  273. // 监听到在这个页面登陆,并刷新页面
  274. watch(
  275. () => isLogin.value,
  276. (newVal) => {
  277. if (newVal) {
  278. window.location.reload()
  279. }
  280. }, {
  281. deep: true, // 深度监听
  282. },
  283. );
  284. onLoad(async (options) => {
  285. if (!isLogin.value) {
  286. showAuthModal();
  287. }
  288. });
  289. </script>
  290. <style lang="scss" scoped>
  291. :deep(.uni-forms-item__content) {
  292. display: flex;
  293. align-items: center;
  294. flex: 1;
  295. }
  296. .code-btn-start {
  297. width: 158rpx;
  298. height: 56rpx;
  299. line-height: normal;
  300. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  301. border-radius: 28rpx;
  302. font-size: 26rpx;
  303. font-weight: 500;
  304. color: #fff;
  305. }
  306. .disabled {
  307. border: 1px solid #f7f7f7;
  308. background: gainsboro !important;
  309. }
  310. .icon {
  311. display: flex;
  312. align-items: center;
  313. margin-right: 7rpx
  314. }
  315. .icon image {
  316. width: 35rpx;
  317. height: 35rpx;
  318. }
  319. :deep() {
  320. .file-picker__progress {
  321. height: 0 !important;
  322. }
  323. .uni-list-item__content-title {
  324. font-size: 28rpx !important;
  325. color: #333333 !important;
  326. line-height: normal !important;
  327. }
  328. .uni-icons {
  329. font-size: 40rpx !important;
  330. }
  331. .is-disabled {
  332. color: #333333;
  333. }
  334. }
  335. :deep(.disabled) {
  336. opacity: 1;
  337. }
  338. .gender-name {
  339. font-size: 28rpx;
  340. font-weight: 500;
  341. line-height: normal;
  342. color: #333333;
  343. }
  344. .title-box {
  345. font-size: 28rpx;
  346. font-weight: 500;
  347. color: #666666;
  348. line-height: 100rpx;
  349. }
  350. .btn {
  351. width: 710rpx;
  352. height: 80rpx;
  353. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  354. border-radius: 40rpx;
  355. font-size: 30rpx;
  356. font-weight: 500;
  357. color: $white;
  358. }
  359. .btn-two {
  360. width: 310rpx;
  361. height: 80rpx;
  362. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  363. border-radius: 40rpx;
  364. font-size: 30rpx;
  365. font-weight: 500;
  366. color: $white;
  367. }
  368. .radio-dark {
  369. filter: grayscale(100%);
  370. filter: gray;
  371. opacity: 0.4;
  372. }
  373. .content-img {
  374. border-radius: 50%;
  375. }
  376. .header-box-content {
  377. position: relative;
  378. width: 160rpx;
  379. height: 160rpx;
  380. overflow: hidden;
  381. border-radius: 50%;
  382. }
  383. .avatar-action {
  384. position: absolute;
  385. left: 50%;
  386. transform: translateX(-50%);
  387. bottom: 0;
  388. z-index: 1;
  389. width: 160rpx;
  390. height: 46rpx;
  391. background: rgba(#000000, 0.3);
  392. .avatar-action-btn {
  393. width: 160rpx;
  394. height: 46rpx;
  395. font-weight: 500;
  396. font-size: 24rpx;
  397. color: #ffffff;
  398. }
  399. }
  400. // 绑定项
  401. .account-list {
  402. background-color: $white;
  403. height: 100rpx;
  404. padding: 0 20rpx;
  405. .list-img {
  406. width: 40rpx;
  407. height: 40rpx;
  408. margin-right: 10rpx;
  409. }
  410. .list-name {
  411. font-size: 28rpx;
  412. color: #333333;
  413. }
  414. .info {
  415. .avatar {
  416. width: 38rpx;
  417. height: 38rpx;
  418. border-radius: 50%;
  419. overflow: hidden;
  420. }
  421. .name {
  422. font-size: 28rpx;
  423. font-weight: 400;
  424. color: $dark-9;
  425. }
  426. }
  427. .bind-box {
  428. width: 100rpx;
  429. height: 50rpx;
  430. line-height: normal;
  431. display: flex;
  432. justify-content: center;
  433. align-items: center;
  434. font-size: 24rpx;
  435. .bind-btn {
  436. width: 100%;
  437. height: 100%;
  438. border-radius: 25rpx;
  439. background: #f4f4f4;
  440. color: #999999;
  441. }
  442. .relieve-btn {
  443. width: 100%;
  444. height: 100%;
  445. border-radius: 25rpx;
  446. background: var(--ui-BG-Main-opacity-1);
  447. color: var(--ui-BG-Main);
  448. }
  449. }
  450. }
  451. .list-border {
  452. font-size: 28rpx;
  453. font-weight: 400;
  454. color: #333333;
  455. border-bottom: 2rpx solid #eeeeee;
  456. }
  457. image {
  458. width: 100%;
  459. height: 100%;
  460. }
  461. </style>