add.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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. <picker @change="bindPickerChange" mode="region">
  13. <view class="hflex acenter jbetween item">
  14. <view class="left">所在地区</view>
  15. <u-input v-model="areas" border="none" disabled disabledColor="#fff" placeholder="请选择所在地区"></u-input>
  16. <u-icon name="map-fill" color="#506DFF" size="13"></u-icon>
  17. </view>
  18. </picker>
  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. // 选择地区
  81. bindPickerChange(e) {
  82. console.log(e);
  83. that.province = e.detail.value[0]
  84. that.city = e.detail.value[1]
  85. that.area = e.detail.value[2]
  86. that.areas = e.detail.value[0] + e.detail.value[1] + e.detail.value[2]
  87. },
  88. // 设置默认地址
  89. change(e) {
  90. that.is_active = e
  91. },
  92. // 添加收获地址
  93. addAddress() {
  94. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  95. $api.req({
  96. url: '/data/api.User/add_address',
  97. method: 'POST',
  98. data: {
  99. type: that.is_active?1:0,
  100. name: that.name,
  101. phone: that.phone,
  102. province: that.province,
  103. city: that.city,
  104. area: that.area,
  105. address: that.address
  106. }
  107. }, function(res) {
  108. $api.info(res.info)
  109. if(res.code == 1) {
  110. if(that.is_active) {
  111. uni.setStorageSync('address_id',that.id)
  112. }
  113. $api.jump(1,-1)
  114. }
  115. })
  116. }
  117. },
  118. // 修改地址
  119. editAddress() {
  120. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  121. $api.req({
  122. url: '/data/api.User/save_address',
  123. method: 'POST',
  124. data: {
  125. id: that.id,
  126. type: that.is_active?1:0,
  127. name: that.name,
  128. phone: that.phone,
  129. province: that.province,
  130. city: that.city,
  131. area: that.area,
  132. address: that.address
  133. }
  134. }, function(res) {
  135. $api.info(res.info)
  136. if(res.code == 1) {
  137. if(that.is_active) {
  138. uni.setStorageSync('address_id',that.id)
  139. }
  140. $api.jump(1,-1)
  141. }
  142. })
  143. }
  144. },
  145. deleteAdd() {
  146. $api.req({
  147. url: '/data/api.User/del_address',
  148. method: 'POST',
  149. data: {
  150. id: that.id
  151. }
  152. }, function(res) {
  153. if(res.code == 1) {
  154. var address_id = uni.getStorageSync('address_id')
  155. if(that.id == address_id) {
  156. uni.removeStorageSync('address_id')
  157. }
  158. $api.info(res.info)
  159. $api.jump(-1)
  160. }
  161. })
  162. }
  163. },
  164. }
  165. </script>
  166. <style lang="scss" scoped>
  167. .content {
  168. padding: 0 30rpx;
  169. .form {
  170. margin-top: 22rpx;
  171. .item {
  172. padding: 26rpx 0;
  173. }
  174. .left {
  175. width: 200rpx;
  176. font-size: 28rpx;
  177. font-weight: 400;
  178. color: #222222;
  179. line-height: 40rpx;
  180. }
  181. }
  182. .btn {
  183. width: 100%;
  184. height: 84rpx;
  185. background: #506DFF;
  186. border-radius: 42rpx;
  187. font-size: 36rpx;
  188. font-weight: 500;
  189. color: #FFFFFF;
  190. text-align: center;
  191. line-height: 84rpx;
  192. margin-bottom: 66rpx;
  193. }
  194. .bottom {
  195. width: 100%;
  196. margin-bottom: 66rpx;
  197. .del_btn {
  198. width: 230rpx;
  199. height: 88rpx;
  200. border-radius: 44rpx;
  201. border: 1px solid #506DFF;
  202. text-align: center;
  203. line-height: 88rpx;
  204. font-size: 36rpx;
  205. font-weight: 500;
  206. color: #506DFF;
  207. }
  208. .save_btn {
  209. width: 430rpx;
  210. height: 88rpx;
  211. background: #506DFF;
  212. border-radius: 44rpx;
  213. text-align: center;
  214. line-height: 88rpx;
  215. font-size: 36rpx;
  216. font-weight: 500;
  217. color: #FFFFFF;
  218. }
  219. }
  220. }
  221. </style>