renzheng.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <template>
  2. <view class="userinfo">
  3. <view class="user-head u-flex u-row-between">
  4. <text>头像</text>
  5. <image :src="userinfo.avatar" mode="aspectFill" @click="uploadimg"></image>
  6. </view>
  7. <view class="user-item" @click="tochangename">
  8. <view class="item-name">
  9. 真实姓名
  10. </view>
  11. <view class="item-input u-flex">
  12. <input type="text" placeholder="请输入真实姓名" :disabled="true" v-model="userinfo.name">
  13. </view>
  14. </view>
  15. <view class="user-item" @click="">
  16. <view class="item-name">
  17. 学历
  18. </view>
  19. <view class="item-input u-flex">
  20. <input type="text" placeholder="请选择学历" :disabled="true" v-model="userinfo.sex_text">
  21. <u-icon name="arrow-right"></u-icon>
  22. </view>
  23. </view>
  24. <view class="user-item" @click="changehangye">
  25. <view class="item-name">
  26. 毕业院校
  27. </view>
  28. <view class="item-input u-flex">
  29. <input type="text" placeholder="请选择毕业院校" :disabled="true" v-model="userinfo.industry_name">
  30. <u-icon name="arrow-right"></u-icon>
  31. </view>
  32. </view>
  33. <view class="user-item" @click="">
  34. <view class="item-name">
  35. 毕业类型
  36. </view>
  37. <view class="item-input u-flex">
  38. <input type="text" placeholder="请选择毕业类型" :disabled="true" v-model="userinfo.experience_name">
  39. <u-icon name="arrow-right"></u-icon>
  40. </view>
  41. </view>
  42. <view class="user-item" @click="">
  43. <view class="item-name">
  44. 毕业年份
  45. </view>
  46. <view class="item-input u-flex">
  47. <input type="text" placeholder="请选择毕业年份" :disabled="true" :value="userinfo.work_status == 'soho' ? 'soho猎头' : '就职猎头'">
  48. <u-icon name="arrow-right"></u-icon>
  49. </view>
  50. </view>
  51. <view style="height: 150rpx;"></view>
  52. <view class="safe-area-inset-bottom"></view>
  53. <view class="user-down">
  54. <view class="down-btn u-flex">
  55. <text @click="save">立即认证</text>
  56. </view>
  57. <view class="safe-area-inset-bottom"></view>
  58. </view>
  59. <!-- <u-select v-model="sexshow" :list="sexlist" @confirm="changsex"></u-select>
  60. <u-select v-model="cityshow" :list="citylist" mode="mutil-column-auto" value-name="id" label-name="name" child-name="childlist" @confirm="changecity"></u-select>
  61. <u-select v-model="jingyanshow" :list="jingyanlist" value-name="id" label-name="name" @confirm="changejingyan"></u-select>
  62. <u-select v-model="workshow" :list="worklist" @confirm="changework"></u-select> -->
  63. </view>
  64. </template>
  65. <script>
  66. import{profile} from "@/units/inquire.js"
  67. import fuxing from "../common/fuxing.js"
  68. export default {
  69. data() {
  70. return {
  71. userinfo: {},
  72. sexlist: [],
  73. citylist: [],
  74. qiye: '',
  75. jingyanlist: [],
  76. worklist: [{
  77. label: 'soho猎头',
  78. value: 'soho'
  79. }, {
  80. label: '就职猎头',
  81. value: 'job'
  82. }]
  83. }
  84. },
  85. onLoad() {
  86. this.getuser()
  87. this.getconfig()
  88. },
  89. methods: {
  90. changework(e) {
  91. this.userinfo.work_status = e[0].value
  92. },
  93. changejingyan(e) {
  94. this.userinfo.experience_id = e[0].value
  95. this.userinfo.experience_name = e[0].label
  96. },
  97. save() {
  98. if (!this.userinfo.avatar) {
  99. this.$u.toast("请上传头像")
  100. return
  101. }
  102. if (!this.userinfo.name) {
  103. this.$u.toast("请输入真实名字")
  104. return
  105. }
  106. if (!this.userinfo.sex) {
  107. this.$u.toast("请选择性别")
  108. return
  109. }
  110. if (!this.userinfo.industry_name) {
  111. this.$u.toast("请选择猎头行业")
  112. return
  113. }
  114. if (!this.userinfo.experience_name) {
  115. this.$u.toast("请选择经验")
  116. return
  117. }
  118. if (!this.userinfo.work_status) {
  119. this.$u.toast("请选择就职状态")
  120. return
  121. }
  122. if (!this.userinfo.work_address) {
  123. this.$u.toast("请选择工作地址")
  124. return
  125. }
  126. uni.showLoading({
  127. mask: true,
  128. title: "请稍后"
  129. })
  130. profile({
  131. avatar: this.userinfo.avatar,
  132. name: this.userinfo.name,
  133. industry_first: this.userinfo.industry_first,
  134. industry_id: this.userinfo.industry_id,
  135. experience_id: this.userinfo.experience_id,
  136. work_status: this.userinfo.work_status,
  137. work_address: this.userinfo.work_address,
  138. realname: this.userinfo.virtual_name,
  139. }).then(res => {
  140. if (res.code == 1) {
  141. this.$u.toast("修改成功")
  142. setTimeout(() => {
  143. uni.navigateBack()
  144. }, 800)
  145. }else{
  146. this.$u.toast(res.msg)
  147. }
  148. })
  149. },
  150. changecity(e) {
  151. this.userinfo.work_address = `${e[0].label} ${e[1].label}`
  152. },
  153. changsex(e) {
  154. this.userinfo.sex_text = e[0].label
  155. this.userinfo.sex = e[0].value
  156. if (this.userinfo.name != this.userinfo.virtual_name && this.userinfo.virtual_name) {
  157. if (this.userinfo.name.length == 3) {
  158. this.userinfo.name = this.userinfo.virtual_name[0] + (this.userinfo.sex == 'female' ? '女士' : '先生')
  159. } else {
  160. this.userinfo.name = this.userinfo.virtual_name[0] + this.userinfo.virtual_name[1] + (this.userinfo.sex == 'female' ? '女士' : '先生')
  161. }
  162. }
  163. },
  164. getconfig() {
  165. this.$u.post('/api/commons/get_sex').then(res => {
  166. for (var key in res.data) {
  167. this.sexlist.push({
  168. label: res.data[key],
  169. value: key
  170. })
  171. }
  172. })
  173. this.$u.post('/api/commons/get_area_city').then(res => {
  174. this.citylist = res.data
  175. })
  176. this.$u.post('/api/commons/get_experience').then(res => {
  177. this.jingyanlist = res.data
  178. })
  179. },
  180. uploadimg() {
  181. uni.chooseImage({
  182. count: 1,
  183. success: (img) => {
  184. uni.showLoading({
  185. mask: true,
  186. title: "请稍后"
  187. })
  188. uni.uploadFile({
  189. url: this.$url + '/api/common/upload',
  190. filePath: img.tempFilePaths[0],
  191. name: 'file',
  192. success: (res) => {
  193. uni.hideLoading()
  194. if (JSON.parse(res.data).code == 1) {
  195. this.userinfo.avatar = JSON.parse(res.data).data.fullurl
  196. } else {
  197. this.$u.toast(JSON.parse(res.data).msg)
  198. }
  199. },
  200. fail: (e) => {
  201. console.log(e);
  202. }
  203. })
  204. }
  205. })
  206. },
  207. getuser() {
  208. this.$u.post('/api/headhunter.user/index').then(res => {
  209. this.userinfo = res.data.group_info
  210. this.userinfo.sex_text = {
  211. 'male': '男',
  212. 'female': '女',
  213. 'secret': '保密'
  214. } [this.userinfo.sex]
  215. })
  216. },
  217. tochangename() {
  218. uni.navigateTo({
  219. url: "/pagesD/change-name?name=" + JSON.stringify({ name: this.userinfo.name, virtual_name: this.userinfo.realname }),
  220. events: {
  221. getname: (res) => {
  222. if (res.name) {
  223. this.userinfo.name = res.name
  224. } else {
  225. var name = ''
  226. fuxing.forEach(val => {
  227. if (res.virtual_name.indexOf(val) > -1) {
  228. name = res.virtual_name[0] + res.virtual_name[1] + (this.userinfo.sex == 'female' ? '女士' : '先生')
  229. }
  230. })
  231. if (!name) {
  232. name = res.virtual_name[0] + (this.userinfo.sex == 'female' ? '女士' : '先生')
  233. }
  234. this.userinfo.name = name
  235. }
  236. this.userinfo.realname = res.virtual_name
  237. }
  238. }
  239. })
  240. }
  241. }
  242. }
  243. </script>
  244. <style lang="scss">
  245. .userinfo {
  246. padding: 0 32rpx;
  247. .user-down {
  248. position: fixed;
  249. bottom: 0;
  250. left: 0;
  251. z-index: 99;
  252. width: 750rpx;
  253. background-color: #fff;
  254. .down-btn {
  255. padding: 8rpx 32rpx;
  256. text {
  257. line-height: 88rpx;
  258. background: #0C66C2;
  259. border-radius: 12rpx;
  260. width: 100%;
  261. font-size: 32rpx;
  262. font-family: PingFangSC-Medium, PingFang SC;
  263. font-weight: 500;
  264. color: #FFFFFF;
  265. text-align: center;
  266. }
  267. }
  268. }
  269. .user-item {
  270. padding-top: 30rpx;
  271. border-bottom: 2rpx solid #F0F0F0;
  272. .item-input {
  273. height: 100rpx;
  274. input {
  275. height: 100rpx;
  276. flex: 1;
  277. }
  278. }
  279. .item-name {
  280. font-size: 26rpx;
  281. font-family: PingFangSC-Regular, PingFang SC;
  282. font-weight: 400;
  283. color: #888888;
  284. }
  285. }
  286. .user-head {
  287. padding: 32rpx 0;
  288. border-bottom: 2rpx solid #F0F0F0;
  289. text {
  290. font-size: 32rpx;
  291. font-family: PingFangSC-Regular, PingFang SC;
  292. font-weight: 400;
  293. color: #222222;
  294. }
  295. image {
  296. border-radius: 100%;
  297. width: 120rpx;
  298. height: 120rpx;
  299. }
  300. }
  301. }
  302. </style>