addEditAddress.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <template>
  2. <view class="page">
  3. <view class="content">
  4. <view class="title">
  5. <text class="title-left">{{ i18n.contacts }}</text>
  6. <view class="title-right">
  7. <image
  8. src="../../static/mine/331.png"
  9. class="title-icon"
  10. mode=""
  11. ></image>
  12. <text>{{ i18n.wxAddress }}</text>
  13. </view>
  14. </view>
  15. <!-- 注意,如果需要兼容微信小程序,最好通过setRules方法设置rules规则 -->
  16. <u--form labelPosition="left" :model="model1" ref="uForm">
  17. <u-form-item
  18. labelWidth="150rpx"
  19. :label="i18n.name"
  20. borderBottom
  21. ref="item1"
  22. >
  23. <u--input
  24. v-model="model1.userInfo.name"
  25. :placeholder="i18n.goods"
  26. border="none"
  27. ></u--input>
  28. </u-form-item>
  29. <u-form-item
  30. labelWidth="150rpx"
  31. :label="i18n.phone"
  32. borderBottom
  33. ref="item1"
  34. >
  35. <u--input
  36. v-model="model1.userInfo.phone"
  37. :placeholder="i18n.pleasePhoneNumber"
  38. border="none"
  39. ></u--input>
  40. </u-form-item>
  41. <u-form-item
  42. labelWidth="150rpx"
  43. :label="i18n.city"
  44. borderBottom
  45. @click="show = true"
  46. ref="item1"
  47. >
  48. <u--input
  49. v-model="model1.userInfo.city"
  50. disabled
  51. disabledColor="#ffffff"
  52. :placeholder="i18n.township"
  53. border="none"
  54. ></u--input>
  55. <u-icon slot="right" name="arrow-right"></u-icon>
  56. </u-form-item>
  57. <u-form-item
  58. labelWidth="150rpx"
  59. :label="i18n.detailed"
  60. borderBottom
  61. ref="item1"
  62. >
  63. <u--input
  64. v-model="model1.userInfo.detailed"
  65. :placeholder="i18n.sect"
  66. border="none"
  67. ></u--input>
  68. </u-form-item>
  69. <view class="company">
  70. <u--input
  71. v-model="model1.userInfo.company"
  72. :placeholder="i18n.company"
  73. border="none"
  74. ></u--input>
  75. </view>
  76. <view
  77. style="
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. "
  82. >
  83. <view
  84. class="item-left"
  85. @click="model1.userInfo.is_default = !model1.userInfo.is_default"
  86. >
  87. <image
  88. src="../../static/mine/327.png"
  89. class="address-icon"
  90. mode=""
  91. v-if="!model1.userInfo.is_default"
  92. ></image>
  93. <image
  94. v-else
  95. src="../../static/mine/330.png"
  96. class="address-icon"
  97. mode=""
  98. ></image>
  99. <text>{{ i18n.initial }}</text>
  100. </view>
  101. <text style="font-size: 24rpx; color: #333">{{ i18n.empty }}</text>
  102. </view>
  103. </u--form>
  104. </view>
  105. <SelectCity :show="show" @close="close" :cityId="cityId" />
  106. <view class="footer">
  107. <button class="save" @click="submit">{{ i18n.preserve }}</button>
  108. </view>
  109. </view>
  110. </template>
  111. <script>
  112. import SelectCity from "./component/selectCity.vue";
  113. export default {
  114. components: {
  115. SelectCity,
  116. },
  117. computed: {
  118. i18n() {
  119. return this.$t("index");
  120. },
  121. },
  122. data() {
  123. return {
  124. show: false,
  125. cityId: [],
  126. cityPid: {},
  127. addressId: "",
  128. model1: {
  129. userInfo: {
  130. name: "",
  131. sex: "",
  132. phone: "",
  133. city: "",
  134. detailed: "",
  135. company: "",
  136. is_default: 0,
  137. country_id: 0,
  138. },
  139. },
  140. rules: {
  141. "userInfo.name": {
  142. type: "string",
  143. required: true,
  144. message: "请填写姓名",
  145. trigger: ["blur", "change"],
  146. },
  147. "userInfo.sex": {
  148. type: "string",
  149. max: 1,
  150. required: true,
  151. message: "请选择男或女",
  152. trigger: ["blur", "change"],
  153. },
  154. },
  155. };
  156. },
  157. onLoad(options) {
  158. if (options.id) {
  159. this.addressId = options.id;
  160. this.getAddressDetail(options.id);
  161. }
  162. },
  163. methods: {
  164. //编辑 or 新增
  165. submit() {
  166. const obj = {
  167. mobile: this.model1.userInfo.phone,
  168. name: this.model1.userInfo.name,
  169. is_default: this.model1.userInfo.is_default ? 1 : 0,
  170. company_name: this.model1.userInfo.company,
  171. address: this.model1.userInfo.detailed,
  172. country_id: this.model1.userInfo.country_id,
  173. };
  174. //有id为编辑,没有id为新增
  175. if (this.addressId) {
  176. uni.$u.http
  177. .put(`/api/address/${this.addressId}`, { ...obj, ...this.cityPid })
  178. .then((res) => {
  179. console.log(res);
  180. uni.navigateBack({
  181. delta: 1,
  182. });
  183. })
  184. .catch(() => {});
  185. } else {
  186. uni.$u.http
  187. .post(`/api/address`, { ...obj, ...this.cityPid })
  188. .then((res) => {
  189. console.log(res);
  190. uni.navigateBack({
  191. delta: 1,
  192. });
  193. })
  194. .catch(() => {});
  195. }
  196. },
  197. //关闭选择城市弹窗
  198. close(obj) {
  199. this.show = false;
  200. if (obj && obj.name) {
  201. this.model1.userInfo.city =
  202. obj.name + obj.children.name + obj.children.children.name;
  203. this.cityId = [obj.id, obj.children.id, obj.children.children.id];
  204. this.cityPid.province_id = obj.id;
  205. this.cityPid.city_id = obj.children.id;
  206. this.cityPid.area_id = obj.children.children.id;
  207. }
  208. },
  209. //回显数据
  210. getAddressDetail(id) {
  211. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  212. this.model1.userInfo.city =
  213. res.province_name + res.city_name + res.area_name;
  214. this.model1.userInfo.name = res.name;
  215. this.model1.userInfo.phone = res.mobile;
  216. this.model1.userInfo.detailed = res.address;
  217. this.model1.userInfo.company = res.company_name;
  218. this.model1.userInfo.is_default = res.is_default;
  219. this.model1.userInfo.country_id = res.country_id;
  220. if (res.province_id && res.city_id && res.area_id) {
  221. this.cityId = [res.province_id, res.city_id, res.area_id];
  222. }
  223. });
  224. },
  225. },
  226. mounted() {
  227. uni.setNavigationBarTitle({
  228. title: this.i18n.newAddress,
  229. });
  230. },
  231. onReady() {
  232. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  233. this.$refs.uForm.setRules(this.rules);
  234. },
  235. };
  236. </script>
  237. <style lang="scss" scoped>
  238. .page {
  239. padding: 20rpx 24rpx;
  240. .content {
  241. background-color: #fff;
  242. border-radius: 16rpx;
  243. padding: 0 24rpx;
  244. .title {
  245. display: flex;
  246. justify-content: space-between;
  247. align-items: center;
  248. height: 100rpx;
  249. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  250. .title-left {
  251. font-size: 32rpx;
  252. color: #333;
  253. font-weight: 600;
  254. }
  255. .title-icon {
  256. width: 26rpx;
  257. height: 26rpx;
  258. margin-right: 10rpx;
  259. }
  260. .title-right {
  261. display: flex;
  262. align-items: center;
  263. font-size: 24rpx;
  264. color: rgba(51, 51, 51, 0.6);
  265. }
  266. }
  267. .company {
  268. height: 102rpx;
  269. display: flex;
  270. align-items: center;
  271. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  272. }
  273. }
  274. .item-left {
  275. font-size: 24rpx;
  276. color: #333;
  277. display: flex;
  278. align-items: center;
  279. height: 86rpx;
  280. .address-icon {
  281. width: 26rpx;
  282. height: 26rpx;
  283. margin-right: 10rpx;
  284. }
  285. }
  286. .footer {
  287. background-color: #fff;
  288. position: fixed;
  289. bottom: 0;
  290. height: 146rpx;
  291. width: 750rpx;
  292. left: 0;
  293. padding-top: 20rpx;
  294. .save {
  295. width: 702rpx;
  296. margin: 0 auto;
  297. background-color: #f83224;
  298. color: #fff;
  299. border-radius: 40rpx;
  300. }
  301. }
  302. }
  303. </style>