addressService.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <view class="uni-flex jz_addressServer">
  3. <view class="uni-flex uni-flex-item uni-common-mt uni-column">
  4. <form class="uni-flex uni-flex-item uni-column form" @submit="formSubmit" @reset="formReset">
  5. <view class="uni-flex uni-row align-items">
  6. <view class="uni-flex uni-flex-item">收货人</view>
  7. <view class="uni-flex uni-flex-item4 justify-align-center uni-form-item">
  8. <input class="uni-input uni-flex-item" v-model="address.nickName" name="nickName" placeholder="请填写收货人姓名" />
  9. <view class="uni-flex justify-align-center"><image src="../../../static/address/05.png" class="addPeopleImg"></image></view>
  10. </view>
  11. </view>
  12. <view class="uni-flex uni-row align-items">
  13. <view class="uni-flex uni-flex-item">手机号码</view>
  14. <view class="uni-flex uni-flex-item4 uni-form-item"><input class="uni-input" v-model="address.mobile" name="mobile" placeholder="请填写收货人手机号"/></view>
  15. </view>
  16. <view class="uni-flex uni-row align-items">
  17. <view class="uni-flex uni-flex-item">地区</view>
  18. <view class="uni-flex uni-flex-item4 uni-form-item">
  19. <input :value="pickerText" class="uni-input" disabled name="area" placeholder="选择地区" @click="showMulLinkageThreePicker" />
  20. </view>
  21. </view>
  22. <view class="uni-flex uni-row align-items">
  23. <view class="uni-flex uni-flex-item">详细地址</view>
  24. <view class="uni-flex uni-flex-item4 uni-form-item"><input class="uni-input" v-model="address.addStr" name="addStr" placeholder="如街道、楼牌号等" /></view>
  25. </view>
  26. <view class="spaceone"></view>
  27. <view class="space"></view>
  28. <view class="uni-flex uni-row align-items">
  29. <view class="uni-flex uni-flex-item4">设为默认</view>
  30. <view class="uni-flex uni-flex-item"><switch :checked="checked" @change="switch1Change" color="#e40001" /></view>
  31. </view>
  32. <view class="uni-flex justify-align-center add"><button class="btn" formType="submit">⊕ 保存地址</button></view>
  33. </form>
  34. </view>
  35. <mpvue-city-picker
  36. :themeColor="themeColor"
  37. ref="mpvueCityPicker"
  38. :pickerValueDefault="cityPickerValueDefault"
  39. @onCancel="onCancel"
  40. @onConfirm="onConfirm"
  41. ></mpvue-city-picker>
  42. </view>
  43. </template>
  44. <script>
  45. var graceChecker = require('../../../common/graceChecker.js');
  46. import mpvueCityPicker from '../../../components/mpvue-citypicker/mpvueCityPicker.vue';
  47. import { mapState, mapMutations } from 'vuex';
  48. export default {
  49. data() {
  50. return {
  51. cityPickerValueDefault: [0, 0, 1],
  52. themeColor: '#007AFF',
  53. pickerText: '',
  54. mode: '',
  55. address: {},
  56. user: {},
  57. checked: false,
  58. url: ''
  59. };
  60. },
  61. components: {
  62. mpvueCityPicker
  63. },
  64. computed: {
  65. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  66. },
  67. methods: {
  68. switch1Change: function(e) {
  69. this.address.defaultVal = e.target.value;
  70. },
  71. onCancel(e) {
  72. //console.log(e)
  73. },
  74. showMulLinkageThreePicker() {
  75. this.$refs.mpvueCityPicker.show();
  76. },
  77. onConfirm(e) {
  78. this.pickerText = e.label;
  79. this.address.province = e.value[0];
  80. this.address.city = e.value[1];
  81. this.address.district = e.value[2];
  82. this.address.siteStr = e.label;
  83. },
  84. formSubmit: function(e) {
  85. var rule = [
  86. {
  87. name: 'nickName',
  88. checkType: 'notnull',
  89. checkRule: '1,4',
  90. errorMsg: '请填写收货人'
  91. },
  92. {
  93. name: 'mobile',
  94. checkType: 'string',
  95. checkRule: '11',
  96. errorMsg: '手机号码11个字符'
  97. },
  98. {
  99. name: 'area',
  100. checkType: 'notnull',
  101. checkRule: '',
  102. errorMsg: '请选择地区'
  103. },
  104. {
  105. name: 'addStr',
  106. checkType: 'notnull',
  107. checkRule: '',
  108. errorMsg: '请填写详细地址'
  109. }
  110. ];
  111. //进行表单检查
  112. var formData = e.detail.value;
  113. var checkRes = graceChecker.check(formData, rule);
  114. if (checkRes) {
  115. uni.request({
  116. url: this.webUrl + 'SaveAddress',
  117. method: 'POST',
  118. data: {
  119. address: JSON.stringify(this.address),
  120. id: this.address.id,
  121. userid: this.user.id
  122. },
  123. header: {
  124. 'content-type': 'application/x-www-form-urlencoded'
  125. },
  126. success: res => {
  127. uni.hideLoading();
  128. uni.showToast({
  129. title: res.data.result.resultInfo,
  130. icon: 'none'
  131. });
  132. if (res.data.result.isSuccess) {
  133. uni.redirectTo({
  134. url: '../address/address?url=' + this.url
  135. });
  136. }
  137. },
  138. fail: () => {},
  139. complete: () => {}
  140. });
  141. } else {
  142. uni.showToast({
  143. title: graceChecker.error,
  144. icon: 'none'
  145. });
  146. }
  147. },
  148. getData() {
  149. uni.request({
  150. url: this.webUrl + 'Address',
  151. method: 'POST',
  152. data: {
  153. id: this.address.id
  154. },
  155. header: {
  156. 'content-type': 'application/x-www-form-urlencoded'
  157. },
  158. success: res => {
  159. if (res.data.result.isSuccess) {
  160. this.showAddress = true;
  161. this.address = res.data.address;
  162. this.cityPickerValueDefault = [res.data.address.province, res.data.address.city, res.data.address.district];
  163. this.pickerText = res.data.address.siteStr;
  164. this.checked = res.data.address.defaultVal;
  165. }
  166. },
  167. fail: () => {},
  168. complete: () => {}
  169. });
  170. },
  171. formReset: function(e) {
  172. console.log('清空数据');
  173. this.chosen = '';
  174. }
  175. },
  176. onLoad(e) {
  177. if (!this.hasLogin) {
  178. uni.navigateTo({
  179. url: '../login/login'
  180. });
  181. } else {
  182. this.url = e.url;
  183. this.user = JSON.parse(this.jyyUser);
  184. if (e.id == undefined) {
  185. this.address.id = 0;
  186. uni.setNavigationBarTitle({
  187. title: '添加收货地址'
  188. });
  189. } else {
  190. this.address.id = e.id;
  191. uni.setNavigationBarTitle({
  192. title: '修改收货地址'
  193. });
  194. this.getData();
  195. }
  196. }
  197. },
  198. onBackPress() {
  199. if (this.$refs.mpvueCityPicker.showPicker) {
  200. this.$refs.mpvueCityPicker.pickerCancel();
  201. return true;
  202. }
  203. },
  204. onUnload() {
  205. if (this.$refs.mpvueCityPicker.showPicker) {
  206. this.$refs.mpvueCityPicker.pickerCancel();
  207. }
  208. }
  209. };
  210. </script>
  211. <style>
  212. </style>