s-pay-password.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <view class="paymentCodeBox" v-if="show">
  3. <view class="password-set-page">
  4. <view class="setPage">
  5. <view class="hint mb-30 height110 width100Percent ss-font-32 ss-color-222 ss-font-bold">
  6. {{ title }}
  7. <view class="imgClose" @click="onClose">
  8. <image src="@/static/icon/close.svg" style="width:50rpx;height:50rpx"></image>
  9. </view>
  10. </view>
  11. <view class="code">
  12. <view class="numFont">
  13. <view v-for="(item, index) in 6" :key="index">{{ password[index] && '●' || '' }}</view>
  14. </view>
  15. </view>
  16. <view class="keyboard">
  17. <button v-for="(item, index) in 9" :key="index" @click="key(index + 1)">
  18. <text>{{ index + 1 }}</text>
  19. </button>
  20. <button class="hide"></button>
  21. <button @click="key(0)">
  22. <text>0</text>
  23. </button>
  24. <button @click="del">
  25. <image src="@/static/icon/close.svg" mode="aspectFill"></image>
  26. </button>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script setup>
  33. import { ref, computed } from 'vue'
  34. import sheep from '@/sheep'
  35. import { hidePayPassword } from '@/sheep/hooks/useModal'
  36. import UserApi from '@/sheep/api/member/user';
  37. const modalStore = sheep.$store('modal')
  38. const password = ref('')
  39. const show = computed(() => modalStore.payPassword.show)
  40. const title = computed(() => modalStore.payPassword.title)
  41. // 处理密码输入完成
  42. async function handleComplete(inputPassword) {
  43. const { type, step, callback, oldPassword, newPassword } = modalStore.payPassword
  44. if (type === 'input') {
  45. callback?.(inputPassword)
  46. hidePayPassword()
  47. } else if (type === 'change') {
  48. if (step === 1) {
  49. modalStore.$patch((state) => {
  50. state.payPassword.oldPassword = inputPassword
  51. state.payPassword.step = 2
  52. state.payPassword.title = '请输入新支付密码'
  53. })
  54. } else if (step === 2) {
  55. modalStore.$patch((state) => {
  56. state.payPassword.newPassword = inputPassword
  57. state.payPassword.step = 3
  58. state.payPassword.title = '请确认新支付密码'
  59. })
  60. } else if (step === 3) {
  61. if (inputPassword === newPassword) {
  62. try {
  63. const { code } = await UserApi.updatePayPassword({
  64. payPassword: inputPassword,
  65. oldPayPassword: oldPassword
  66. })
  67. if (code === 0) {
  68. uni.showToast({
  69. title: '修改成功',
  70. icon: 'success'
  71. })
  72. callback?.({ oldPassword, newPassword: inputPassword })
  73. }
  74. hidePayPassword()
  75. } catch (error) {
  76. uni.showToast({
  77. title: error.message || '修改失败',
  78. icon: 'none'
  79. })
  80. hidePayPassword()
  81. }
  82. } else {
  83. uni.showToast({
  84. title: '两次密码不一致',
  85. icon: 'none'
  86. })
  87. modalStore.$patch((state) => {
  88. state.payPassword.step = 2
  89. state.payPassword.title = '请输入新支付密码'
  90. })
  91. }
  92. }
  93. } else if (type === 'set') {
  94. if (step === 1) {
  95. modalStore.$patch((state) => {
  96. state.payPassword.newPassword = inputPassword
  97. state.payPassword.step = 2
  98. state.payPassword.title = '请确认支付密码'
  99. })
  100. } else if (step === 2) {
  101. if (inputPassword === newPassword) {
  102. try {
  103. const { code } = await UserApi.updatePayPassword({
  104. payPassword: inputPassword
  105. })
  106. if (code === 0) {
  107. uni.showToast({
  108. title: '设置成功',
  109. icon: 'success'
  110. })
  111. callback?.(inputPassword)
  112. }
  113. hidePayPassword()
  114. } catch (error) {
  115. uni.showToast({
  116. title: error.message || '设置失败',
  117. icon: 'none'
  118. })
  119. hidePayPassword()
  120. }
  121. } else {
  122. uni.showToast({
  123. title: '两次密码不一致',
  124. icon: 'none'
  125. })
  126. modalStore.$patch((state) => {
  127. state.payPassword.step = 1
  128. state.payPassword.title = '设置支付密码'
  129. })
  130. }
  131. }
  132. }
  133. // 清空当前输入
  134. password.value = ''
  135. }
  136. // 输入数字
  137. function key(num) {
  138. if (password.value.length < 6) {
  139. password.value += num
  140. if (password.value.length === 6) {
  141. handleComplete(password.value)
  142. }
  143. }
  144. }
  145. // 删除数字
  146. function del() {
  147. if (password.value.length > 0) {
  148. password.value = password.value.substring(0, password.value.length - 1)
  149. }
  150. }
  151. // 关闭弹窗
  152. function onClose() {
  153. hidePayPassword()
  154. modalStore.payPassword.onCancel?.()
  155. }
  156. </script>
  157. <style lang="scss" scoped>
  158. .paymentCodeBox {
  159. width: 100%;
  160. height: 100vh;
  161. background: rgba(0, 0, 0, .5);
  162. position: fixed;
  163. top: 0;
  164. left: 0;
  165. z-index: 999;
  166. .password-set-page {
  167. position: fixed;
  168. bottom: 0;
  169. width: 100%;
  170. height: 100vh;
  171. overflow: hidden;
  172. z-index: 999999;
  173. .setPage {
  174. position: fixed;
  175. bottom: 0;
  176. width: 100%;
  177. background: #fff;
  178. border-radius: 20rpx 20rpx 0 0;
  179. .hint {
  180. line-height: 110rpx;
  181. position: relative;
  182. text-align: center;
  183. border-bottom: 1rpx solid #ECECEC;
  184. display: flex;
  185. justify-content: space-between;
  186. align-items: center;
  187. padding: 0 20rpx;
  188. .imgClose {
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. }
  193. }
  194. }
  195. .code {
  196. margin: 30rpx 0;
  197. .numFont {
  198. display: flex;
  199. width: 690rpx;
  200. margin: 0 auto;
  201. view {
  202. flex: 1;
  203. height: 100rpx;
  204. border: 1rpx solid #D9D9D9;
  205. display: flex;
  206. align-items: center;
  207. justify-content: center;
  208. font-size: 60rpx;
  209. &:not(:last-child) {
  210. border-right: none;
  211. }
  212. }
  213. }
  214. }
  215. .slipBox {
  216. display: flex;
  217. justify-content: space-between;
  218. align-items: center;
  219. .goto {
  220. align-items: center;
  221. .imgBox {
  222. width: 9rpx;
  223. height: 16rpx;
  224. .img {
  225. width: 100%;
  226. height: 100%;
  227. }
  228. }
  229. }
  230. }
  231. .keyboard {
  232. width: 100%;
  233. background: #EEEEEE;
  234. display: flex;
  235. flex-wrap: wrap;
  236. padding-bottom: env(safe-area-inset-bottom);
  237. button {
  238. display: flex;
  239. align-items: center;
  240. justify-content: center;
  241. width: calc(100% / 3);
  242. height: 120rpx;
  243. background: #FFFFFF;
  244. border-radius: 0;
  245. margin: 1rpx 0 0 0;
  246. font-size: 50rpx;
  247. &.hide {
  248. background: #EEEEEE;
  249. }
  250. &:active:not(.hide) {
  251. background: #EEEEEE;
  252. }
  253. image {
  254. width: 52rpx;
  255. height: 38rpx;
  256. }
  257. }
  258. }
  259. }
  260. }
  261. </style>