bindBank.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <view class="uni-flex jz_addressServer jz_bindBank">
  3. <view class="uni-flex uni-flex-item uni-common-mt uni-column">
  4. <form class="uni-flex uni-flex-item uni-column form" @submit="formSubmit" @reset="formReset">
  5. <view class="uni-flex uni-row align-items">
  6. <view class="uni-flex uni-flex-item">银行名称</view>
  7. <view class="uni-flex uni-flex-item4 uni-form-item">
  8. <input v-model="bankObj.bankName" class="uni-input" disabled name="bankName" placeholder="请选择银行" @click="showSinglePicker" />
  9. </view>
  10. </view>
  11. <view class="uni-flex uni-row align-items">
  12. <view class="uni-flex uni-flex-item">开户地址</view>
  13. <view class="uni-flex uni-flex-item4 uni-form-item">
  14. <input v-model="bankObj.bankAddress" class="uni-input" name="bankAddress" placeholder="请输入地址" />
  15. </view>
  16. </view>
  17. <view class="uni-flex uni-row align-items">
  18. <view class="uni-flex uni-flex-item">开户姓名</view>
  19. <view class="uni-flex uni-flex-item4 justify-align-center uni-form-item">
  20. <input class="uni-input uni-flex-item" v-model="bankObj.realName" name="realName" placeholder="请输入收款人姓名" />
  21. <view class="uni-flex justify-align-center">
  22. <image src="../../../static/address/05.png" class="addPeopleImg"></image>
  23. </view>
  24. </view>
  25. </view>
  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"><input class="uni-input" v-model="bankObj.bankNo" name="bankNo"
  29. placeholder="请输入银行卡号" /></view>
  30. </view>
  31. <view class="spaceone"></view>
  32. <view class="space"></view>
  33. <view class="uni-flex uni-row align-items">
  34. <view class="uni-flex uni-flex-item4">设为默认</view>
  35. <view class="uni-flex uni-flex-item">
  36. <switch :checked="bankObj.defaultVal" @change="switch1Change" color="#e40001" />
  37. </view>
  38. </view>
  39. <view class="uni-flex justify-align-center add"><button class="btn" formType="submit">⊕ 保存银行信息</button></view>
  40. </form>
  41. </view>
  42. <mpvue-picker :themeColor="themeColor" ref="mpvuePicker" :mode="mode" :deepLength="deepLength" :pickerValueDefault="pickerValueDefault"
  43. @onConfirm="onConfirm" @onCancel="onCancel" :pickerValueArray="pickerValueArray"></mpvue-picker>
  44. </view>
  45. </template>
  46. <script>
  47. var graceChecker = require('../../../common/graceChecker.js');
  48. import mpvuePicker from '../../../components/mpvue-picker/mpvuePicker.vue';
  49. import {
  50. mapState,
  51. mapMutations
  52. } from 'vuex';
  53. export default {
  54. data() {
  55. return {
  56. themeColor: '#007AFF',
  57. integral: '',
  58. pickerText: '',
  59. mode: '',
  60. address: {},
  61. user: {},
  62. url: '',
  63. id: '',
  64. pickerValueArray: [],
  65. pickerSingleArray: [],
  66. deepLength: 1,
  67. pickerValueDefault: [0],
  68. bankPickerText: '',
  69. banks: [],
  70. bankObj: {
  71. bankName: '',
  72. bankAddress: '',
  73. realName: '',
  74. bankNo: '',
  75. defaultVal: false
  76. }
  77. };
  78. },
  79. components: {
  80. mpvuePicker
  81. },
  82. computed: {
  83. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  84. },
  85. methods: {
  86. // 单列
  87. showSinglePicker() {
  88. let singleArray = []
  89. for (var i = 0; i < this.banks.length; i++) {
  90. singleArray.push({
  91. label: this.banks[i].remark,
  92. value: this.banks[i].value
  93. })
  94. }
  95. this.pickerValueArray = singleArray;
  96. this.mode = 'selector';
  97. this.deepLength = 1;
  98. this.$refs.mpvuePicker.show();
  99. },
  100. onConfirm(e) {
  101. this.bankObj.bankName = e.label;
  102. },
  103. switch1Change: function(e) {
  104. this.bankObj.defaultVal = e.target.value;
  105. },
  106. onCancel(e) {
  107. //console.log(e)
  108. },
  109. formSubmit: function(e) {
  110. var rule = [{
  111. name: 'bankName',
  112. checkType: 'notnull',
  113. checkRule: '',
  114. errorMsg: '请选择银行'
  115. },
  116. {
  117. name: 'bankAddress',
  118. checkType: 'notnull',
  119. checkRule: '',
  120. errorMsg: '请选择地区'
  121. },
  122. {
  123. name: 'realName',
  124. checkType: 'string',
  125. checkRule: '2,15',
  126. errorMsg: '请输入开户姓名'
  127. },
  128. {
  129. name: 'bankNo',
  130. checkType: 'notnull',
  131. checkRule: '',
  132. errorMsg: '请输入银行卡号'
  133. }
  134. ];
  135. //进行表单检查
  136. var formData = e.detail.value;
  137. var checkRes = graceChecker.check(formData, rule);
  138. if (checkRes) {
  139. uni.request({
  140. url: this.webUrl + 'SaveBank',
  141. method: 'POST',
  142. data: {
  143. bank: JSON.stringify(this.bankObj),
  144. id: this.address.id,
  145. userid: this.user.id
  146. },
  147. header: {
  148. 'content-type': 'application/x-www-form-urlencoded'
  149. },
  150. success: res => {
  151. uni.hideLoading();
  152. uni.showToast({
  153. title: res.data.result.resultInfo,
  154. icon: 'none'
  155. });
  156. if (res.data.result.isSuccess) {
  157. if (this.url == undefined) {
  158. this.url = 'bindBank'
  159. }
  160. uni.redirectTo({
  161. url: 'bankList?url=' + this.url + '&integral=' + this.integral
  162. });
  163. }
  164. },
  165. fail: () => {},
  166. complete: () => {}
  167. });
  168. } else {
  169. uni.showToast({
  170. title: graceChecker.error,
  171. icon: 'none'
  172. });
  173. }
  174. },
  175. getBanks() {
  176. uni.request({
  177. url: this.webUrl + 'Banks',
  178. method: 'POST',
  179. header: {
  180. 'content-type': 'application/x-www-form-urlencoded'
  181. },
  182. success: res => {
  183. this.banks = res.data.banks;
  184. },
  185. fail: () => {},
  186. complete: () => {}
  187. });
  188. },
  189. getData() {
  190. uni.request({
  191. url: this.webUrl + 'GetBank',
  192. method: 'POST',
  193. data: {
  194. userid: this.user.id,
  195. id: this.address.id
  196. },
  197. header: {
  198. 'content-type': 'application/x-www-form-urlencoded'
  199. },
  200. success: res => {
  201. if (res.data.bank != null) {
  202. this.bankObj = res.data.bank;
  203. }
  204. },
  205. fail: () => {},
  206. complete: () => {}
  207. });
  208. },
  209. formReset: function(e) {
  210. console.log('清空数据');
  211. this.chosen = '';
  212. }
  213. },
  214. onLoad(e) {
  215. if (!this.hasLogin) {
  216. uni.navigateTo({
  217. url: '../login/login'
  218. });
  219. } else {
  220. this.getBanks();
  221. this.url = e.url;
  222. this.user = JSON.parse(this.jyyUser);
  223. this.integral = e.integral;
  224. if (e.id == undefined) {
  225. this.address.id = 0;
  226. uni.setNavigationBarTitle({
  227. title: '添加银行信息'
  228. });
  229. } else {
  230. this.address.id = e.id;
  231. uni.setNavigationBarTitle({
  232. title: '修改银行信息'
  233. });
  234. this.getData();
  235. }
  236. }
  237. },
  238. onBackPress() {},
  239. onUnload() {}
  240. };
  241. </script>
  242. <style>
  243. </style>