renzheng.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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="workShow=true">
  43. <view class="item-name">
  44. 毕业年份
  45. </view>
  46. <view class="item-input u-flex">
  47. <input type="text" placeholder="请选择毕业年份" :disabled="true">
  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-datetime-picker ref="pickers" title="毕业年份" :minDate="minDate1" @confirm="workConfirm" :show="workShow"
  60. mode="date" @cancel='close()'></u-datetime-picker>
  61. </view>
  62. </template>
  63. <script>
  64. import {
  65. profile,
  66. get_experience,
  67. getareacity,
  68. get_sex,
  69. index
  70. } from "@/units/inquire.js"
  71. import fuxing from "../common/fuxing.js"
  72. export default {
  73. data() {
  74. return {
  75. workShow:false,
  76. userinfo: {},
  77. sexlist: [],
  78. citylist: [],
  79. qiye: '',
  80. jingyanlist: [],
  81. worklist: [{
  82. label: 'soho猎头',
  83. value: 'soho'
  84. }, {
  85. label: '就职猎头',
  86. value: 'job'
  87. }]
  88. }
  89. },
  90. onLoad() {
  91. this.getuser()
  92. this.getconfig()
  93. this.minDate1 = Number(new Date('1980-01-01'));
  94. },
  95. methods: {
  96. //参加工作时间
  97. async workConfirm(e) {
  98. const timeFormat = uni.$u.timeFormat;
  99. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  100. this.from.job_time = timeValue;
  101. this.workShow = false
  102. },
  103. changework(e) {
  104. this.userinfo.work_status = e[0].value
  105. },
  106. changejingyan(e) {
  107. this.userinfo.experience_id = e[0].value
  108. this.userinfo.experience_name = e[0].label
  109. },
  110. save() {
  111. if (!this.userinfo.avatar) {
  112. this.$u.toast("请上传头像")
  113. return
  114. }
  115. if (!this.userinfo.name) {
  116. this.$u.toast("请输入真实名字")
  117. return
  118. }
  119. if (!this.userinfo.sex) {
  120. this.$u.toast("请选择性别")
  121. return
  122. }
  123. if (!this.userinfo.industry_name) {
  124. this.$u.toast("请选择猎头行业")
  125. return
  126. }
  127. if (!this.userinfo.experience_name) {
  128. this.$u.toast("请选择经验")
  129. return
  130. }
  131. if (!this.userinfo.work_status) {
  132. this.$u.toast("请选择就职状态")
  133. return
  134. }
  135. if (!this.userinfo.work_address) {
  136. this.$u.toast("请选择工作地址")
  137. return
  138. }
  139. uni.showLoading({
  140. mask: true,
  141. title: "请稍后"
  142. })
  143. profile({
  144. avatar: this.userinfo.avatar,
  145. name: this.userinfo.name,
  146. industry_first: this.userinfo.industry_first,
  147. industry_id: this.userinfo.industry_id,
  148. experience_id: this.userinfo.experience_id,
  149. work_status: this.userinfo.work_status,
  150. work_address: this.userinfo.work_address,
  151. realname: this.userinfo.virtual_name,
  152. }).then(res => {
  153. if (res.code == 1) {
  154. this.$u.toast("修改成功")
  155. setTimeout(() => {
  156. uni.navigateBack()
  157. }, 800)
  158. } else {
  159. this.$u.toast(res.msg)
  160. }
  161. })
  162. },
  163. changecity(e) {
  164. this.userinfo.work_address = `${e[0].label} ${e[1].label}`
  165. },
  166. changsex(e) {
  167. this.userinfo.sex_text = e[0].label
  168. this.userinfo.sex = e[0].value
  169. if (this.userinfo.name != this.userinfo.virtual_name && this.userinfo.virtual_name) {
  170. if (this.userinfo.name.length == 3) {
  171. this.userinfo.name = this.userinfo.virtual_name[0] + (this.userinfo.sex == 'female' ? '女士' : '先生')
  172. } else {
  173. this.userinfo.name = this.userinfo.virtual_name[0] + this.userinfo.virtual_name[1] + (this.userinfo
  174. .sex == 'female' ? '女士' : '先生')
  175. }
  176. }
  177. },
  178. getconfig() {
  179. get_sex().then(res => {
  180. for (var key in res.data) {
  181. this.sexlist.push({
  182. label: res.data[key],
  183. value: key
  184. })
  185. }
  186. })
  187. getareacity().then(res => {
  188. this.citylist = res.data
  189. })
  190. get_experience().then(res => {
  191. this.jingyanlist = res.data
  192. })
  193. },
  194. uploadimg() {
  195. uni.chooseImage({
  196. count: 1,
  197. success: (img) => {
  198. uni.showLoading({
  199. mask: true,
  200. title: "请稍后"
  201. })
  202. uni.uploadFile({
  203. url: this.$url + '/api/common/upload',
  204. filePath: img.tempFilePaths[0],
  205. name: 'file',
  206. success: (res) => {
  207. uni.hideLoading()
  208. if (JSON.parse(res.data).code == 1) {
  209. this.userinfo.avatar = JSON.parse(res.data).data.fullurl
  210. } else {
  211. this.$u.toast(JSON.parse(res.data).msg)
  212. }
  213. },
  214. fail: (e) => {
  215. console.log(e);
  216. }
  217. })
  218. }
  219. })
  220. },
  221. getuser() {
  222. index().then(res => {
  223. this.userinfo = res.data.group_info
  224. this.userinfo.sex_text = {
  225. 'male': '男',
  226. 'female': '女',
  227. 'secret': '保密'
  228. } [this.userinfo.sex]
  229. })
  230. },
  231. tochangename() {
  232. uni.navigateTo({
  233. url: "/pagesD/change-name?name=" + JSON.stringify({
  234. name: this.userinfo.name,
  235. virtual_name: this.userinfo.realname
  236. }),
  237. events: {
  238. getname: (res) => {
  239. if (res.name) {
  240. this.userinfo.name = res.name
  241. } else {
  242. var name = ''
  243. fuxing.forEach(val => {
  244. if (res.virtual_name.indexOf(val) > -1) {
  245. name = res.virtual_name[0] + res.virtual_name[1] + (this
  246. .userinfo.sex == 'female' ? '女士' : '先生')
  247. }
  248. })
  249. if (!name) {
  250. name = res.virtual_name[0] + (this.userinfo.sex == 'female' ? '女士' : '先生')
  251. }
  252. this.userinfo.name = name
  253. }
  254. this.userinfo.realname = res.virtual_name
  255. }
  256. }
  257. })
  258. }
  259. }
  260. }
  261. </script>
  262. <style lang="scss">
  263. .userinfo {
  264. padding: 0 32rpx;
  265. .user-down {
  266. position: fixed;
  267. bottom: 0;
  268. left: 0;
  269. z-index: 99;
  270. width: 750rpx;
  271. background-color: #fff;
  272. .down-btn {
  273. padding: 8rpx 32rpx;
  274. text {
  275. line-height: 88rpx;
  276. background: #0C66C2;
  277. border-radius: 12rpx;
  278. width: 100%;
  279. font-size: 32rpx;
  280. font-family: PingFangSC-Medium, PingFang SC;
  281. font-weight: 500;
  282. color: #FFFFFF;
  283. text-align: center;
  284. }
  285. }
  286. }
  287. .user-item {
  288. padding-top: 30rpx;
  289. border-bottom: 2rpx solid #F0F0F0;
  290. .item-input {
  291. height: 100rpx;
  292. input {
  293. height: 100rpx;
  294. flex: 1;
  295. }
  296. }
  297. .item-name {
  298. font-size: 26rpx;
  299. font-family: PingFangSC-Regular, PingFang SC;
  300. font-weight: 400;
  301. color: #888888;
  302. }
  303. }
  304. .user-head {
  305. padding: 32rpx 0;
  306. border-bottom: 2rpx solid #F0F0F0;
  307. text {
  308. font-size: 32rpx;
  309. font-family: PingFangSC-Regular, PingFang SC;
  310. font-weight: 400;
  311. color: #222222;
  312. }
  313. image {
  314. border-radius: 100%;
  315. width: 120rpx;
  316. height: 120rpx;
  317. }
  318. }
  319. }
  320. </style>