userinfo.vue 8.9 KB

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