bankList.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="uni-flex uni-column address jz_address">
  3. <view class="uni-flex addresslist uni-column" v-if="bankList.length>0">
  4. <view class="addressitem uni-flex space-between align-items" v-for="(item,key) in bankList" :key="key">
  5. <view class="itemleft uni-flex uni-column" style="width: 120upx; word-wrap:break-word;" @click="goOrder(item)">
  6. <view class="lefNick" v-if="item.defaultVal">{{item.realName}}</view>
  7. <view class="lefNick uni-flex align-items" v-if="!item.defaultVal">{{item.realName}}</view>
  8. <view v-if="item.defaultVal" class="leftBtn">默认</view>
  9. </view>
  10. <view class="itemcenter uni-flex uni-column" @click="goOrder(item)">
  11. <view class="centerPhone">{{item.bankNo}}</view>
  12. <view class="centerAddress">{{item.bankName}}</view>
  13. </view>
  14. <view class="itemright uni-flex justify-align-center">
  15. <view class="uni-flex uni-column">
  16. <text @click="goService(item)" class="uni-h5">编辑</text>
  17. <text @click="del(item,key)" class="uni-h5">删除</text>
  18. </view>
  19. <view class="itemRt uni-flex justify-align-center" style="margin-left: 10upx;" v-if="url=='../order/order'" @click="goOrder(item)">
  20. <uni-icon type="arrowright" size="20" color="#999999"></uni-icon>
  21. </view>
  22. </view>
  23. </view>
  24. <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
  25. <view @click="newService()" class="addBtn-wrap uni-flex justify-align-center" v-if="bankList.length>0">
  26. <view class="addBtn uni-flex justify-align-center">新建银行信息</view>
  27. </view>
  28. </view>
  29. <view class="uni-lists uni-flex justify-align-center uni-column" v-if="bankList.length==0">
  30. <view class="addressImg uni-flex justify-align-center">
  31. <image src="../../../static/address/08.png"></image>
  32. </view>
  33. <view class="noaddressTitle">1个银行信息也没有,</view>
  34. <view class="noaddressTitle">快去添加吧</view>
  35. <view @click="add()" class="addBtn-wrap uni-flex justify-align-center" v-if="bankList.length==0">
  36. <view class="addBtn uni-flex justify-align-center">新建银行信息</view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. import {
  43. mapState,
  44. mapMutations
  45. } from 'vuex'
  46. import loadMore from '@/components/uni-load-more.vue';
  47. import uniIcon from '../../../components/uni-icon/uni-icon.vue';
  48. var index;
  49. export default {
  50. computed: {
  51. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  52. },
  53. data() {
  54. return {
  55. user: {},
  56. url: "",
  57. integral: '',
  58. bankList: [],
  59. loadingType: 0,
  60. contentText: {
  61. contentdown: "上拉显示更多",
  62. contentrefresh: "正在加载...",
  63. contentnomore: "没有更多数据了"
  64. }
  65. };
  66. },
  67. onPullDownRefresh() {
  68. this.init();
  69. setTimeout(function() {
  70. uni.stopPullDownRefresh();
  71. }, 1000);
  72. },
  73. onShow() {
  74. this.init();
  75. },
  76. onLoad(e) {
  77. this.url = e.url;
  78. this.integral = e.integral;
  79. this.init();
  80. },
  81. methods: {
  82. init() {
  83. index = 1;
  84. if (!this.hasLogin) {
  85. uni.navigateTo({
  86. url: '../login/login',
  87. });
  88. } else {
  89. this.user = JSON.parse(this.jyyUser);
  90. this.getData();
  91. }
  92. },
  93. goOrder: function(e) {
  94. if (this.url == undefined || this.url == "undefined") {
  95. return false;
  96. } else {
  97. uni.redirectTo({
  98. url: "cashOut?addressId=" + e.id + '&integral=' + this.integral
  99. })
  100. }
  101. },
  102. add() {
  103. uni.redirectTo({
  104. url: "bindBank?url=cashOut" + '&integral=' + this.integral
  105. })
  106. },
  107. del(e, key) {
  108. uni.showModal({
  109. content: '确认删除?',
  110. success: (res) => {
  111. if (res.confirm) {
  112. uni.showLoading({
  113. title: "操作中"
  114. })
  115. uni.request({
  116. url: this.webUrl + 'DelBank',
  117. method: 'POST',
  118. data: {
  119. id: e.id,
  120. userid: this.user.id
  121. },
  122. header: {
  123. 'content-type': 'application/x-www-form-urlencoded'
  124. },
  125. success: res => {
  126. uni.hideLoading();
  127. uni.showToast({
  128. title: res.data.result.resultInfo,
  129. icon: "none"
  130. });
  131. e.isDeleted = true;
  132. this.bankList.splice(key, 1)
  133. },
  134. fail: () => {},
  135. complete: () => {}
  136. });
  137. }
  138. }
  139. })
  140. },
  141. getData() {
  142. if (this.loadingType !== 0) {
  143. return;
  144. }
  145. this.loadingType = 1;
  146. let user = JSON.parse(this.jyyUser);
  147. uni.request({
  148. url: this.webUrl + 'BankList',
  149. method: 'POST',
  150. data: {
  151. pageIndex: index,
  152. userid: user.id
  153. },
  154. header: {
  155. 'content-type': 'application/x-www-form-urlencoded'
  156. },
  157. success: res => {
  158. if (res.data.result.bankList.length > 0) {
  159. this.bankList = this.bankList.concat(res.data.result.bankList);
  160. } else {
  161. this.loadingType = 2;
  162. return;
  163. }
  164. if (index == parseInt(res.data.result.pages)) {
  165. this.loadingType = 2;
  166. return;
  167. } else {
  168. this.loadingType = 0;
  169. }
  170. index++;
  171. },
  172. fail: () => {},
  173. complete: () => {}
  174. });
  175. },
  176. newService() {
  177. uni.navigateTo({
  178. // url: "bindBank?id=0",
  179. url: "bindBank?integral=" + this.integral
  180. })
  181. },
  182. goService: function(e) {
  183. if (this.url == undefined) {
  184. uni.navigateTo({
  185. url: "bindBank?id=" + e.id + '&integral=' + this.integral
  186. })
  187. } else {
  188. uni.redirectTo({
  189. url: "bindBank?id=" + e.id + "&url=" + this.url + '&integral=' + this.integral
  190. })
  191. }
  192. }
  193. },
  194. onReachBottom() {
  195. this.getData();
  196. },
  197. components: {
  198. loadMore,
  199. uniIcon
  200. }
  201. }
  202. </script>
  203. <style>
  204. page {
  205. background: #FFFFFF;
  206. }
  207. .jz_address .addBtn {
  208. background: url(../../../static/btn.png) no-repeat;
  209. width: 550upx;
  210. height: 115upx;
  211. color: #FFFFFF;
  212. font-size: 28upx;
  213. margin: 0 auto;
  214. background-size: 550upx 115upx;
  215. }
  216. .jz_address .addressitem .itemright {
  217. margin: 0;
  218. }
  219. </style>