addEditAddress.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  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" @click="empty">{{
  102. i18n.empty
  103. }}</text>
  104. </view>
  105. </u--form>
  106. </view>
  107. <SelectCity :show="show" @close="close" :cityId="cityId" />
  108. <view class="" v-if="addlist.length > 0 && ifadd == 0">
  109. <view class="history">{{ i18n.history }}</view>
  110. <view
  111. class="add"
  112. @click="topadd(item)"
  113. v-for="(item, idx) in addlist"
  114. :key="idx"
  115. >
  116. <view class="">
  117. <text class="name">{{ item.name }}</text>
  118. <text class="phone"
  119. >{{ item.mobile.slice(0, 3) }}****{{ item.mobile.slice(-4) }}</text
  120. >
  121. </view>
  122. <view class="addinfo">{{
  123. item.province_name + item.city_name + item.area_name + item.address
  124. }}</view>
  125. </view>
  126. </view>
  127. <view class="footer">
  128. <button class="save" @click="submit">{{ i18n.preserve }}</button>
  129. </view>
  130. </view>
  131. </template>
  132. <script>
  133. import SelectCity from "./component/selectCity.vue";
  134. export default {
  135. components: {
  136. SelectCity,
  137. },
  138. computed: {
  139. i18n() {
  140. return this.$t("index");
  141. },
  142. },
  143. data() {
  144. return {
  145. ifadd: 0,
  146. show: false,
  147. cityId: [],
  148. cityPid: {},
  149. addressId: "",
  150. model1: {
  151. userInfo: {
  152. name: "",
  153. sex: "",
  154. phone: "",
  155. city: "",
  156. detailed: "",
  157. company: "",
  158. is_default: 0,
  159. country_id: 0,
  160. },
  161. },
  162. rules: {
  163. "userInfo.name": {
  164. type: "string",
  165. required: true,
  166. message: "请填写姓名",
  167. trigger: ["blur", "change"],
  168. },
  169. "userInfo.sex": {
  170. type: "string",
  171. max: 1,
  172. required: true,
  173. message: "请选择男或女",
  174. trigger: ["blur", "change"],
  175. },
  176. },
  177. addlist: [],
  178. };
  179. },
  180. onLoad(options) {
  181. if (options.ifadd) {
  182. this.ifadd = options.ifadd;
  183. } else {
  184. this.ifadd = 0;
  185. }
  186. if (options.id) {
  187. console.log(options.id);
  188. this.addressId = options.id;
  189. this.getAddressDetail(options.id);
  190. }
  191. },
  192. onShow() {
  193. this.getaddlist();
  194. },
  195. methods: {
  196. topadd(item) {
  197. const eventchannel = this.getOpenerEventChannel();
  198. eventchannel.emit("topadd", item);
  199. uni.navigateBack({
  200. delta: 1,
  201. });
  202. },
  203. //地址列表
  204. getaddlist(id) {
  205. uni.$u.http
  206. .get("/api/address", {
  207. params: {
  208. is_page: 0,
  209. is_domestic: 1,
  210. },
  211. })
  212. .then((res) => {
  213. console.log(res);
  214. this.addlist = res;
  215. })
  216. .catch(() => {});
  217. },
  218. //编辑 or 新增
  219. submit() {
  220. const obj = {
  221. mobile: this.model1.userInfo.phone,
  222. name: this.model1.userInfo.name,
  223. is_default: this.model1.userInfo.is_default ? 1 : 0,
  224. company_name: this.model1.userInfo.company,
  225. address: this.model1.userInfo.detailed,
  226. country_id: this.model1.userInfo.country_id,
  227. };
  228. //有id为编辑,没有id为新增
  229. if (this.addressId) {
  230. uni.$u.http
  231. .put(`/api/address/${this.addressId}`, {
  232. ...obj,
  233. ...this.cityPid,
  234. })
  235. .then((res) => {
  236. console.log(res);
  237. const eventchannel = this.getOpenerEventChannel();
  238. eventchannel.emit("topadd", res);
  239. uni.navigateBack({
  240. delta: 1,
  241. });
  242. })
  243. .catch(() => {});
  244. } else {
  245. uni.$u.http
  246. .post(`/api/address`, {
  247. ...obj,
  248. ...this.cityPid,
  249. })
  250. .then((res) => {
  251. // console.log(res);
  252. const eventchannel = this.getOpenerEventChannel();
  253. eventchannel.emit("topadd", res);
  254. uni.navigateBack({
  255. delta: 1,
  256. });
  257. })
  258. .catch(() => {});
  259. }
  260. },
  261. //清空输入
  262. empty() {
  263. this.model1.userInfo = {
  264. name: "",
  265. sex: "",
  266. phone: "",
  267. city: "",
  268. detailed: "",
  269. company: "",
  270. is_default: 0,
  271. country_id: 0,
  272. };
  273. },
  274. //关闭选择城市弹窗
  275. close(obj) {
  276. this.show = false;
  277. if (obj && obj.name) {
  278. this.model1.userInfo.city =
  279. obj.name + obj.children.name + obj.children.children.name;
  280. this.cityId = [obj.id, obj.children.id, obj.children.children.id];
  281. this.cityPid.province_id = obj.id;
  282. this.cityPid.city_id = obj.children.id;
  283. this.cityPid.area_id = obj.children.children.id;
  284. }
  285. },
  286. //回显数据
  287. getAddressDetail(id) {
  288. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  289. this.model1.userInfo.city =
  290. res.province_name + res.city_name + res.area_name;
  291. this.model1.userInfo.name = res.name;
  292. this.model1.userInfo.phone = res.mobile;
  293. this.model1.userInfo.detailed = res.address;
  294. this.model1.userInfo.company = res.company_name;
  295. this.model1.userInfo.is_default = res.is_default;
  296. this.model1.userInfo.country_id = res.country_id;
  297. if (res.province_id && res.city_id && res.area_id) {
  298. this.cityId = [res.province_id, res.city_id, res.area_id];
  299. }
  300. });
  301. },
  302. },
  303. mounted() {
  304. uni.setNavigationBarTitle({
  305. title: this.i18n.newAddress,
  306. });
  307. },
  308. onReady() {
  309. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  310. this.$refs.uForm.setRules(this.rules);
  311. },
  312. };
  313. </script>
  314. <style lang="scss" scoped>
  315. .add {
  316. width: 702rpx;
  317. // height: 160rpx;
  318. background: #ffffff;
  319. border-radius: 16rpx;
  320. padding: 24rpx;
  321. box-sizing: border-box;
  322. margin-bottom: 20rpx;
  323. .addinfo {
  324. font-family: PingFangSC, PingFang SC;
  325. font-weight: 400;
  326. font-size: 24rpx;
  327. color: #222222;
  328. line-height: 34rpx;
  329. text-align: left;
  330. font-style: normal;
  331. }
  332. .name {
  333. font-family: PingFangSC, PingFang SC;
  334. font-weight: 500;
  335. font-size: 28rpx;
  336. color: #333333;
  337. line-height: 40rpx;
  338. text-align: left;
  339. font-style: normal;
  340. }
  341. .phone {
  342. font-family: SFPro, SFPro;
  343. font-weight: 400;
  344. font-size: 24rpx;
  345. color: #333333;
  346. line-height: 28rpx;
  347. text-align: left;
  348. font-style: normal;
  349. margin-left: 16rpx;
  350. }
  351. }
  352. .history {
  353. font-family: PingFangSC, PingFang SC;
  354. font-weight: 500;
  355. font-size: 30rpx;
  356. color: #333333;
  357. line-height: 42rpx;
  358. text-align: left;
  359. font-style: normal;
  360. margin: 28rpx 0 24rpx;
  361. }
  362. .page {
  363. padding: 20rpx 24rpx;
  364. .content {
  365. background-color: #fff;
  366. border-radius: 16rpx;
  367. padding: 0 24rpx;
  368. .title {
  369. display: flex;
  370. justify-content: space-between;
  371. align-items: center;
  372. height: 100rpx;
  373. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  374. .title-left {
  375. font-size: 32rpx;
  376. color: #333;
  377. font-weight: 600;
  378. }
  379. .title-icon {
  380. width: 26rpx;
  381. height: 26rpx;
  382. margin-right: 10rpx;
  383. }
  384. .title-right {
  385. display: flex;
  386. align-items: center;
  387. font-size: 24rpx;
  388. color: rgba(51, 51, 51, 0.6);
  389. }
  390. }
  391. .company {
  392. height: 102rpx;
  393. display: flex;
  394. align-items: center;
  395. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  396. }
  397. }
  398. .item-left {
  399. font-size: 24rpx;
  400. color: #333;
  401. display: flex;
  402. align-items: center;
  403. height: 86rpx;
  404. .address-icon {
  405. width: 26rpx;
  406. height: 26rpx;
  407. margin-right: 10rpx;
  408. }
  409. }
  410. .footer {
  411. background-color: #fff;
  412. position: fixed;
  413. bottom: 0;
  414. height: 146rpx;
  415. width: 750rpx;
  416. left: 0;
  417. padding-top: 20rpx;
  418. .save {
  419. width: 702rpx;
  420. margin: 0 auto;
  421. background-color: #f83224;
  422. color: #fff;
  423. border-radius: 40rpx;
  424. }
  425. }
  426. }
  427. </style>