add.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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" 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. }
  58. },
  59. methods: {
  60. getPredata(index) {
  61. that.is_edit = 1
  62. var pages = getCurrentPages()
  63. var prePage = pages[pages.length - 2]
  64. var data = prePage.$vm.pageList[index]
  65. that.name = data.name
  66. that.phone = data.phone
  67. that.province = data.province
  68. that.city = data.city
  69. that.area = data.area
  70. that.areas = data.province + that.city + that.area
  71. that.address = data.address
  72. that.id = data.id
  73. if(data.type) {
  74. that.is_active = true
  75. } else {
  76. that.is_active = false
  77. }
  78. },
  79. // 选择地区
  80. bindPickerChange(e) {
  81. console.log(e);
  82. that.province = e.detail.value[0]
  83. that.city = e.detail.value[1]
  84. that.area = e.detail.value[2]
  85. that.areas = e.detail.value[0] + e.detail.value[1] + e.detail.value[2]
  86. },
  87. // 设置默认地址
  88. change(e) {
  89. that.is_active = e
  90. },
  91. // 添加收获地址
  92. addAddress() {
  93. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  94. $api.req({
  95. url: '/data/api.User/add_address',
  96. method: 'POST',
  97. data: {
  98. type: that.is_active?1:0,
  99. name: that.name,
  100. phone: that.phone,
  101. province: that.province,
  102. city: that.city,
  103. area: that.area,
  104. address: that.address
  105. }
  106. }, function(res) {
  107. $api.info(res.info)
  108. if(res.code == 1) {
  109. $api.jump(1,-1)
  110. }
  111. })
  112. }
  113. },
  114. // 修改地址
  115. editAddress() {
  116. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  117. $api.req({
  118. url: '/data/api.User/save_address',
  119. method: 'POST',
  120. data: {
  121. type: that.is_active?1:0,
  122. name: that.name,
  123. phone: that.phone,
  124. province: that.province,
  125. city: that.city,
  126. area: that.area,
  127. address: that.address
  128. }
  129. }, function(res) {
  130. $api.info(res.info)
  131. if(res.code == 1) {
  132. $api.jump(1,-1)
  133. }
  134. })
  135. }
  136. },
  137. deleteAdd() {
  138. $api.req({
  139. url: '/data/api.User/del_address',
  140. method: 'POST',
  141. data: {
  142. id: that.id
  143. }
  144. }, function(res) {
  145. if(res.code == 1) {
  146. $api.info(res.info)
  147. $api.jump(-1)
  148. }
  149. })
  150. }
  151. },
  152. }
  153. </script>
  154. <style lang="scss" scoped>
  155. .content {
  156. padding: 0 30rpx;
  157. .form {
  158. margin-top: 22rpx;
  159. .item {
  160. padding: 26rpx 0;
  161. }
  162. .left {
  163. width: 200rpx;
  164. font-size: 28rpx;
  165. font-weight: 400;
  166. color: #222222;
  167. line-height: 40rpx;
  168. }
  169. }
  170. .btn {
  171. width: 100%;
  172. height: 84rpx;
  173. background: #506DFF;
  174. border-radius: 42rpx;
  175. font-size: 36rpx;
  176. font-weight: 500;
  177. color: #FFFFFF;
  178. text-align: center;
  179. line-height: 84rpx;
  180. margin-bottom: 66rpx;
  181. }
  182. .bottom {
  183. width: 100%;
  184. margin-bottom: 66rpx;
  185. .del_btn {
  186. width: 230rpx;
  187. height: 88rpx;
  188. border-radius: 44rpx;
  189. border: 1px solid #506DFF;
  190. text-align: center;
  191. line-height: 88rpx;
  192. font-size: 36rpx;
  193. font-weight: 500;
  194. color: #506DFF;
  195. }
  196. .save_btn {
  197. width: 430rpx;
  198. height: 88rpx;
  199. background: #506DFF;
  200. border-radius: 44rpx;
  201. text-align: center;
  202. line-height: 88rpx;
  203. font-size: 36rpx;
  204. font-weight: 500;
  205. color: #FFFFFF;
  206. }
  207. }
  208. }
  209. </style>