editaddress.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <div class="content">
  3. <div class="form">
  4. <van-cell-group inset>
  5. <van-field v-model="message" rows="1" label="识别" type="textarea"
  6. placeholder="请粘贴,点击识别(姓名、手机号、省、市、区、详细地址间请输入空格)" />
  7. </van-cell-group>
  8. <div style="background-color: white;width: 100%;height: .8rem;padding-top: .2rem;">
  9. <!-- <van-uploader :after-read="afterRead" style="width: 18%;height: .6rem;float: left;">
  10. <van-button color="#00c4b8" block type="info" size="small">图片识别</van-button>
  11. </van-uploader> -->
  12. <van-button @click="shibie()" style="width: 15%;height: .6rem;float: right; margin-right: .2rem;"
  13. color="#00c4b8" block type="info" size="small">识别</van-button>
  14. </div>
  15. </div>
  16. <div class="form">
  17. <van-form @submit="onSubmit">
  18. <van-field v-model="name" name="姓名" label="姓名" placeholder="请输入姓名" :rules="[{ required: false }]" />
  19. <van-field v-model="phone" maxlength="11" type="number" name="手机" label="手机" placeholder="请输入手机"
  20. :rules="[{ required: false }]" />
  21. <!-- <van-field readonly clickable name="area" :value="city" label="省市区" placeholder="请选择省市区"
  22. @click="areashow = true" :rules="[{ required: false }]" /> -->
  23. <van-field readonly clickable name="area" :value="province" label="省" placeholder="自动识别"
  24. @click="areashow = true" :rules="[{ required: false }]" />
  25. <van-field readonly clickable name="area" :value="city" label="市" placeholder="自动识别"
  26. @click="areashow = true" :rules="[{ required: false }]" />
  27. <van-field readonly clickable name="area" :value="district" label="区" placeholder="自动识别"
  28. @click="areashow = true" :rules="[{ required: false }]" />
  29. <van-field readonly clickable name="area" :value="town" label="镇" placeholder="自动识别"
  30. @click="areashow = true" :rules="[{ required: false }]" />
  31. <van-field v-model="address" name="详细地址" maxlength="50" label="详细地址" placeholder="请输入详细地址"
  32. :rules="[{ required: false }]" />
  33. <div style="margin-top: 16px;">
  34. <van-button color="#00c4b8" block type="info" native-type="submit"
  35. :disabled="disabled">确定</van-button>
  36. </div>
  37. </van-form>
  38. </div>
  39. </div>
  40. </template>
  41. <script>
  42. import areaList from "@/script/areas.js"
  43. import { Toast } from 'vant'
  44. import { findUserAddressInfoById, editUserAddressInfoById, spiltAddress } from '../api/addressBoook'
  45. export default {
  46. data() {
  47. return {
  48. titlename: "编辑地址",
  49. name: "",
  50. phone: "",
  51. telPhone: "",
  52. province: "",//省
  53. city: "",//市
  54. district: '',//区
  55. town: '',//镇
  56. address: "",//详细地址
  57. areashow: false,
  58. id: '',
  59. disabled: false,
  60. message: '',
  61. }
  62. },
  63. created: function () {
  64. this.isLogin();
  65. this.id = this.$route.query.id
  66. this.getData()
  67. },
  68. methods: {
  69. // 获取信息
  70. async getData() {
  71. Toast.loading({
  72. message: '加载中...',
  73. forbidClick: true,
  74. duration: 0
  75. });
  76. const res = await findUserAddressInfoById({ id: this.id })
  77. if (res.msg == 'success') {
  78. this.name = res.userAddressInfoById.addresseeName
  79. this.phone = res.userAddressInfoById.addresseePhone
  80. this.province = res.userAddressInfoById.addresseeProvince
  81. this.city = res.userAddressInfoById.addresseeCity
  82. this.district = res.userAddressInfoById.addresseeCounty
  83. this.town = res.userAddressInfoById.addresseeTown
  84. this.address = res.userAddressInfoById.addresseeAddrInfo
  85. } else {
  86. Toast("网络错误!")
  87. }
  88. Toast.clear()
  89. },
  90. // 图片识别
  91. afterRead(file) {
  92. // console.log(encodeURIComponent(file.content))
  93. // return;
  94. this.$http.post(this.$store.state.host + "/solic/getAddressFromText", {
  95. type: 3,
  96. textStr: encodeURIComponent(file.content)
  97. }, {
  98. emulateJSON: true
  99. })
  100. .then(res => {
  101. //发送成功
  102. res.body.words_result.forEach((v, i) => {
  103. this.message += v.words + " "
  104. })
  105. }, res => {
  106. //发送失败
  107. Toast('识别错误')
  108. })
  109. //console.log(file)
  110. },
  111. // 识别
  112. async shibie() {
  113. if (this.message == '') {
  114. Toast('请粘贴地址')
  115. return
  116. }
  117. const res = await spiltAddress({ address: this.message })
  118. if (res.prov) {
  119. this.province = res.prov
  120. this.city = res.city
  121. this.district = res.district
  122. this.town = res.town
  123. this.address = res.addr_info
  124. } else {
  125. Toast('请求失败')
  126. }
  127. console.log(res, 'res')
  128. },
  129. // 提交
  130. async onSubmit() {
  131. if (this.name == '' || this.name == undefined) {
  132. Toast('请输入姓名')
  133. return
  134. }
  135. if (this.phone == '' || this.phone == undefined) {
  136. Toast('请填写手机号')
  137. return
  138. }
  139. if (this.phone != '' && this.phone != undefined) {
  140. let regPhone = new RegExp(this.$store.state.regPhone)
  141. if (!regPhone.test(this.phone)) {
  142. Toast('手机号格式不正确')
  143. return
  144. }
  145. }
  146. if (this.address == '' || this.address == undefined) {
  147. Toast('请输入详细地址')
  148. return
  149. }
  150. this.disabled = true;
  151. let parmas = {
  152. addresseeName: this.name,
  153. addresseePhone: this.phone,
  154. id: this.id,
  155. addresseeProvince: this.province,
  156. addresseeCity: this.city,
  157. addresseeCounty: this.district,
  158. addresseeTown: this.town,
  159. addresseeAddrInfo: this.address,
  160. addresseeAddress: this.message,
  161. }
  162. const res = await editUserAddressInfoById({ ...parmas })
  163. if (res.msg == 'success') {
  164. Toast("保存成功");
  165. this.$router.push('/Myaddressbook')
  166. } else {
  167. Toast('保存失败')
  168. }
  169. this.disabled = false;
  170. },
  171. onConfirm3(e) {//确定
  172. this.city = e[0].name + ' ' + e[1].name + ' ' + e[2].name
  173. this.areashow = false
  174. console.log(e)
  175. },
  176. },
  177. computed: {
  178. areaList() {
  179. return areaList
  180. }
  181. }
  182. }
  183. </script>
  184. <style scoped lang="less">
  185. .content {
  186. .form {
  187. padding: .3rem;
  188. /deep/.van-field__value {
  189. input {
  190. text-align: right;
  191. }
  192. }
  193. }
  194. }
  195. </style>