addEditAddress.vue 11 KB

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