work.vue 10.0 KB

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