consumptionTransfers.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  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"
  41. :class="{ 'disabled': !verifyUsername }"
  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 == '' || username == lastUsername.value) {
  162. return false;
  163. }else if (username === userInfo.value.username) {
  164. state.usernameErrorMsg = '接收人不能为自己'
  165. return false;
  166. }
  167. lastUsername.value = username
  168. // 提交数据
  169. const {
  170. data
  171. } = await AuthUtil.verifyUsername(username);
  172. if (data) {
  173. state.usernameErrorMsg = '用户不存在!'
  174. } else {
  175. state.usernameErrorMsg = ''
  176. }
  177. state.verifyUsername = data
  178. }
  179. let lastphone = ref('')
  180. async function verifyPhone(e) {
  181. const phone = e.detail.value;
  182. if (phone == '' || phone == lastphone.value) {
  183. // 为空或者没改东西,不调校验
  184. return false;
  185. }
  186. lastphone.value = phone
  187. // 提交数据
  188. const {
  189. data
  190. } = await AuthUtil.verifyPhone(state.model.recipientUserName, phone);
  191. // false就是已经有这个用户名,可以登录,true是没有,不可以登录
  192. if (!data || data.mobile !== phone ) {
  193. state.mobileErrorMsg = '接收人用户名与手机号不匹配!'
  194. state.verifyMobile = true
  195. } else {
  196. state.mobileErrorMsg = ''
  197. state.model.recipientUserId = data.id
  198. state.verifyMobile = false
  199. }
  200. }
  201. async function validateInput(value) {
  202. // 确保输入是整数
  203. const intValue = parseInt(value);
  204. const strPoints = value.toString()
  205. const [integerPart, decimalPart] = strPoints.split('.')
  206. if (decimalPart) {
  207. const points = parseFloat(`${integerPart}.${decimalPart.slice(0, 2)}`);
  208. // 使用 nextTick 确保 DOM 更新
  209. nextTick(() => {
  210. state.model.consumptionPoints = integerPart;
  211. });
  212. }
  213. if (intValue > parseInt(canUseConsumptionPoints.value)) {
  214. nextTick(() => {
  215. state.model.consumptionPoints = parseInt(canUseConsumptionPoints.value);
  216. });
  217. } else {
  218. nextTick(() => {
  219. state.model.consumptionPoints = intValue;
  220. });
  221. }
  222. }
  223. // 提交审核
  224. const FormRef = ref(null);
  225. const onSubmit = async () => {
  226. if(state.model.recipientUserName === userInfo.value.username){
  227. uni.showToast({
  228. title: '不能给自己转账',
  229. icon: 'none',
  230. duration: 2000
  231. })
  232. return;
  233. }else if (state.verifyUsername ) {
  234. return;
  235. }else if(state.verifyMobile ){
  236. return;
  237. }
  238. // 参数校验
  239. const validate = await unref(FormRef)
  240. .validate()
  241. .catch((error) => {
  242. console.log('error: ', error);
  243. });
  244. if (!validate) {
  245. return;
  246. }
  247. const {
  248. data,
  249. code
  250. } = await ConsumptionApi.createConsumptionLog(state.model);
  251. if (code === 0) {
  252. showWalletModal({msg:"转账成功"})
  253. uni.$emit('consumptionTransfersComplete');
  254. sheep.$router.redirect('/pages/user/wallet/score')
  255. }
  256. }
  257. const isLogin = computed(() => sheep.$store('user').isLogin);
  258. // 监听到在这个页面登陆,并刷新页面
  259. watch(
  260. () => isLogin.value,
  261. (newVal) => {
  262. if (newVal) {
  263. window.location.reload()
  264. }
  265. }, {
  266. deep: true, // 深度监听
  267. },
  268. );
  269. onLoad(async (options) => {
  270. if (!isLogin.value) {
  271. showAuthModal();
  272. }
  273. state.model.smsCodeUseReqDTO.mobile = userInfo.value.mobile
  274. });
  275. </script>
  276. <style lang="scss" scoped>
  277. .code-btn-start {
  278. width: 158rpx;
  279. height: 56rpx;
  280. line-height: normal;
  281. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  282. border-radius: 28rpx;
  283. font-size: 26rpx;
  284. font-weight: 500;
  285. color: #fff;
  286. }
  287. .disabled {
  288. border: 1px solid #f7f7f7;
  289. }
  290. .icon {
  291. display: flex;
  292. align-items: center;
  293. margin-right: 7rpx
  294. }
  295. .icon image {
  296. width: 35rpx;
  297. height: 35rpx;
  298. }
  299. :deep() {
  300. .file-picker__progress {
  301. height: 0 !important;
  302. }
  303. .uni-list-item__content-title {
  304. font-size: 28rpx !important;
  305. color: #333333 !important;
  306. line-height: normal !important;
  307. }
  308. .uni-icons {
  309. font-size: 40rpx !important;
  310. }
  311. .is-disabled {
  312. color: #333333;
  313. }
  314. }
  315. :deep(.disabled) {
  316. opacity: 1;
  317. }
  318. .gender-name {
  319. font-size: 28rpx;
  320. font-weight: 500;
  321. line-height: normal;
  322. color: #333333;
  323. }
  324. .title-box {
  325. font-size: 28rpx;
  326. font-weight: 500;
  327. color: #666666;
  328. line-height: 100rpx;
  329. }
  330. .btn {
  331. width: 710rpx;
  332. height: 80rpx;
  333. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  334. border-radius: 40rpx;
  335. font-size: 30rpx;
  336. font-weight: 500;
  337. color: $white;
  338. }
  339. .btn-two {
  340. width: 310rpx;
  341. height: 80rpx;
  342. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  343. border-radius: 40rpx;
  344. font-size: 30rpx;
  345. font-weight: 500;
  346. color: $white;
  347. }
  348. .radio-dark {
  349. filter: grayscale(100%);
  350. filter: gray;
  351. opacity: 0.4;
  352. }
  353. .content-img {
  354. border-radius: 50%;
  355. }
  356. .header-box-content {
  357. position: relative;
  358. width: 160rpx;
  359. height: 160rpx;
  360. overflow: hidden;
  361. border-radius: 50%;
  362. }
  363. .avatar-action {
  364. position: absolute;
  365. left: 50%;
  366. transform: translateX(-50%);
  367. bottom: 0;
  368. z-index: 1;
  369. width: 160rpx;
  370. height: 46rpx;
  371. background: rgba(#000000, 0.3);
  372. .avatar-action-btn {
  373. width: 160rpx;
  374. height: 46rpx;
  375. font-weight: 500;
  376. font-size: 24rpx;
  377. color: #ffffff;
  378. }
  379. }
  380. // 绑定项
  381. .account-list {
  382. background-color: $white;
  383. height: 100rpx;
  384. padding: 0 20rpx;
  385. .list-img {
  386. width: 40rpx;
  387. height: 40rpx;
  388. margin-right: 10rpx;
  389. }
  390. .list-name {
  391. font-size: 28rpx;
  392. color: #333333;
  393. }
  394. .info {
  395. .avatar {
  396. width: 38rpx;
  397. height: 38rpx;
  398. border-radius: 50%;
  399. overflow: hidden;
  400. }
  401. .name {
  402. font-size: 28rpx;
  403. font-weight: 400;
  404. color: $dark-9;
  405. }
  406. }
  407. .bind-box {
  408. width: 100rpx;
  409. height: 50rpx;
  410. line-height: normal;
  411. display: flex;
  412. justify-content: center;
  413. align-items: center;
  414. font-size: 24rpx;
  415. .bind-btn {
  416. width: 100%;
  417. height: 100%;
  418. border-radius: 25rpx;
  419. background: #f4f4f4;
  420. color: #999999;
  421. }
  422. .relieve-btn {
  423. width: 100%;
  424. height: 100%;
  425. border-radius: 25rpx;
  426. background: var(--ui-BG-Main-opacity-1);
  427. color: var(--ui-BG-Main);
  428. }
  429. }
  430. }
  431. .list-border {
  432. font-size: 28rpx;
  433. font-weight: 400;
  434. color: #333333;
  435. border-bottom: 2rpx solid #eeeeee;
  436. }
  437. image {
  438. width: 100%;
  439. height: 100%;
  440. }
  441. </style>