consumptionTransfers.vue 11 KB

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