form.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <template>
  2. <view class="app-container">
  3. <view class="row">
  4. <view class="title">收货人</view>
  5. <view class="right input"><input type="text" placeholder="请输入收货人" v-model="formData.name"></view>
  6. </view>
  7. <view class="row">
  8. <view class="title">手机号码</view>
  9. <view class="right input"><input type="number" placeholder="请输入手机号码" v-model="formData.phone"></view>
  10. </view>
  11. <view class="row">
  12. <view class="title">所在地区</view>
  13. <view class="right">
  14. <picker @change="onRegionChange" v-model="regionValue" mode="region">
  15. <view class="picker">
  16. <view v-if="regionValue.length">{{regionValue[0] + '/' +regionValue[1] + '/' +regionValue[2]}}</view>
  17. <view v-else style="color: #666666;">请选择省/市/区</view>
  18. <image src="@/static/icon/right.png"></image>
  19. </view>
  20. </picker>
  21. </view>
  22. </view>
  23. <view class="row">
  24. <view class="title">所在街道</view>
  25. <view class="right">
  26. <picker @change="onStreetChange" :value="streetValue" :range="streetList" range-key="name" :disabled="!regionValue[2]">
  27. <view class="picker">
  28. <view v-if="streetValue !== ''">{{streetList[streetValue].name}}</view>
  29. <view v-else style="color: #666666;">请选择街道</view>
  30. <image src="@/static/icon/right.png"></image>
  31. </view>
  32. </picker>
  33. </view>
  34. </view>
  35. <view class="row">
  36. <view class="title">收货地址</view>
  37. <view class="right textarea">
  38. <textarea placeholder="请输入收货地址" auto-height v-model="formData.address"></textarea>
  39. <view class="r" @tap="getLocation"><image src="@/static/icon/address2.png"></image>定位</view>
  40. </view>
  41. </view>
  42. <view class="row">
  43. <view class="title">门牌号</view>
  44. <view class="right input"><input type="text" placeholder="请输入门牌号" maxlength="15" v-model="formData.houseNo"></view>
  45. </view>
  46. <view class="row">
  47. <view class="title">设为默认地址</view>
  48. <view class="right default"><switch @change="switchChange" color="#FF3F42" v-model="formData.defaultAddr" :checked="formData.defaultAddr" style="transform:scale(0.7)" /></view>
  49. </view>
  50. <view class="button red" @tap="submitForm">保存</view>
  51. <view class="button white" v-if="editId" @tap="isDialog = true">删除</view>
  52. <modal-dialog showText="确定要删除该地址吗?" :isShowDialog="isDialog" @cancel="isDialog = false" @confirm="confirmDelete"></modal-dialog>
  53. </view>
  54. </template>
  55. <script>
  56. import {mapState} from 'vuex';
  57. import {getArea} from '@/utils/utils.js';
  58. import modalDialog from '@/components/modalDialog.vue';
  59. export default {
  60. components:{
  61. modalDialog
  62. },
  63. data() {
  64. return {
  65. editId: null, // 编辑的id
  66. isDialog: false, // 是否显示删除弹窗
  67. regionValue: [], // 省市区值
  68. streetList: [],
  69. streetValue: '',
  70. formData: { // 表单数据
  71. name: '',
  72. phone: '',
  73. province: '',
  74. city: '',
  75. area: '',
  76. street: '',
  77. address: '',
  78. houseNo: '',
  79. defaultAddr: false,
  80. },
  81. canClickSave: true, // 能否点击提交
  82. }
  83. },
  84. computed:{
  85. ...mapState(['userInfo', 'isLogin', 'userId'])
  86. },
  87. onLoad({id, addressData}) {
  88. this.editId = id;
  89. if(id) {
  90. uni.setNavigationBarTitle({
  91.   title: '编辑收货地址'
  92. })
  93. this.getAddressData();
  94. }
  95. if(addressData) {
  96. addressData = JSON.parse(addressData);
  97. this.formData = {
  98. name: addressData.name,
  99. phone: addressData.phone,
  100. province: addressData.province,
  101. city: addressData.city,
  102. area: addressData.area,
  103. address: addressData.address,
  104. houseNo: addressData.houseNo,
  105. defaultAddr: addressData.defaultAddr,
  106. }
  107. this.regionValue = [addressData.province, addressData.city, addressData.area];
  108. this.getStreetList();
  109. }
  110. },
  111. methods: {
  112. // 获取地址信息
  113. getAddressData() {
  114. this.$axios({
  115. url: '/user/address/detail',
  116. method: 'get',
  117. params: {
  118. userAddressId: this.editId
  119. }
  120. }).then(res => {
  121. this.formData = {
  122. name: res.data.name,
  123. phone: res.data.phone,
  124. province: res.data.province,
  125. city: res.data.city,
  126. area: res.data.area,
  127. address: res.data.address,
  128. houseNo: res.data.houseNo,
  129. defaultAddr: res.data.defaultAddr,
  130. }
  131. this.regionValue = [res.data.province, res.data.city, res.data.area];
  132. this.getStreetList(res.data.street);
  133. })
  134. },
  135. // 地图选点
  136. getLocation() {
  137. let that = this;
  138. uni.chooseLocation({
  139. success: function (res) {
  140. console.log(res);
  141. let SSQ_value = getArea(res.address);
  142. if(!SSQ_value.Province) {
  143. SSQ_value.Province = SSQ_value.City;
  144. }
  145. that.formData.province = SSQ_value.Province;
  146. that.formData.city = SSQ_value.City;
  147. that.formData.area = SSQ_value.Country;
  148. let regionValue = [];
  149. regionValue.push(SSQ_value.Province);
  150. regionValue.push(SSQ_value.City);
  151. regionValue.push(SSQ_value.Country);
  152. that.regionValue = regionValue;
  153. that.formData.address = res.address.slice(res.address.indexOf(SSQ_value.Country) + SSQ_value.Country.length) + res.name;
  154. that.getStreetList();
  155. that.streetValue = '';
  156. that.formData.street = '';
  157. },
  158. fail: function(res) {
  159. uni.getSetting({
  160. success: function(res) {
  161. if (!res.authSetting['scope.userLocation']) {
  162. uni.showModal({
  163. title: '是否授权当前位置',
  164. content: '需要获取您的地理位置,请确认授权,否则地图功能将无法使用',
  165. success(tip) {
  166. if (tip.confirm) {
  167. uni.openSetting({
  168. success: function(data) {
  169. if (data.authSetting["scope.userLocation"] === true) {
  170. that.$successToast('授权成功');
  171. setTimeout(() => {
  172. that.getLocation();
  173. }, 1000)
  174. }
  175. }
  176. })
  177. }
  178. }
  179. })
  180. }
  181. }
  182. })
  183. }
  184. });
  185. },
  186. // 切换省市区
  187. onRegionChange(e) {
  188. console.log(e.detail);
  189. this.regionValue = e.detail.value;
  190. this.formData.province = this.regionValue[0];
  191. this.formData.city = this.regionValue[1];
  192. this.formData.area = this.regionValue[2];
  193. this.getStreetList();
  194. this.streetValue = '';
  195. },
  196. // 获取街道列表
  197. getStreetList(street) {
  198. this.$axios({
  199. url: '/common/street',
  200. method: 'get',
  201. params: {
  202. province: this.regionValue[0],
  203. city: this.regionValue[1],
  204. area: this.regionValue[2],
  205. }
  206. }).then(res => {
  207. this.streetList = res.data;
  208. if(street) {
  209. let index = this.findElem(this.streetList, 'name', street);
  210. this.streetValue = index;
  211. this.formData.street = street;
  212. }
  213. })
  214. },
  215. // 切换街道
  216. onStreetChange(e) {
  217. console.log(e.detail.value);
  218. this.streetValue = e.detail.value;
  219. this.formData.street = this.streetList[this.streetValue].name;
  220. },
  221. findElem(array, attr, val) {
  222. for (var i = 0; i < array.length; i++) {
  223. if (array[i][attr] == val) {
  224. return i; //返回当前索引值
  225. }
  226. }
  227. return -1;
  228. },
  229. switchChange(e) {
  230. console.log(e.detail.value);
  231. this.formData.defaultAddr = e.detail.value;
  232. },
  233. // 验证数据
  234. vailateData() {
  235. if(!this.formData.name) {
  236. this.$toast('请填写姓名');
  237. return false;
  238. }
  239. if(!this.formData.phone) {
  240. this.$toast('请填写手机号码');
  241. return false;
  242. }
  243. if(!(/^1[3456789]\d{9}$/.test(this.formData.phone))) {
  244. this.$toast('请填写正确的手机号码');
  245. return false;
  246. }
  247. if(!this.formData.province) {
  248. this.$toast('请选择所在地区');
  249. return false;
  250. }
  251. if(!this.formData.street) {
  252. this.$toast('请选择所在街道');
  253. return false;
  254. }
  255. if(!this.formData.address) {
  256. this.$toast('请填写收货地址');
  257. return false;
  258. }
  259. return true;
  260. },
  261. // 提交表单
  262. submitForm() {
  263. if (!this.canClickSave) return false;
  264. this.canClickSave = false;
  265. setTimeout(() => { this.canClickSave = true }, 3000)
  266. if(!this.vailateData())return;
  267. let params = this.formData;
  268. params.userId = this.userId;
  269. let url = '';
  270. if(this.editId) {
  271. params.userAddressId = this.editId;
  272. url = '/user/address/update';
  273. }else {
  274. url = '/user/address/save';
  275. }
  276. this.$axios({
  277. url: url,
  278. type: 'application/json',
  279. params,
  280. isLoading: 1,
  281. }).then(res => {
  282. this.$successToast(this.editId? '编辑成功':'添加成功');
  283. setTimeout(() => {
  284. uni.navigateBack({
  285. delta: 1
  286. })
  287. }, 1000)
  288. })
  289. },
  290. // 删除
  291. confirmDelete() {
  292. this.$axios({
  293. url: '/user/address/del',
  294. params: {
  295. userAddressId: this.editId
  296. },
  297. isLoading: 1,
  298. }).then(res => {
  299. this.isDialog = false;
  300. this.$successToast('删除成功');
  301. setTimeout(() => {
  302. uni.navigateBack({
  303. delta: 1
  304. })
  305. }, 1000)
  306. })
  307. }
  308. }
  309. }
  310. </script>
  311. <style lang="scss">
  312. .app-container {
  313. background: #F4F2F2;
  314. padding: 0 30rpx;
  315. padding-top: 20rpx;
  316. box-sizing: border-box;
  317. .row {
  318. background: #FFFFFF;
  319. margin-bottom: 20rpx;
  320. min-height: 88rpx;
  321. border-radius: 20rpx;
  322. padding: 0 20rpx;
  323. display: flex;
  324. justify-content: space-between;
  325. align-items: center;
  326. .title {
  327. font-size: 28rpx;
  328. color: #333333;
  329. }
  330. .right {
  331. width: 480rpx;
  332. input {
  333. font-size: 28rpx;
  334. }
  335. .picker {
  336. display: flex;
  337. align-items: center;
  338. justify-content: space-between;
  339. image {
  340. width: 16rpx;
  341. height: 28rpx;
  342. }
  343. }
  344. }
  345. .textarea {
  346. display: flex;
  347. justify-content: space-between;
  348. align-items: center;
  349. textarea {
  350. padding: 10rpx 0;
  351. }
  352. .r {
  353. display: flex;
  354. align-items: center;
  355. flex-shrink: 0;
  356. font-size: 24rpx;
  357. color: #666666;
  358. margin-left: 15rpx;
  359. image {
  360. width: 28rpx;
  361. height: 36rpx;
  362. margin-right: 16rpx;
  363. }
  364. }
  365. }
  366. .default {
  367. display: flex;
  368. justify-content: flex-end;
  369. switch {
  370. margin-right: -20rpx;
  371. }
  372. }
  373. }
  374. .button {
  375. width: 100%;
  376. height: 72rpx;
  377. border-radius: 72rpx;
  378. text-align: center;
  379. line-height: 72rpx;
  380. &.red {
  381. background: #FF3F42;
  382. color: #FFFFFF;
  383. margin-top: 120rpx;
  384. }
  385. &.white {
  386. background: #FFFFFF;
  387. color: #333333;
  388. margin-top: 20rpx;
  389. }
  390. }
  391. }
  392. </style>