edit.vue 8.1 KB

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