add.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <template>
  2. <view class="content vflex jbetween">
  3. <view class="form">
  4. <view class="hflex acenter jbetween item">
  5. <view class="left">收货人</view>
  6. <u-input v-model="name" border="none" placeholder="请填写收货人姓名"></u-input>
  7. </view>
  8. <view class="hflex acenter jbetween item">
  9. <view class="left">手机号码</view>
  10. <u-input v-model="phone" border="none" placeholder="请填写收货人手机号码"></u-input>
  11. </view>
  12. <view class="hflex acenter jbetween item">
  13. <view class="left">所在地区</view>
  14. <comp-select-address :addressStr="areas" class="address" @selectAddress="selectAddress">
  15. </comp-select-address>
  16. <!-- <u-input v-model="areas" border="none" disabled disabledColor="#fff" placeholder="请选择所在地区"></u-input> -->
  17. <u-icon name="map-fill" color="#506DFF" size="13"></u-icon>
  18. </view>
  19. <view class="hflex acenter jbetween item">
  20. <view class="left">详细地址</view>
  21. <u-input v-model="address" border="none" placeholder="请输入街道、楼牌号"></u-input>
  22. </view>
  23. <!-- <view class="hflex acenter jbetween item">
  24. <view class="left">设为默认地址</view>
  25. <u-switch v-model="is_active" activeColor="#506dff" @change="change"></u-switch>
  26. </view> -->
  27. </view>
  28. <view class="btn" v-if="is_edit == 0" @click="addAddress">保存</view>
  29. <view class="bottom hflex acenter jbetween" v-else>
  30. <view class="del_btn" @click="deleteAdd">删除</view>
  31. <view class="save_btn" @click="editAddress">保存</view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import $api from '@/static/js/api.js'
  37. var that = ''
  38. export default {
  39. data() {
  40. return {
  41. name: '',
  42. phone: '',
  43. province: '',
  44. city: '',
  45. area: '',
  46. areas: '',
  47. address: '',
  48. is_active: false,
  49. is_edit: 0,
  50. id: ''
  51. }
  52. },
  53. onLoad(options) {
  54. that = this
  55. if(options.index) {
  56. that.getPredata(options.index)
  57. that.id = options.id
  58. }
  59. },
  60. methods: {
  61. getPredata(index) {
  62. that.is_edit = 1
  63. var pages = getCurrentPages()
  64. var prePage = pages[pages.length - 2]
  65. var data = prePage.$vm.pageList[index]
  66. that.name = data.name
  67. that.phone = data.phone
  68. that.province = data.province
  69. that.city = data.city
  70. that.area = data.area
  71. that.areas = data.province + that.city + that.area
  72. that.address = data.address
  73. that.id = data.id
  74. // if(data.type) {
  75. // that.is_active = true
  76. // } else {
  77. // that.is_active = false
  78. // }
  79. },
  80. selectAddress(e) {
  81. console.log(e);
  82. that.province = e[0]
  83. that.city = e[1]
  84. that.area = e[2]
  85. },
  86. // 选择地区
  87. bindPickerChange(e) {
  88. console.log(e);
  89. that.province = e.detail.value[0]
  90. that.city = e.detail.value[1]
  91. that.area = e.detail.value[2]
  92. that.areas = e.detail.value[0] + e.detail.value[1] + e.detail.value[2]
  93. },
  94. // 设置默认地址
  95. change(e) {
  96. that.is_active = e
  97. },
  98. // 添加收获地址
  99. addAddress() {
  100. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  101. $api.req({
  102. url: '/data/api.business.User/add_address',
  103. method: 'POST',
  104. data: {
  105. // type: that.is_active?1:0,
  106. name: that.name,
  107. phone: that.phone,
  108. province: that.province,
  109. city: that.city,
  110. area: that.area,
  111. address: that.address
  112. }
  113. }, function(res) {
  114. $api.info(res.info)
  115. if(res.code == 1) {
  116. if(that.is_active) {
  117. uni.setStorageSync('address_id',that.id)
  118. }
  119. $api.jump(1,-1)
  120. }
  121. })
  122. }
  123. },
  124. // 修改地址
  125. editAddress() {
  126. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  127. $api.req({
  128. url: '/data/api.business.User/address_edit',
  129. method: 'POST',
  130. data: {
  131. address_id: that.id,
  132. // type: that.is_active?1:0,
  133. name: that.name,
  134. phone: that.phone,
  135. province: that.province,
  136. city: that.city,
  137. area: that.area,
  138. address: that.address
  139. }
  140. }, function(res) {
  141. $api.info(res.info)
  142. if(res.code == 1) {
  143. if(that.is_active) {
  144. uni.setStorageSync('address_id',that.id)
  145. }
  146. $api.jump(1,-1)
  147. }
  148. })
  149. }
  150. },
  151. deleteAdd() {
  152. $api.req({
  153. url: '/data/api.User/del_address',
  154. method: 'POST',
  155. data: {
  156. id: that.id
  157. }
  158. }, function(res) {
  159. if(res.code == 1) {
  160. var address_id = uni.getStorageSync('address_id')
  161. if(that.id == address_id) {
  162. uni.removeStorageSync('address_id')
  163. }
  164. $api.info(res.info)
  165. $api.jump(-1)
  166. }
  167. })
  168. }
  169. },
  170. }
  171. </script>
  172. <style lang="scss" scoped>
  173. .content {
  174. padding: 0 30rpx;
  175. .form {
  176. margin-top: 22rpx;
  177. .item {
  178. padding: 26rpx 0;
  179. }
  180. .left {
  181. width: 200rpx;
  182. font-size: 28rpx;
  183. font-weight: 400;
  184. color: #222222;
  185. line-height: 40rpx;
  186. }
  187. .address {
  188. width: 490rpx;
  189. font-size: 30rpx !important;
  190. }
  191. }
  192. .btn {
  193. width: 100%;
  194. height: 84rpx;
  195. background: #506DFF;
  196. border-radius: 42rpx;
  197. font-size: 36rpx;
  198. font-weight: 500;
  199. color: #FFFFFF;
  200. text-align: center;
  201. line-height: 84rpx;
  202. margin-bottom: 66rpx;
  203. }
  204. .bottom {
  205. width: 100%;
  206. margin-bottom: 66rpx;
  207. .del_btn {
  208. width: 230rpx;
  209. height: 88rpx;
  210. border-radius: 44rpx;
  211. border: 1px solid #506DFF;
  212. text-align: center;
  213. line-height: 88rpx;
  214. font-size: 36rpx;
  215. font-weight: 500;
  216. color: #506DFF;
  217. }
  218. .save_btn {
  219. width: 430rpx;
  220. height: 88rpx;
  221. background: #506DFF;
  222. border-radius: 44rpx;
  223. text-align: center;
  224. line-height: 88rpx;
  225. font-size: 36rpx;
  226. font-weight: 500;
  227. color: #FFFFFF;
  228. }
  229. }
  230. }
  231. </style>