address-add.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. <template>
  2. <view class="content">
  3. <view class="navbar">
  4. <u-navbar title="收货地址" :placeholder="true" :autoBack="true" v-if="id == ''"></u-navbar>
  5. <u-navbar title="收货地址" :placeholder="true" :autoBack="true" v-else @rightClick="del">
  6. <view class="u-slot-navbar" slot="right">
  7. <text>删除</text>
  8. </view>
  9. </u-navbar>
  10. </view>
  11. <view class="box">
  12. <view class="cell hflex acenter">
  13. <view class="label">收货人</view>
  14. <u-input placeholder="请填写收货人姓名" v-model="detail.name" border="none"></u-input>
  15. </view>
  16. <view class="cell hflex acenter">
  17. <view class="label">手机号码</view>
  18. <u-input placeholder="请填写收货人手机号码" v-model="detail.mobile" border="none"></u-input>
  19. </view>
  20. <view class="cell hflex acenter jbetween" @click="enable = true">
  21. <view class="label">所在地区</view>
  22. <u-input placeholder="请选择所在地区" :disabled="true" disabledColor="#FFFFFF" v-model="detail.province + detail.city + detail.area" border="none"></u-input>
  23. <u-icon name="arrow-down" color="#777777" size="16"></u-icon>
  24. </view>
  25. <view class="cell hflex acenter">
  26. <view class="label">详细地址</view>
  27. <u-input placeholder="请输入街道、楼牌号" v-model="detail.address" border="none"></u-input>
  28. </view>
  29. <view class="cell hflex acenter jbetween">
  30. <view class="label">设为默认地址</view>
  31. <u-switch v-model="detail.is_default" activeColor="#00b0b0" @change="change"></u-switch>
  32. </view>
  33. </view>
  34. <view class="btn" @click="add">保存</view>
  35. <view class="city-select" v-if="enable" @click="cityCancel">
  36. <block>
  37. <view class="picker-view" @click.stop="initcity">
  38. <view class="picker-view__pane">
  39. <text @click.stop="cityCancel">取消</text>
  40. <text @click.stop="citySure">确认</text>
  41. </view>
  42. <picker-view class="pick-view__group" @change="cityChange" @pickstart="chooseStart" @pickend="chooseEnd" :value="pickerValue">
  43. <picker-view-column indicator-class="item_active">
  44. <view v-for="item in provinces" class="picker-item" :key="item.id" :data-id="item.id">{{item.name}}</view>
  45. </picker-view-column>
  46. <picker-view-column>
  47. <view v-for="item in citys" class="picker-item" :key="item.id" :data-id="item.id">{{item.name}}</view>
  48. </picker-view-column>
  49. <picker-view-column>
  50. <view v-for="item in areas" class="picker-item" :key="item.id" :data-id="item.id">{{item.name}}</view>
  51. </picker-view-column>
  52. </picker-view>
  53. </view>
  54. </block>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. import $api from '@/static/js/api.js'
  60. export default {
  61. data() {
  62. return{
  63. id: '',
  64. detail: {
  65. name: '',
  66. mobile: '',
  67. province: '',
  68. province_id: '',
  69. city: '',
  70. city_id: '',
  71. area: '',
  72. area: '',
  73. address: '',
  74. is_default: false
  75. },
  76. provinces: [],
  77. citys: [],
  78. areas: [],
  79. pickerValue: [0, 0, 0],
  80. enable: false,
  81. isCanConfirm: true
  82. }
  83. },
  84. onLoad(option) {
  85. if(option.id) {
  86. this.id = option.id
  87. this.getdata()
  88. }
  89. this.getcity()
  90. },
  91. methods: {
  92. initcity() {
  93. this.enable = true
  94. },
  95. getcity() {
  96. var that = this
  97. $api.req({
  98. url: 'area',
  99. method: 'GET',
  100. data: {
  101. parent_id: 0
  102. }
  103. }, function(res) {
  104. that.provinces = res.data
  105. $api.req({
  106. url: 'area',
  107. method: 'GET',
  108. data: {
  109. parent_id: that.provinces[that.pickerValue[0]].id
  110. }
  111. }, function(res2) {
  112. that.citys = res2.data
  113. $api.req({
  114. url: 'area',
  115. method: 'GET',
  116. data: {
  117. parent_id: that.citys[that.pickerValue[1]].id
  118. }
  119. }, function(res3) {
  120. that.areas = res3.data
  121. })
  122. })
  123. })
  124. },
  125. cityCancel() {
  126. this.enable = false
  127. },
  128. citySure() {
  129. if (this.isCanConfirm) {
  130. var arr = this.pickerValue
  131. this.detail.province = this.provinces[arr[0]].name || null
  132. this.detail.province_id = this.provinces[arr[0]].id || null
  133. this.detail.city = this.citys[arr[1]].name || null
  134. this.detail.city_id = this.citys[arr[1]].id || null
  135. this.detail.area = this.areas[arr[2]].name || null
  136. this.detail.area_id = this.areas[arr[2]].id || null
  137. this.cityCancel()
  138. }
  139. },
  140. cityChange(e) {
  141. let arr = e.detail.value;
  142. let provinceNum = arr[0];
  143. let cityNum = arr[1];
  144. let areaNum = arr[2];
  145. if (this.pickerValue[0] !== provinceNum) {
  146. this.pickerValue=[provinceNum, 0, 0];
  147. this.getcity()
  148. } else if (this.pickerValue[1] !== cityNum) {
  149. this.pickerValue=[provinceNum, cityNum, 0];
  150. this.getcity()
  151. } else {
  152. this.pickerValue=[provinceNum, cityNum, areaNum];
  153. }
  154. },
  155. chooseStart(e) {
  156. this.isCanConfirm=false
  157. },
  158. chooseEnd(e) {
  159. this.isCanConfirm=true
  160. },
  161. del() {
  162. var _this = this
  163. uni.showModal({
  164. title: '删除',
  165. content: '是否确定要删除该地址',
  166. success: function (res) {
  167. if (res.confirm) {
  168. $api.req({
  169. url: 'address/' + _this.id,
  170. method: 'DELETE'
  171. }, function(res) {
  172. if(res.code === 10000) {
  173. uni.$u.toast(res.msg)
  174. setTimeout(() => {
  175. uni.navigateBack()
  176. },2300)
  177. }
  178. })
  179. } else if (res.cancel) {
  180. console.log('用户点击取消');
  181. }
  182. }
  183. });
  184. },
  185. add() {
  186. var _this = this
  187. if(!_this.detail.name) {
  188. uni.$u.toast('请先输入姓名')
  189. }
  190. if(!_this.detail.mobile) {
  191. uni.$u.toast('请先输入手机号')
  192. }
  193. if(!_this.detail.area) {
  194. uni.$u.toast('请先选择地区')
  195. }
  196. if(!_this.detail.address) {
  197. uni.$u.toast('请先输入详细地址')
  198. }
  199. $api.req({
  200. url: _this.id ? 'address/' + _this.id :'address',
  201. method: _this.id ? 'PUT' : 'POST',
  202. data: {
  203. name: _this.detail.name,
  204. mobile: _this.detail.mobile,
  205. province_id: _this.detail.province_id,
  206. city_id: _this.detail.city_id,
  207. district_id: _this.detail.area_id,
  208. address: _this.detail.address,
  209. is_default: _this.detail.is_default ? 1 : 0,
  210. }
  211. }, function(res) {
  212. if(res.code == 10000) {
  213. uni.$u.toast(res.msg)
  214. setTimeout(() => {
  215. uni.navigateBack()
  216. },2000)
  217. }
  218. })
  219. },
  220. getdata() {
  221. var _this = this
  222. $api.req({
  223. url: 'address/' + _this.id,
  224. method: 'GET'
  225. }, function(res) {
  226. if(res.code == 10000) {
  227. _this.detail.name = res.data.name
  228. _this.detail.mobile = res.data.mobile
  229. _this.detail.province_id = res.data.province_id
  230. _this.detail.province = res.data.province_name
  231. _this.detail.city_id = res.data.city_id
  232. _this.detail.city = res.data.city_name
  233. _this.detail.area_id = res.data.district_id
  234. _this.detail.area = res.data.district_name
  235. _this.detail.address = res.data.address
  236. _this.detail.is_default = res.data.is_default == 1 ? true : false
  237. }
  238. })
  239. }
  240. }
  241. }
  242. </script>
  243. <style lang="scss">
  244. .content {
  245. background: #F4F4F4;
  246. padding: 20rpx 28rpx;
  247. .box {
  248. background: #FFFFFF;
  249. border-radius: 20rpx;
  250. padding: 0 26rpx;
  251. .cell {
  252. padding: 30rpx 0 32rpx;
  253. .label {
  254. width: 180rpx;
  255. font-size: 28rpx;
  256. font-family: PingFangSC, PingFang SC;
  257. font-weight: 400;
  258. color: #222222;
  259. }
  260. }
  261. .cell:last-child {
  262. border-top: 1px solid #F1F7FE;
  263. }
  264. }
  265. .btn {
  266. position: fixed;
  267. left: 30rpx;
  268. bottom: 66rpx;
  269. width: 690rpx;
  270. height: 88rpx;
  271. background: #00B0B0;
  272. border-radius: 44rpx;
  273. font-size: 32rpx;
  274. font-family: PingFangSC, PingFang SC;
  275. font-weight: 500;
  276. color: #FFFFFF;
  277. text-align: center;
  278. line-height: 88rpx;
  279. }
  280. .city-select {
  281. position: fixed;
  282. width: 100%;
  283. height: 100%;
  284. left: 0;
  285. bottom: 0;
  286. background: rgba(0, 0, 0, .2);
  287. }
  288. .picker-view {
  289. position: fixed;
  290. width: 100%;
  291. display: flex;
  292. background-color: #ffffff;
  293. flex-direction: column;
  294. justify-content: center;
  295. align-items: center;
  296. left: 0rpx;
  297. bottom: 0rpx;
  298. transition: all 0.35s linear;
  299. border-top: 1rpx solid #eeeeee;
  300. }
  301. .pickerViewA{
  302. bottom: 0rpx;
  303. }
  304. .picker-item {
  305. line-height: 70rpx;
  306. margin-left: 5rpx;
  307. margin-right: 5rpx;
  308. text-align: center;
  309. }
  310. .picker-view__pane {
  311. height: 100rpx;
  312. width: 100%;
  313. padding: 20rpx 32rpx;
  314. display: flex;
  315. justify-content: space-between;
  316. align-items: center;
  317. box-sizing: border-box;
  318. }
  319. .picker-view__pane text {
  320. color: #00cc88;
  321. font-size: 30rpx;
  322. }
  323. .pick-view__group {
  324. width: 96%;
  325. height: 450rpx;
  326. }
  327. }
  328. </style>