work.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <view class="personal">
  3. <view class="body-input u-flex-col u-row-center">
  4. <text class="input-title">公司名称</text>
  5. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的公司名称" border
  6. placeholderClass='input-style' v-model="job_experience.company_name"></u--input>
  7. </view>
  8. <view class="body-input u-flex-col u-row-center" @click="tohangye">
  9. <text class="input-title">公司行业</text>
  10. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  11. placeholder="请选择您的公司行业" border placeholderClass='input-style' suffixIcon="arrow-right"
  12. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="industry"></u--input>
  13. </view>
  14. <view class="body-input u-flex-col u-row-center">
  15. <text class="input-title">所属部门</text>
  16. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的所属部门" border
  17. placeholderClass='input-style' v-model="job_experience.department"></u--input>
  18. </view>
  19. <view class="body-input u-flex-col u-row-center">
  20. <text class="input-title">职位名称</text>
  21. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的的职位名称"
  22. border placeholderClass='input-style' v-model="job_experience.job_name"></u--input>
  23. </view>
  24. <view class="body-input u-flex-col u-row-center">
  25. <text class="input-title">在职时间</text>
  26. <view class="u-flex u-row-between" style="margin-top: 20rpx;">
  27. <view class="" @click="entryShow = true">
  28. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  29. placeholder="入职时间" border placeholderClass='input-style'
  30. v-model="job_experience.start_time"></u--input>
  31. </view>
  32. <view class="">-</view>
  33. <view class="" @click="dimissionShow = true">
  34. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  35. placeholder="离职时间" inputAlign="center" border placeholderClass='input-style'
  36. v-model="job_experience.end_time"></u--input>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="body-input u-flex-col u-row-center">
  41. <text class="input-title">离职原因</text>
  42. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的离职原因" border
  43. placeholderClass='input-style' v-model="job_experience.level_reason"></u--input>
  44. </view>
  45. <view class="body-input u-flex-col u-row-center" @click="toworktion(job_experience.work_content)">
  46. <text class="input-title">工作内容</text>
  47. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写您的工作内容" border
  48. placeholderClass='input-style' v-model="job_experience.work_content"></u--input>
  49. </view>
  50. <view class="body-input u-flex-col u-row-center" style="margin-top: 34rpx;">
  51. <view class="">选填内容</view>
  52. <text class="input-title">下属人数</text>
  53. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写(选填)" border
  54. placeholderClass='input-style' v-model="job_experience.underling_count"></u--input>
  55. </view>
  56. <view class="body-input u-flex-col u-row-center">
  57. <text class="input-title">汇报对象</text>
  58. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text" placeholder="请填写(选填)" border
  59. placeholderClass='input-style' v-model="job_experience.report_to"></u--input>
  60. </view>
  61. <view class="u-flex u-row-between" style="margin-bottom: 20rpx;">
  62. <view class="button1" @click="dele" v-if="key==2">
  63. 删除
  64. </view>
  65. <view class="button" @click="next">
  66. 保存
  67. </view>
  68. </view>
  69. <view class="safe-area-inset-bottom"></view>
  70. <u-datetime-picker title="入职时间" :minDate="minDate1" @confirm="entryConfirm" :show="entryShow" mode="year-month"
  71. @cancel='entryShow = false'></u-datetime-picker>
  72. <u-datetime-picker title="离职时间" :minDate="minDate" @confirm="dimissionConfirm" :show="dimissionShow" mode="year-month"
  73. @cancel='dimissionShow = false'></u-datetime-picker>
  74. <u-modal :showCancelButton="true" :show="delec" :title="title" :content='content' @confirm="confirm"
  75. @cancel="delec = false"></u-modal>
  76. </view>
  77. </template>
  78. <script setup>
  79. import {
  80. get_category_industry,
  81. update,
  82. resumeDetail,
  83. destroy
  84. } from "@/units/inquire.js"
  85. export default {
  86. data() {
  87. return {
  88. delec:false,
  89. title:"您确定要删除该工作经历吗?",
  90. entryShow: false,
  91. dimissionShow: false,
  92. industryShow: false,
  93. minDate: "",
  94. minDate1: "",
  95. id: "",
  96. key:1,
  97. industry: "", //公司行业名称
  98. industry_first: "",
  99. job_experience: {
  100. industry_id: "", //公司行业id
  101. company_name: "", //公司名称
  102. start_time: "", //在职时间
  103. end_time: "", //离职时间
  104. department: "", //所属部门
  105. job_name: "", //工作名称
  106. level_reason: "", //离职原因
  107. work_content: "", //工作内容
  108. underling_count: "",
  109. report_to: ""
  110. }
  111. }
  112. },
  113. onLoad(opsition) {
  114. this.id = opsition.id
  115. this.key = opsition.key
  116. if (opsition.key == 1) {
  117. uni.setNavigationBarTitle({
  118. title: "添加工作经历"
  119. })
  120. } else {
  121. this.resumeDetail()
  122. uni.setNavigationBarTitle({
  123. title: "编辑工作经历"
  124. })
  125. }
  126. this.minDate = Number(new Date('2000-01-01'));
  127. this.minDate1 = Number(new Date('1980-01-01'));
  128. },
  129. methods: {
  130. toworktion(content){
  131. uni.navigateTo({
  132. url:'/pagesA/worktion?concant='+content,
  133. events:{
  134. todcp:res=>{
  135. this.job_experience.work_content = res
  136. }
  137. }
  138. })
  139. },
  140. resumeDetail(){
  141. resumeDetail().then(res=>{
  142. console.log(res);
  143. res.data.job_experience.forEach((item)=>{
  144. if(item.id == this.id){
  145. this.job_experience.company_name = item.company_name
  146. this.job_experience.department = item.department
  147. this.job_experience.end_time = item.end_time
  148. this.job_experience.industry_id = item.industry_id
  149. this.industry = item.industry_name
  150. this.job_experience.job_name = item.job_name
  151. this.job_experience.level_reason = item.level_reason
  152. this.job_experience.report_to = item.report_to
  153. this.job_experience.start_time = item.start_time
  154. this.job_experience.underling_count = item.underling_count
  155. this.job_experience.work_content = item.work_content
  156. }
  157. })
  158. })
  159. },
  160. dele() {
  161. this.delec = true
  162. },
  163. getdata(item) {
  164. console.log(item);
  165. },
  166. tohangye() {
  167. uni.navigateTo({
  168. url: "../pagesA/change-hangye1",
  169. events: {
  170. changehangye: (res) => {
  171. this.industry_first = res[0].id
  172. this.job_experience.industry_id = res[1].id
  173. this.industry = res[1].name
  174. }
  175. }
  176. })
  177. },
  178. async entryConfirm(e) {
  179. const timeFormat = uni.$u.timeFormat;
  180. console.log(e.value);
  181. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  182. this.job_experience.start_time = timeValue;
  183. this.entryShow = false
  184. },
  185. async dimissionConfirm(e) {
  186. const timeFormat = uni.$u.timeFormat;
  187. let timeValue = await timeFormat(e.value, 'yyyy-mm');
  188. this.job_experience.end_time = timeValue;
  189. this.dimissionShow = false
  190. },
  191. return1() {
  192. uni.navigateBack()
  193. },
  194. confirm() {
  195. destroy({
  196. source_type: "job_experience",
  197. source_id: this.id
  198. }).then(res => {
  199. this.$u.toast("删除成功")
  200. setTimeout(() => {
  201. uni.navigateBack()
  202. }, 800)
  203. })
  204. },
  205. next() {
  206. if (!this.job_experience.company_name) {
  207. this.$u.toast("请填写公司名称")
  208. return
  209. }
  210. if (!this.industry) {
  211. this.$u.toast("请选择您的公司行业")
  212. return
  213. }
  214. if (!this.job_experience.department) {
  215. this.$u.toast("请填写您的所属部门")
  216. return
  217. }
  218. if (!this.job_experience.job_name) {
  219. this.$u.toast("请填写您的职业名称")
  220. return
  221. }
  222. if (!this.job_experience.start_time) {
  223. this.$u.toast("请选择入职时间")
  224. return
  225. }
  226. if (!this.job_experience.end_time) {
  227. this.$u.toast("请选择离职时间")
  228. return
  229. }
  230. if (!this.job_experience.level_reason) {
  231. this.$u.toast("请填写离职原因")
  232. return
  233. }
  234. if (!this.job_experience.work_content) {
  235. this.$u.toast("请填写工作内容")
  236. return
  237. }
  238. update({
  239. ...this.job_experience,
  240. source_type: "job_experience",
  241. source_id: this.id
  242. }).then(res => {
  243. uni.navigateBack()
  244. })
  245. }
  246. }
  247. }
  248. </script>
  249. <style lang="scss">
  250. .button1 {
  251. width: 256rpx;
  252. background: #F3F3F3;
  253. border-radius: 12rpx;
  254. margin-right: 24rpx;
  255. padding: 20rpx 50rpx;
  256. font-size: 32rpx;
  257. font-family: PingFangSC-Medium, PingFang SC;
  258. font-weight: 500;
  259. color: #333333;
  260. text-align: center;
  261. height: 88rpx !important;
  262. box-sizing: border-box;
  263. }
  264. .btn {
  265. background: #0C66C2;
  266. border-radius: 16rpx;
  267. font-size: 32rpx;
  268. font-family: PingFangSC-Regular, PingFang SC;
  269. font-weight: 400;
  270. color: #FFFFFF;
  271. width: 310rpx;
  272. height: 84rpx;
  273. line-height: 84rpx;
  274. text-align: center;
  275. margin-top: 24rpx;
  276. }
  277. //个人信息
  278. .personal {
  279. width: 750rpx;
  280. background: #FFFFFF;
  281. border-radius: 28rpx 28rpx 0rpx 0rpx;
  282. margin-top: -40rpx;
  283. position: relative;
  284. z-index: 99;
  285. padding: 40rpx 32rpx 0;
  286. margin-bottom: 60rpx;
  287. box-sizing: border-box;
  288. .title {
  289. font-size: 48rpx;
  290. font-family: PingFangSC-Medium, PingFang SC;
  291. font-weight: 500;
  292. color: #222222;
  293. }
  294. .titleb {
  295. font-size: 26rpx;
  296. font-family: PingFangSC-Regular, PingFang SC;
  297. font-weight: 400;
  298. color: #777777;
  299. margin-top: 20rpx;
  300. }
  301. .body-input {
  302. height: 150rpx;
  303. border-bottom: 2rpx solid #F4F4F4;
  304. .input-title {
  305. font-size: 26rpx;
  306. font-family: PingFangSC-Regular, PingFang SC;
  307. font-weight: 400;
  308. color: #888888;
  309. margin-top: 30rpx;
  310. box-sizing: border-box;
  311. }
  312. .input-style {
  313. font-size: 32rpx;
  314. font-family: PingFangSC-Regular, PingFang SC;
  315. font-weight: 400;
  316. color: #CACACA;
  317. }
  318. }
  319. .button {
  320. width: 686rpx;
  321. height: 88rpx !important;
  322. background: #0C66C2;
  323. border-radius: 12rpx;
  324. font-size: 32rpx;
  325. font-family: PingFangSC-Medium, PingFang SC;
  326. font-weight: 500;
  327. color: #FFFFFF;
  328. line-height: 88rpx;
  329. text-align: center;
  330. }
  331. }
  332. </style>