add.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. data: {
  97. type: that.is_active?1:0,
  98. name: that.name,
  99. phone: that.phone,
  100. province: that.province,
  101. city: that.city,
  102. area: that.area,
  103. address: that.address
  104. }
  105. }, function(res) {
  106. $api.info(res.info)
  107. if(res.code == 1) {
  108. $api.jump(1,-1)
  109. }
  110. })
  111. }
  112. },
  113. // 修改地址
  114. editAddress() {
  115. if($api.formCheck(that.name,'required') && $api.formCheck(that.phone,'phone') && $api.formCheck(that.area,'required') && $api.formCheck(that.address,'required')) {
  116. $api.req({
  117. url: '/data/api.User/save_address',
  118. data: {
  119. type: that.is_active?1:0,
  120. name: that.name,
  121. phone: that.phone,
  122. province: that.province,
  123. city: that.city,
  124. area: that.area,
  125. address: that.address
  126. }
  127. }, function(res) {
  128. $api.info(res.info)
  129. if(res.code == 1) {
  130. $api.jump(1,-1)
  131. }
  132. })
  133. }
  134. },
  135. deleteAdd() {
  136. $api.req({
  137. url: '/data/api.User/del_address',
  138. data: {
  139. id: that.id
  140. }
  141. }, function(res) {
  142. if(res.code == 1) {
  143. $api.info(res.info)
  144. $api.jump(-1)
  145. }
  146. })
  147. }
  148. },
  149. }
  150. </script>
  151. <style lang="scss" scoped>
  152. .content {
  153. padding: 0 30rpx;
  154. .form {
  155. margin-top: 22rpx;
  156. .item {
  157. padding: 26rpx 0;
  158. }
  159. .left {
  160. width: 200rpx;
  161. font-size: 28rpx;
  162. font-weight: 400;
  163. color: #222222;
  164. line-height: 40rpx;
  165. }
  166. }
  167. .btn {
  168. width: 100%;
  169. height: 84rpx;
  170. background: #506DFF;
  171. border-radius: 42rpx;
  172. font-size: 36rpx;
  173. font-weight: 500;
  174. color: #FFFFFF;
  175. text-align: center;
  176. line-height: 84rpx;
  177. margin-bottom: 66rpx;
  178. }
  179. .bottom {
  180. width: 100%;
  181. margin-bottom: 66rpx;
  182. .del_btn {
  183. width: 230rpx;
  184. height: 88rpx;
  185. border-radius: 44rpx;
  186. border: 1px solid #506DFF;
  187. text-align: center;
  188. line-height: 88rpx;
  189. font-size: 36rpx;
  190. font-weight: 500;
  191. color: #506DFF;
  192. }
  193. .save_btn {
  194. width: 430rpx;
  195. height: 88rpx;
  196. background: #506DFF;
  197. border-radius: 44rpx;
  198. text-align: center;
  199. line-height: 88rpx;
  200. font-size: 36rpx;
  201. font-weight: 500;
  202. color: #FFFFFF;
  203. }
  204. }
  205. }
  206. </style>