cityaddressbook.vue 7.2 KB

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