address.vue 5.6 KB

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