edit.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <!-- 收货地址的新增/编辑 -->
  2. <template>
  3. <s-layout :title="state.model.id ? '编辑地址' : '新增地址'">
  4. <uni-forms ref="addressFormRef" v-model="state.model" :rules="rules" validateTrigger="bind"
  5. labelWidth="160" labelAlign="left" border :labelStyle="{ fontWeight: 'bold' }">
  6. <view class="bg-white form-box ss-p-x-30">
  7. <uni-forms-item name="name" label="收货人" class="form-item">
  8. <uni-easyinput v-model="state.model.name" placeholder="请填写收货人姓名" :inputBorder="false"
  9. placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal" />
  10. </uni-forms-item>
  11. <uni-forms-item name="mobile" label="手机号" class="form-item">
  12. <uni-easyinput v-model="state.model.mobile" type="number" placeholder="请输入手机号" :inputBorder="false"
  13. placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal">
  14. </uni-easyinput>
  15. </uni-forms-item>
  16. <uni-forms-item name="areaName" label="省市区" @tap="state.showRegion = true" class="form-item">
  17. <uni-easyinput v-model="state.model.areaName" disabled :inputBorder="false"
  18. :styles="{ disableColor: '#fff', color: '#333' }"
  19. placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal"
  20. placeholder="请选择省市区">
  21. <template v-slot:right>
  22. <uni-icons type="right" />
  23. </template>
  24. </uni-easyinput>
  25. </uni-forms-item>
  26. <uni-forms-item name="detailAddress" label="详细地址" :formItemStyle="{ alignItems: 'flex-start' }"
  27. :labelStyle="{ lineHeight: '5em' }" class="textarea-item">
  28. <uni-easyinput :inputBorder="false" type="textarea" v-model="state.model.detailAddress"
  29. placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal"
  30. placeholder="请输入详细地址" clearable />
  31. </uni-forms-item>
  32. </view>
  33. <view class="ss-m-y-20 bg-white ss-p-x-30 ss-flex ss-row-between ss-col-center default-box">
  34. <view class="default-box-title"> 设为默认地址 </view>
  35. <su-switch style="transform: scale(0.8)" v-model="state.model.defaultStatus" />
  36. </view>
  37. </uni-forms>
  38. <su-fixed bottom :opacity="false" bg="" placeholder :noFixed="false" :index="10">
  39. <view class="footer-box ss-flex-col ss-row-between ss-p-20">
  40. <view class="ss-m-b-20">
  41. <button class="ss-reset-button save-btn ui-Shadow-Main" @tap="onSave">保存</button>
  42. </view>
  43. <button v-if="state.model.id" class="ss-reset-button cancel-btn" @tap="onDelete">
  44. 删除
  45. </button>
  46. </view>
  47. </su-fixed>
  48. <!-- 省市区弹窗 -->
  49. <su-region-picker :show="state.showRegion" @cancel="state.showRegion = false" @confirm="onRegionConfirm" />
  50. </s-layout>
  51. </template>
  52. <script setup>
  53. import { ref, reactive, unref } from 'vue';
  54. import sheep from '@/sheep';
  55. import { onLoad } from '@dcloudio/uni-app';
  56. import _ from 'lodash';
  57. import { mobile } from '@/sheep/validate/form';
  58. import AreaApi from '@/sheep/api/system/area';
  59. import AddressApi from '@/sheep/api/member/address';
  60. const addressFormRef = ref(null);
  61. const state = reactive({
  62. showRegion: false,
  63. model: {
  64. name: '',
  65. mobile: '',
  66. detailAddress: '',
  67. defaultStatus: false,
  68. areaName: '',
  69. },
  70. rules: {},
  71. });
  72. const rules = {
  73. name: {
  74. rules: [
  75. {
  76. required: true,
  77. errorMessage: '请输入收货人姓名',
  78. },
  79. ],
  80. },
  81. mobile,
  82. detailAddress: {
  83. rules: [{
  84. required: true,
  85. errorMessage: '请输入详细地址',
  86. }]
  87. },
  88. areaName: {
  89. rules: [{
  90. required: true,
  91. errorMessage: '请选择您的位置'
  92. }]
  93. },
  94. };
  95. // 确认选择地区
  96. const onRegionConfirm = (e) => {
  97. state.model.areaName = `${e.province_name} ${e.city_name} ${e.district_name}`
  98. state.model.areaId = e.district_id;
  99. state.showRegion = false;
  100. };
  101. // 获得地区数据
  102. const getAreaData = () => {
  103. if (_.isEmpty(uni.getStorageSync('areaData'))) {
  104. AreaApi.getAreaTree().then((res) => {
  105. if (res.code === 0) {
  106. uni.setStorageSync('areaData', res.data);
  107. }
  108. });
  109. }
  110. };
  111. // 保存收货地址
  112. const onSave = async () => {
  113. // 参数校验
  114. const validate = await unref(addressFormRef)
  115. .validate()
  116. .catch((error) => {
  117. console.log('error: ', error);
  118. });
  119. if (!validate) {
  120. return;
  121. }
  122. // 提交请求
  123. const formData = {
  124. ...state.model
  125. }
  126. const {code } = state.model.id > 0 ? await AddressApi.updateAddress(formData)
  127. : await AddressApi.createAddress(formData);
  128. if (code === 0) {
  129. sheep.$router.back();
  130. }
  131. };
  132. // 删除收货地址
  133. const onDelete = () => {
  134. uni.showModal({
  135. title: '提示',
  136. content: '确认删除此收货地址吗?',
  137. success: async function(res) {
  138. if (!res.confirm) {
  139. return;
  140. }
  141. const { code } = await AddressApi.deleteAddress(state.model.id);
  142. if (code === 0) {
  143. sheep.$router.back();
  144. }
  145. },
  146. });
  147. };
  148. onLoad(async (options) => {
  149. // 获得地区数据
  150. getAreaData();
  151. // 情况一:基于 id 获得收件地址
  152. if (options.id) {
  153. let { code, data} = await AddressApi.getAddress(options.id);
  154. if (code !== 0) {
  155. return;
  156. }
  157. state.model = data;
  158. }
  159. // 情况二:微信导入 TODO 芋艿:待接入
  160. if (options.data) {
  161. let data = JSON.parse(options.data);
  162. const areaData = uni.getStorageSync('areaData');
  163. let provinceArr = areaData.filter(item => item.name == data.province_name);
  164. data.province_id = provinceArr[0].id;
  165. let provinceArr2 = provinceArr[0].children.filter(item => item.name == data.city_name);
  166. data.city_id = provinceArr2[0].id;
  167. let provinceArr3 = provinceArr2[0].children.filter(item => item.name == data.district_name);
  168. data.district_id = provinceArr3[0].id;
  169. state.model = {
  170. ...state.model,
  171. ...data,
  172. };
  173. }
  174. });
  175. </script>
  176. <style lang="scss" scoped>
  177. :deep() {
  178. .uni-forms-item__label .label-text {
  179. font-size: 28rpx !important;
  180. color: #333333 !important;
  181. line-height: normal !important;
  182. }
  183. .uni-easyinput__content-input {
  184. font-size: 28rpx !important;
  185. color: #333333 !important;
  186. line-height: normal !important;
  187. padding-left: 0 !important;
  188. }
  189. .uni-easyinput__content-textarea {
  190. font-size: 28rpx !important;
  191. color: #333333 !important;
  192. line-height: normal !important;
  193. margin-top: 8rpx !important;
  194. }
  195. .uni-icons {
  196. font-size: 40rpx !important;
  197. }
  198. .is-textarea-icon {
  199. margin-top: 22rpx;
  200. }
  201. .is-disabled {
  202. color: #333333;
  203. }
  204. }
  205. .default-box {
  206. width: 100%;
  207. box-sizing: border-box;
  208. height: 100rpx;
  209. .default-box-title {
  210. font-size: 28rpx;
  211. color: #333333;
  212. line-height: normal;
  213. }
  214. }
  215. .footer-box {
  216. .save-btn {
  217. width: 710rpx;
  218. height: 80rpx;
  219. border-radius: 40rpx;
  220. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  221. color: $white;
  222. }
  223. .cancel-btn {
  224. width: 710rpx;
  225. height: 80rpx;
  226. border-radius: 40rpx;
  227. background: var(--ui-BG);
  228. }
  229. }
  230. </style>