addressbook.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. <template>
  2. <div class="content">
  3. <!-- table切换 -->
  4. <div class="tab">
  5. <div>
  6. <p @click="tab(1)" :class="[index == 1 ? 'active' : '']">寄件人</p>
  7. <p @click="tab(2)" :class="[index == 2 ? 'active' : '']" class="">收件人</p>
  8. </div>
  9. </div>
  10. <!-- 寄件人 -->
  11. <div v-if="index == 1">
  12. <div class="jjinfo" v-for="item in addressList">
  13. <div>
  14. <div class="jj">
  15. <div class="jjaddress" @click="adressLink(item)">
  16. <p>寄</p>
  17. <div>
  18. <p>{{ item.name }} {{ item.phone }}</p>
  19. <p>{{ item.provinceAndCity }} {{ item.address }}</p>
  20. </div>
  21. </div>
  22. <div class="cz">
  23. <p @click="del(item.id)">
  24. <img src="../assets/images/del.png" alt="">
  25. <span>删除</span>
  26. </p>
  27. <p>
  28. <img src="../assets/images/whrite.png" alt="">
  29. <span>编辑</span>
  30. </p>
  31. <p>
  32. <img src="../assets/images/copy.png" alt="">
  33. <span>复制</span>
  34. </p>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. <!-- 寄件 -->
  40. <div class="btn-jj">
  41. <van-button @click="link(1)" type="info" color="#00c4b8">添加寄件人</van-button>
  42. </div>
  43. </div>
  44. <!-- 收件人 -->
  45. <div v-if="index == 2">
  46. <div class="jjinfo" v-for="item in addressList">
  47. <div>
  48. <div class="jj">
  49. <div class="jjaddress" @click="adressLinkSj(item)">
  50. <p style="background: #fa9c22;">收</p>
  51. <div>
  52. <p>{{ item.name }} {{ item.phone }}</p>
  53. <p>{{ item.provinceAndCity }} {{ item.address }}</p>
  54. </div>
  55. </div>
  56. <div class="cz">
  57. <p @click="del(item.id)">
  58. <img src="../assets/images/del.png" alt="">
  59. <span>删除</span>
  60. </p>
  61. <p>
  62. <img src="../assets/images/whrite.png" alt="">
  63. <span>编辑</span>
  64. </p>
  65. <p>
  66. <img src="../assets/images/copy.png" alt="">
  67. <span>复制</span>
  68. </p>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. <!-- 寄件 -->
  74. <div class="btn-jj">
  75. <van-button type="info" @click="link(2)" color="#fa9c22">添加收件人</van-button>
  76. </div>
  77. </div>
  78. </div>
  79. </template>
  80. <script>
  81. import { Toast, Dialog } from 'vant'
  82. export default {
  83. data() {
  84. return {
  85. titlename: "地址簿",
  86. index: 1,
  87. openid: '',
  88. addressList: []
  89. }
  90. },
  91. created: function () {
  92. this.openid = this.$store.state.openId
  93. //获取参数
  94. this.index = this.$route.query.active
  95. this.getData();
  96. },
  97. methods: {
  98. tab(obj) {
  99. this.index = obj
  100. this.getData()
  101. },
  102. link(obj) {
  103. this.$router.push({ path: "/Newaddress", query: { type: obj } })
  104. },
  105. getData() {
  106. Toast.loading({
  107. message: '加载中...',
  108. forbidClick: true,
  109. duration: 0
  110. });
  111. this.$http.post(this.$store.state.host + "/personal/getAddressList.do", { user_id: this.openid, type: this.index }, { emulateJSON: true })
  112. .then(res => {
  113. //发送成功
  114. if (res.body.msg == 'success') {
  115. this.addressList = res.body.addressList
  116. }
  117. Toast.clear()
  118. }, res => {
  119. //发送失败
  120. Toast("网络错误!")
  121. })
  122. Toast.clear()
  123. },
  124. del(id) {
  125. Dialog.confirm({ title: '', message: '确定删除吗', })
  126. .then(() => {
  127. Toast.loading({
  128. message: '删除中...',
  129. forbidClick: true,
  130. duration: 0
  131. });
  132. this.$http.post(this.$store.state.host + "/personal/deleteAddressInfoById.do", { id: id }, { emulateJSON: true })
  133. .then(res => {
  134. //发送成功
  135. if (res.body.msg == 'success') {
  136. this.getData()
  137. } else {
  138. Toast("删除失败!")
  139. }
  140. Toast.clear()
  141. }, res => {
  142. //发送失败
  143. Toast("网络错误!")
  144. })
  145. Toast.clear()
  146. })
  147. .catch(() => {
  148. // on cancel
  149. })
  150. },
  151. adressLink(item) {
  152. let jjInfo = {}
  153. jjInfo.jjname = item.name + ' ' + item.phone
  154. jjInfo.jjadd = item.provinceAndCity + ' ' + item.address
  155. this.$store.commit("getJjInfo", jjInfo)
  156. this.$router.push({ path: "/Express" })
  157. },
  158. adressLinkSj(item) {
  159. let sjInfo = {}
  160. sjInfo.jjname = item.name + ' ' + item.phone
  161. sjInfo.jjadd = item.provinceAndCity + ' ' + item.address
  162. this.$store.commit("getSjInfo", sjInfo)
  163. this.$router.push({ path: "/Express" })
  164. }
  165. },
  166. computed: {
  167. }
  168. }
  169. </script>
  170. <style scoped lang="less">
  171. .content {
  172. .tab {
  173. font-size: .36rem;
  174. color: #00c4b8;
  175. padding: .33rem;
  176. div {
  177. display: flex;
  178. border: .01rem solid #00c4b8;
  179. text-align: center;
  180. border-radius: .05rem;
  181. p {
  182. flex: 1;
  183. padding: .1rem 0rem;
  184. }
  185. p.active {
  186. background: #00c4b8;
  187. color: white;
  188. }
  189. }
  190. }
  191. .jjinfo {
  192. font-size: .36rem;
  193. color: #999999;
  194. padding: .0rem .33rem 0.33rem;
  195. >div {
  196. background: white;
  197. border-radius: .05rem;
  198. padding: .1rem .3rem;
  199. .jj {
  200. display: flex;
  201. justify-content: space-between;
  202. padding: .2rem 0rem;
  203. flex-wrap: wrap;
  204. .jjaddress {
  205. display: flex;
  206. padding: .1rem 0rem .2rem;
  207. >p {
  208. font-size: .24rem;
  209. font-weight: bold;
  210. display: inline-block;
  211. width: .5rem;
  212. height: .5rem;
  213. background: #00c4b8;
  214. text-align: center;
  215. line-height: .5rem;
  216. color: white;
  217. border-radius: 50%;
  218. margin-right: .3rem;
  219. }
  220. div {
  221. //font-weight: bold;
  222. max-width: 4.2rem;
  223. p:nth-of-type(1) {
  224. font-size: .3rem;
  225. color: #333;
  226. margin-bottom: .2rem;
  227. }
  228. p:nth-of-type(2) {
  229. font-size: .3rem;
  230. }
  231. }
  232. }
  233. .cz {
  234. border-top: .01rem solid #ededed;
  235. width: 100%;
  236. display: flex;
  237. flex-direction: row-reverse;
  238. font-size: .24rem;
  239. color: #999999;
  240. padding-top: .2rem;
  241. p {
  242. margin-left: .2rem;
  243. img {
  244. width: .22rem;
  245. height: .24rem;
  246. }
  247. span {
  248. position: relative;
  249. top: -.01rem;
  250. }
  251. }
  252. }
  253. }
  254. }
  255. }
  256. .btn-jj {
  257. padding: .33rem;
  258. button {
  259. width: 100%;
  260. }
  261. }
  262. }
  263. </style>