add.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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" @click="selectmap">
  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 jbetween item">
  20. <view class="left">详细地址</view>
  21. <u-textarea v-model="address" border="none" placeholder="请输入街道、楼牌号"></u-textarea>
  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. latitude: 0,
  52. longitude: 0,
  53. mapKey: '24f36a47991198151dae0d0168c154fe'
  54. }
  55. },
  56. onLoad(options) {
  57. that = this
  58. if(options.index) {
  59. that.getPredata(options.index)
  60. that.id = options.id
  61. }
  62. },
  63. methods: {
  64. getPredata(index) {
  65. that.is_edit = 1
  66. var pages = getCurrentPages()
  67. var prePage = pages[pages.length - 2]
  68. var data = prePage.$vm.pageList[index]
  69. that.name = data.name
  70. that.phone = data.phone
  71. that.province = data.province
  72. that.city = data.city
  73. that.area = data.area
  74. that.areas = that.province + that.city + that.area
  75. that.address = data.address
  76. that.id = data.id
  77. // if(data.type) {
  78. // that.is_active = true
  79. // } else {
  80. // that.is_active = false
  81. // }
  82. },
  83. selectAddress(e) {
  84. console.log('地图地址',e);
  85. that.province = e[0]
  86. that.city = e[1]
  87. that.area = e[2]
  88. },
  89. // 选择地区
  90. bindPickerChange(e) {
  91. console.log(e);
  92. that.province = e.detail.value[0]
  93. that.city = e.detail.value[1]
  94. that.area = e.detail.value[2]
  95. that.areas = e.detail.value[0] + e.detail.value[1] + e.detail.value[2]
  96. },
  97. // 设置默认地址
  98. change(e) {
  99. that.is_active = e
  100. },
  101. // 添加收获地址
  102. addAddress() {
  103. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  104. $api.req({
  105. url: '/data/api.business.User/add_address',
  106. method: 'POST',
  107. data: {
  108. // type: that.is_active?1:0,
  109. name: that.name,
  110. phone: that.phone,
  111. province: that.province,
  112. city: that.city,
  113. area: that.area,
  114. address: that.address
  115. }
  116. }, function(res) {
  117. $api.info(res.info)
  118. if(res.code == 1) {
  119. if(that.is_active) {
  120. uni.setStorageSync('address_id',that.id)
  121. }
  122. $api.jump(1,-1)
  123. }
  124. })
  125. }
  126. },
  127. // 修改地址
  128. editAddress() {
  129. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  130. $api.req({
  131. url: '/data/api.business.User/address_edit',
  132. method: 'POST',
  133. data: {
  134. address_id: that.id,
  135. // type: that.is_active?1:0,
  136. name: that.name,
  137. phone: that.phone,
  138. province: that.province,
  139. city: that.city,
  140. area: that.area,
  141. address: that.address
  142. }
  143. }, function(res) {
  144. $api.info(res.info)
  145. if(res.code == 1) {
  146. if(that.is_active) {
  147. uni.setStorageSync('address_id',that.id)
  148. }
  149. $api.jump(1,-1)
  150. }
  151. })
  152. }
  153. },
  154. deleteAdd() {
  155. $api.req({
  156. url: '/data/api.User/del_address',
  157. method: 'POST',
  158. data: {
  159. id: that.id
  160. }
  161. }, function(res) {
  162. if(res.code == 1) {
  163. var address_id = uni.getStorageSync('address_id')
  164. if(that.id == address_id) {
  165. uni.removeStorageSync('address_id')
  166. }
  167. $api.info(res.info)
  168. $api.jump(-1)
  169. }
  170. })
  171. },
  172. selectmap() {
  173. uni.chooseLocation({
  174. success: function (res) {
  175. console.log(res);
  176. // that.areas = res.name
  177. that.address = res.address
  178. that.longitude = res.longitude
  179. that.latitude = res.latitude
  180. uni.request({
  181. url:'https://restapi.amap.com/v3/geocode/regeo?output=JSON&location='+res.longitude+','+ res.latitude +'&key=' + that.mapKey + '&radius=1000&extensions=all',
  182. method: 'GET',
  183. success(res) {
  184. let data = res.data.regeocode.addressComponent
  185. that.province = data.province
  186. if(typeof(data.city) == 'string') {
  187. that.city = data.city
  188. } else {
  189. that.city = data.province
  190. }
  191. that.area = data.district
  192. that.areas = that.province + that.city + that.area
  193. },
  194. fail(error) {
  195. console.log(error);
  196. }
  197. });
  198. },
  199. fail: (err) => {
  200. }
  201. });
  202. }
  203. },
  204. }
  205. </script>
  206. <style lang="scss" scoped>
  207. .content::v-deep {
  208. padding: 0 30rpx;
  209. .form {
  210. margin-top: 22rpx;
  211. .item {
  212. padding: 26rpx 0;
  213. .u-textarea {
  214. padding: 0 !important;
  215. }
  216. }
  217. .left {
  218. width: 200rpx;
  219. font-size: 28rpx;
  220. font-weight: 400;
  221. color: #222222;
  222. line-height: 40rpx;
  223. }
  224. .address {
  225. width: 490rpx;
  226. font-size: 30rpx !important;
  227. }
  228. }
  229. .btn {
  230. width: 100%;
  231. height: 84rpx;
  232. background: #506DFF;
  233. border-radius: 42rpx;
  234. font-size: 36rpx;
  235. font-weight: 500;
  236. color: #FFFFFF;
  237. text-align: center;
  238. line-height: 84rpx;
  239. margin-bottom: 66rpx;
  240. }
  241. .bottom {
  242. width: 100%;
  243. margin-bottom: 66rpx;
  244. .del_btn {
  245. width: 230rpx;
  246. height: 88rpx;
  247. border-radius: 44rpx;
  248. border: 1px solid #506DFF;
  249. text-align: center;
  250. line-height: 88rpx;
  251. font-size: 36rpx;
  252. font-weight: 500;
  253. color: #506DFF;
  254. }
  255. .save_btn {
  256. width: 430rpx;
  257. height: 88rpx;
  258. background: #506DFF;
  259. border-radius: 44rpx;
  260. text-align: center;
  261. line-height: 88rpx;
  262. font-size: 36rpx;
  263. font-weight: 500;
  264. color: #FFFFFF;
  265. }
  266. }
  267. }
  268. </style>