cashOut.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <template>
  2. <view class="jz_myPoint uni-flex uni-column jz_addressServer jz_cashout">
  3. <view class="myPint_header uni-flex uni-column">
  4. <view class="t">账户积分</view>
  5. <view class="p">{{integral}}</view>
  6. </view>
  7. <view class="uni-list uni-flex uni-column">
  8. <view class="uni-list-cell " hover-class="uni-list-cell-hover" v-if="!showBank" @click="goBankList">
  9. <view class="uni-list-cell-navigate uni-navigate-right">
  10. <view class=" showBank">
  11. {{bank.realName}} {{bank.bankName}} {{bank.bankNo}}
  12. </view>
  13. </view>
  14. </view>
  15. <view class="uni-list-cell " hover-class="uni-list-cell-hover" v-if="showBank" @click="goBindBank">
  16. <view class="uni-list-cell-navigate uni-navigate-right">
  17. <view class="uni-flex align-items">
  18. <text style="margin-left: -8upx;">绑定银行</text>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="myPint_pace"></view>
  24. <view class="uni-flex uni-flex-item uni-common-mt uni-column">
  25. <form class="uni-flex uni-flex-item uni-column form" @submit="formSubmit" @reset="formReset">
  26. <view class="uni-flex uni-row align-items">
  27. <view class="uni-flex uni-flex-item">到账方式</view>
  28. <view class="uni-flex uni-flex-item4 uni-form-item">
  29. <input :value="pickerText" class="uni-input" disabled name="time" placeholder="选择到账方式" @click="showSinglePicker" />
  30. </view>
  31. </view>
  32. <view class="uni-flex uni-row align-items">
  33. <view class="uni-flex uni-flex-item">提现金额</view>
  34. <view class="uni-flex uni-flex-item4 justify-align-center uni-form-item">
  35. <input class="uni-input uni-flex-item" v-model="amount" name="amount" placeholder="请输入提现金额" />
  36. </view>
  37. </view>
  38. <view class="uni-flex uni-row align-items">
  39. <view class="uni-flex uni-flex-item">支付密码</view>
  40. <view class="uni-flex uni-flex-item4 uni-form-item"><input class="uni-input" password v-model="password" name="password"
  41. placeholder="请输入支付密码" /></view>
  42. </view>
  43. <view class="uni-flex justify-align-center add" style="background: #FFFFFF;"><button class="btn" formType="submit">确认提现</button></view>
  44. </form>
  45. </view>
  46. <mpvue-picker :themeColor="themeColor" ref="mpvuePicker" :mode="mode" :deepLength="deepLength" :pickerValueDefault="pickerValueDefault"
  47. @onConfirm="onConfirm" @onCancel="onCancel" :pickerValueArray="pickerValueArray"></mpvue-picker>
  48. </view>
  49. </template>
  50. <script>
  51. import {
  52. mapState,
  53. mapMutations
  54. } from 'vuex'
  55. var graceChecker = require('../../../common/graceChecker.js');
  56. import mpvuePicker from '../../../components/mpvue-picker/mpvuePicker.vue';
  57. export default {
  58. computed: {
  59. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  60. },
  61. data() {
  62. return {
  63. showBank: false,
  64. pickerValueArray: [],
  65. themeColor: '#007AFF',
  66. pickerSingleArray: [],
  67. mode: '',
  68. deepLength: 1,
  69. pickerValueDefault: [0],
  70. pickerText: '',
  71. backMoneys: [{
  72. title: "2小时以内到账(2元手续费)",
  73. id: 0
  74. },
  75. {
  76. title: "24小时以内到账(1元手续费)",
  77. id: 1
  78. }
  79. ],
  80. integral: '',
  81. user: {},
  82. bank: {},
  83. withDraw: {
  84. amount: '',
  85. bank: ''
  86. },
  87. bankstr: '',
  88. id: 0
  89. }
  90. },
  91. components: {
  92. mpvuePicker
  93. },
  94. onLoad(e) {
  95. this.integral = e.integral;
  96. this.user = JSON.parse(this.jyyUser);
  97. if (e.addressId) {
  98. this.id = e.addressId;
  99. }
  100. this.getData();
  101. },
  102. methods: {
  103. formSubmit: function(e) {
  104. var rule = [{
  105. name: 'time',
  106. checkType: 'notnull',
  107. checkRule: '',
  108. errorMsg: '请选择到账方式'
  109. },
  110. {
  111. name: 'amount',
  112. checkType: 'notnull',
  113. checkRule: '',
  114. errorMsg: '请输入提现金额'
  115. },
  116. {
  117. name: 'password',
  118. checkType: 'notnull',
  119. checkRule: '',
  120. errorMsg: '请输入支付密码'
  121. }
  122. ];
  123. //进行表单检查
  124. var formData = e.detail.value;
  125. var checkRes = graceChecker.check(formData, rule);
  126. this.bankstr = this.bank.realName + ',' + this.bank.bankName + ',' + this.bank.bankAddress + ',' + this.bank.bankNo
  127. this.withDraw.bank = this.bankstr;
  128. this.withDraw.amount = this.amount;
  129. this.amount = parseFloat(this.amount);
  130. this.integral = parseFloat(this.integral);
  131. if (checkRes) {
  132. if (this.amount > 0) {
  133. if (this.amount <= this.integral) {
  134. uni.request({
  135. url: this.webUrl + 'SaveWithDraw',
  136. method: 'POST',
  137. data: {
  138. withDraw: JSON.stringify(this.withDraw),
  139. userid: this.user.id
  140. },
  141. header: {
  142. 'content-type': 'application/x-www-form-urlencoded'
  143. },
  144. success: res => {
  145. uni.hideLoading();
  146. if (res.data.result.isSuccess) {
  147. uni.showToast({
  148. title: res.data.result.resultInfo,
  149. icon: 'none'
  150. });
  151. // uni.redirectTo({
  152. // url: 'bankList?url=' + this.url
  153. // });
  154. } else {
  155. uni.showToast({
  156. title: res.data.result.resultInfo,
  157. icon: 'none'
  158. });
  159. }
  160. },
  161. fail: () => {},
  162. complete: () => {}
  163. });
  164. } else {
  165. uni.showToast({
  166. icon: "none",
  167. title: "积分不足"
  168. })
  169. }
  170. } else {
  171. uni.showToast({
  172. icon: "none",
  173. title: "提现金额必须大于0"
  174. })
  175. }
  176. } else {
  177. uni.showToast({
  178. title: graceChecker.error,
  179. icon: 'none'
  180. });
  181. }
  182. },
  183. getData() {
  184. uni.request({
  185. url: this.webUrl + 'WithDraw',
  186. data: {
  187. userid: this.user.id,
  188. id: this.id
  189. },
  190. method: 'POST',
  191. header: {
  192. 'content-type': 'application/x-www-form-urlencoded'
  193. },
  194. success: res => {
  195. if (res.data.bank == null) {
  196. this.showBank = true;
  197. } else {
  198. this.bank = res.data.bank;
  199. }
  200. },
  201. fail: () => {},
  202. complete: () => {}
  203. });
  204. },
  205. goBankList() {
  206. uni.redirectTo({
  207. url: "bankList?url=cashOut&integral=" + this.integral
  208. })
  209. },
  210. goBindBank() {
  211. uni.redirectTo({
  212. url: "bindBank?url=cashOut&integral=" + this.integral
  213. })
  214. },
  215. onCancel(e) {
  216. console.log(e)
  217. },
  218. onConfirm(e) {
  219. this.pickerText = e.label;
  220. },
  221. // 单列
  222. showSinglePicker() {
  223. let singleArray = []
  224. for (var i = 0; i < this.backMoneys.length; i++) {
  225. singleArray.push({
  226. label: this.backMoneys[i].title,
  227. value: this.backMoneys[i].id
  228. })
  229. }
  230. this.pickerValueArray = singleArray;
  231. this.mode = 'selector';
  232. this.deepLength = 1;
  233. this.$refs.mpvuePicker.show();
  234. },
  235. }
  236. }
  237. </script>
  238. <style>
  239. </style>