scoreToConsumption.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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="state.data" placeholder="请选择类型"
  9. style="width: 100%;" /> -->
  10. <radio-group @change="e => state.model.integralType = Number(e.detail.value)" >
  11. <label v-for="item in state.data" :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="quota" :label="t('wallet.积分')" :required="true">
  19. <uni-easyinput v-model="state.model.quota" type="number" :placeholder="t('wallet.请输入转换积分')"
  20. :inputBorder="false" :clearable="false" @input="validateInput" />
  21. </uni-forms-item>
  22. </template>
  23. </view>
  24. </uni-forms>
  25. <view class="ss-flex ss-row-center ss-col-center ss-m-t-30">
  26. <template v-if="state.model.integralType">
  27. {{ t('wallet.current_commission_available') }}:<text class="text-red">{{ currentQuota }}</text>
  28. </template>
  29. <!-- <button class="ss-m-l-10 all-btn " @click="useAllPonints">全部</button> -->
  30. </view>
  31. <su-fixed bottom placeholder bg="none" v-if="state.model.integralType">
  32. <view class="footer-box ss-p-20 ss-flex">
  33. <button class="ss-rest-button btn" @tap="onSubmit">{{ t('common.confirm') }}</button>
  34. </view>
  35. </su-fixed>
  36. </s-layout>
  37. </template>
  38. <script setup>
  39. import {
  40. computed,
  41. reactive,
  42. onBeforeMount,
  43. ref,
  44. unref,
  45. watch,
  46. nextTick
  47. } from 'vue';
  48. import sheep from '@/sheep';
  49. import {
  50. clone
  51. } from 'lodash';
  52. import {
  53. onLoad
  54. } from '@dcloudio/uni-app';
  55. import {
  56. points2point
  57. } from '@/sheep/hooks/useGoods';
  58. import {
  59. email
  60. } from '@/sheep/validate/form';
  61. import AuthUtil from '@/sheep/api/member/auth';
  62. import ConsumptionApi from '@/sheep/api/distri/consumption';
  63. import {
  64. showAuthModal,
  65. showInputPayPassword
  66. } from '@/sheep/hooks/useModal';
  67. import { t } from '@/locale'
  68. const userInfo = computed(() => sheep.$store('user').userInfo);
  69. const userWallet = computed(() => sheep.$store('user').userWallet);
  70. console.log(userWallet.value.categoryId)
  71. const typeOptions = computed(() => {
  72. const options = []
  73. // 黄转红选项始终存在
  74. options.push({ value: 2, text: t('wallet.黄转红') })
  75. // 只有 categoryId 为 3 时才显示红转绿选项
  76. if (userWallet.value.categoryId === 3) {
  77. options.push({ value: 1, text: t('wallet.红转绿') })
  78. }
  79. return options
  80. })
  81. const state = reactive({
  82. data: typeOptions,
  83. model: {
  84. quota: undefined,
  85. integralType: 2,
  86. },
  87. rules: {
  88. quota: {
  89. rules: [{
  90. required: true,
  91. errorMessage: t('wallet.transfer_amount_cannot_be_empty'),
  92. },
  93. {
  94. validateFunction: function (rule, value, data, callback) {
  95. if (value <= 0) {
  96. callback(t('wallet.transfer_amount_cannot_be_zero'));
  97. }
  98. return true;
  99. },
  100. },
  101. ],
  102. },
  103. }
  104. });
  105. const currentQuota = computed(() => {
  106. if (state.model.integralType == 1) {
  107. return points2point(userWallet.value.integralDO.redCurrentQuota);
  108. } else {
  109. return points2point(userWallet.value.integralDO.yellowCurrentQuota);
  110. }
  111. });
  112. async function validateInput(value) {
  113. // 确保输入是整数
  114. const intValue = parseInt(value);
  115. const strPoints = value.toString()
  116. const [integerPart, decimalPart] = strPoints.split('.')
  117. if (decimalPart) {
  118. nextTick(() => {
  119. state.model.quota = integerPart;
  120. });
  121. }
  122. if (intValue > parseInt(currentQuota.value)) {
  123. nextTick(() => {
  124. state.model.quota = parseInt(currentQuota.value);
  125. });
  126. } else {
  127. nextTick(() => {
  128. state.model.quota = intValue;
  129. });
  130. }
  131. }
  132. // 提交审核
  133. const FormRef = ref(null);
  134. const onSubmit = async () => {
  135. // 参数校验
  136. const validate = await unref(FormRef)
  137. .validate()
  138. .catch((error) => {
  139. console.log('error: ', error);
  140. });
  141. if (!validate) {
  142. return;
  143. }
  144. uni.showModal({
  145. title: t('setting.prompt'),
  146. content: t('wallet.转换后不可逆,是否继续'),
  147. success: function (res) {
  148. if (!res.confirm) {
  149. return;
  150. }
  151. showInputPayPassword(async (password) => {
  152. state.model.payPassword = password
  153. const { data, code } = await ConsumptionApi.quotaTransition(state.model);
  154. if (code === 0) {
  155. uni.showToast({
  156. title: t('wallet.conversion_successful'),
  157. icon: 'none',
  158. duration: 2000
  159. });
  160. uni.$emit('consumptionTransfersComplete');
  161. sheep.$router.redirect('/pages/user/wallet/score')
  162. }
  163. })
  164. }
  165. });
  166. }
  167. const isLogin = computed(() => sheep.$store('user').isLogin);
  168. // 监听到在这个页面登陆,并刷新页面
  169. watch(
  170. () => isLogin.value,
  171. (newVal) => {
  172. if (newVal) {
  173. window.location.reload()
  174. }
  175. }, {
  176. deep: true, // 深度监听
  177. },
  178. );
  179. onLoad(async (options) => {
  180. if (!isLogin.value) {
  181. showAuthModal();
  182. }
  183. });
  184. </script>
  185. <style lang="scss" scoped>
  186. :deep(.uni-forms-item__content) {
  187. display: flex;
  188. align-items: center;
  189. flex: 1;
  190. }
  191. .code-btn-start {
  192. width: 158rpx;
  193. height: 56rpx;
  194. line-height: normal;
  195. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  196. border-radius: 28rpx;
  197. font-size: 26rpx;
  198. font-weight: 500;
  199. color: #fff;
  200. }
  201. .disabled {
  202. border: 1px solid #f7f7f7;
  203. }
  204. .icon {
  205. display: flex;
  206. align-items: center;
  207. margin-right: 7rpx
  208. }
  209. .icon image {
  210. width: 35rpx;
  211. height: 35rpx;
  212. }
  213. :deep() {
  214. .file-picker__progress {
  215. height: 0 !important;
  216. }
  217. .uni-list-item__content-title {
  218. font-size: 28rpx !important;
  219. color: #333333 !important;
  220. line-height: normal !important;
  221. }
  222. .uni-icons {
  223. font-size: 40rpx !important;
  224. }
  225. .is-disabled {
  226. color: #333333;
  227. }
  228. }
  229. :deep(.disabled) {
  230. opacity: 1;
  231. }
  232. .gender-name {
  233. font-size: 28rpx;
  234. font-weight: 500;
  235. line-height: normal;
  236. color: #333333;
  237. }
  238. .title-box {
  239. font-size: 28rpx;
  240. font-weight: 500;
  241. color: #666666;
  242. line-height: 100rpx;
  243. }
  244. .btn {
  245. width: 710rpx;
  246. height: 80rpx;
  247. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  248. border-radius: 40rpx;
  249. font-size: 30rpx;
  250. font-weight: 500;
  251. color: $white;
  252. }
  253. .btn-two {
  254. width: 310rpx;
  255. height: 80rpx;
  256. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  257. border-radius: 40rpx;
  258. font-size: 30rpx;
  259. font-weight: 500;
  260. color: $white;
  261. }
  262. .radio-dark {
  263. filter: grayscale(100%);
  264. filter: gray;
  265. opacity: 0.4;
  266. }
  267. .content-img {
  268. border-radius: 50%;
  269. }
  270. .header-box-content {
  271. position: relative;
  272. width: 160rpx;
  273. height: 160rpx;
  274. overflow: hidden;
  275. border-radius: 50%;
  276. }
  277. .avatar-action {
  278. position: absolute;
  279. left: 50%;
  280. transform: translateX(-50%);
  281. bottom: 0;
  282. z-index: 1;
  283. width: 160rpx;
  284. height: 46rpx;
  285. background: rgba(#000000, 0.3);
  286. .avatar-action-btn {
  287. width: 160rpx;
  288. height: 46rpx;
  289. font-weight: 500;
  290. font-size: 24rpx;
  291. color: #ffffff;
  292. }
  293. }
  294. // 绑定项
  295. .account-list {
  296. background-color: $white;
  297. height: 100rpx;
  298. padding: 0 20rpx;
  299. .list-img {
  300. width: 40rpx;
  301. height: 40rpx;
  302. margin-right: 10rpx;
  303. }
  304. .list-name {
  305. font-size: 28rpx;
  306. color: #333333;
  307. }
  308. .info {
  309. .avatar {
  310. width: 38rpx;
  311. height: 38rpx;
  312. border-radius: 50%;
  313. overflow: hidden;
  314. }
  315. .name {
  316. font-size: 28rpx;
  317. font-weight: 400;
  318. color: $dark-9;
  319. }
  320. }
  321. .bind-box {
  322. width: 100rpx;
  323. height: 50rpx;
  324. line-height: normal;
  325. display: flex;
  326. justify-content: center;
  327. align-items: center;
  328. font-size: 24rpx;
  329. .bind-btn {
  330. width: 100%;
  331. height: 100%;
  332. border-radius: 25rpx;
  333. background: #f4f4f4;
  334. color: #999999;
  335. }
  336. .relieve-btn {
  337. width: 100%;
  338. height: 100%;
  339. border-radius: 25rpx;
  340. background: var(--ui-BG-Main-opacity-1);
  341. color: var(--ui-BG-Main);
  342. }
  343. }
  344. }
  345. .list-border {
  346. font-size: 28rpx;
  347. font-weight: 400;
  348. color: #333333;
  349. border-bottom: 2rpx solid #eeeeee;
  350. }
  351. image {
  352. width: 100%;
  353. height: 100%;
  354. }
  355. </style>