jobdetails.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <template>
  2. <div class="">
  3. <Header />
  4. <Mainmenu />
  5. <section class="job-base">
  6. <div class="wrap">
  7. <div class="name">{{ companyInfo.companyName }}</div>
  8. <div class="position">{{ jobdetails.postName }}</div>
  9. <div class="details">
  10. <span
  11. >{{ jobdetails.lowestSalary }}K-{{
  12. jobdetails.highestSalary
  13. }}K</span
  14. >
  15. 工作年限:{{ filterworkYear(jobdetails.workYear) }} /
  16. {{ filterEducations(jobdetails.educationBg) }}
  17. </div>
  18. </div>
  19. </section>
  20. <section class="page-con wrap">
  21. <div class="left-content">
  22. <div class="job-details">
  23. <div class="big-title">职位描述:</div>
  24. <div v-html="jobdetails.description"></div>
  25. <!-- <div class="block">
  26. <div class="title">岗位职责</div>
  27. <ul>
  28. <li>
  29. 1. 有优秀互联网或成熟作品优先;熟悉 iOS、 Android 平台设计原则;
  30. </li>
  31. <li>
  32. 2. 会使用AE等动画交互软件提交完整的视觉交互 demo,像素控;
  33. </li>
  34. <li>3. 会使用sketch软件;</li>
  35. <li>
  36. 4.
  37. 较强的自控力及自驱力,灵活的设计思维,优秀的自我成长及思考能力;
  38. </li>
  39. <li>
  40. 5.
  41. 具有一定美术功底、良好的设计创新、逻辑思维以及设计需求分析能力;
  42. </li>
  43. </ul>
  44. </div>
  45. <div class="block">
  46. <div class="title">任职资格</div>
  47. <ul>
  48. <li>
  49. 1. 有优秀互联网或成熟作品优先;熟悉 iOS、 Android 平台设计原则;
  50. </li>
  51. <li>
  52. 2. 会使用AE等动画交互软件提交完整的视觉交互 demo,像素控;
  53. </li>
  54. <li>3. 会使用sketch软件;</li>
  55. <li>
  56. 4.
  57. 较强的自控力及自驱力,灵活的设计思维,优秀的自我成长及思考能力;
  58. </li>
  59. <li>
  60. 5.
  61. 具有一定美术功底、良好的设计创新、逻辑思维以及设计需求分析能力;
  62. </li>
  63. </ul>
  64. </div>
  65. <div class="block">
  66. <div class="title">福利待遇</div>
  67. <ul>
  68. <li>五险一金、全勤奖、带薪年假、定期体检、员工旅游、节假福利</li>
  69. </ul>
  70. </div>
  71. <div class="block">
  72. <div class="title">工作地点</div>
  73. <ul>
  74. <li>贵阳市乌当区-水东路</li>
  75. </ul>
  76. </div> -->
  77. </div>
  78. <!-- job-details end -->
  79. </div>
  80. <div class="base-info">
  81. <div class="name">公司基本信息</div>
  82. <div class="base-info-item">
  83. <i class="el-icon-s-marketing"></i
  84. >{{ filterTradeStatus(companyInfo.trade) }}
  85. </div>
  86. <div class="base-info-item">
  87. <i class="el-icon-s-custom"></i
  88. >{{ filterScopeStatus(companyInfo.scope) }}
  89. </div>
  90. <div class="base-info-item">
  91. <i class="el-icon-location"></i>{{ companyInfo.companyAddress }}
  92. </div>
  93. </div>
  94. </section>
  95. </div>
  96. </template>
  97. <script>
  98. import Header from "@/components/header.vue";
  99. import Mainmenu from "@/components/mainmenu.vue";
  100. import {
  101. getCompanyInfo,
  102. getJobdetails,
  103. getTrade,
  104. getScope,
  105. getDicData,
  106. } from "@/utils/api";
  107. export default {
  108. name: "",
  109. components: {
  110. Header,
  111. Mainmenu,
  112. },
  113. data() {
  114. return {
  115. id: "",
  116. companyInfo: {},
  117. jobdetails: {},
  118. trade: [],
  119. scope: [],
  120. educations: [],
  121. workYear: [],
  122. };
  123. },
  124. computed: {
  125. filterEducations() {
  126. return function (value) {
  127. let v = "";
  128. for (let i = 0; i < this.educations.length; i++) {
  129. // console.log("value", value);
  130. // console.log("value", this.educations[i]);
  131. let item = this.educations[i];
  132. if (value == item.dictValue) {
  133. v = item.dictLabel;
  134. break;
  135. }
  136. }
  137. return v;
  138. };
  139. },
  140. filterTradeStatus() {
  141. return function (value) {
  142. let v = "";
  143. for (let i = 0; i < this.trade.length; i++) {
  144. let item = this.trade[i];
  145. if (value == item.value) {
  146. v = item.label;
  147. break;
  148. }
  149. }
  150. return v;
  151. };
  152. },
  153. filterScopeStatus() {
  154. return function (value) {
  155. let v = "";
  156. for (let i = 0; i < this.scope.length; i++) {
  157. let item = this.scope[i];
  158. if (value == item.value) {
  159. v = item.label;
  160. break;
  161. }
  162. }
  163. return v;
  164. };
  165. },
  166. filterworkYear() {
  167. return function (value) {
  168. let v = "";
  169. for (let i = 0; i < this.workYear.length; i++) {
  170. // console.log("value", value);
  171. // console.log("value", this.educations[i]);
  172. let item = this.workYear[i];
  173. if (value == item.dictValue) {
  174. v = item.dictLabel;
  175. break;
  176. }
  177. }
  178. return v;
  179. };
  180. },
  181. },
  182. created() {
  183. this.id = this.$route.query.id;
  184. this.handleGetJobdetails();
  185. this.getinfo();
  186. this.getEducations();
  187. this.getWorkYear();
  188. },
  189. mounted() {
  190. this.handelGetTrade();
  191. this.handelGetScope();
  192. },
  193. methods: {
  194. getWorkYear() {
  195. getDicData("work_year").then((res) => {
  196. this.workYear = res.data;
  197. });
  198. },
  199. getinfo() {
  200. getCompanyInfo()
  201. .then((res) => {
  202. console.log("fetchList", res);
  203. this.companyInfo = res.data;
  204. })
  205. .catch((err) => {
  206. console.log("fetchList err", err);
  207. });
  208. },
  209. handleGetJobdetails() {
  210. getJobdetails({ id: this.id })
  211. .then((res) => {
  212. console.log("getJobdetails", res);
  213. this.jobdetails = res.data;
  214. })
  215. .catch((err) => {
  216. console.log("getJobdetails err", err);
  217. });
  218. },
  219. getEducations() {
  220. getDicData("degr_educ").then((res) => {
  221. this.educations = res.data;
  222. });
  223. },
  224. handelGetTrade() {
  225. let that = this;
  226. getTrade()
  227. .then((res) => {
  228. console.log("getTrade", res);
  229. if (res.code == 200) {
  230. res.data.map(function (currentValue) {
  231. that.trade.push({
  232. value: currentValue.dictValue,
  233. label: currentValue.dictLabel,
  234. });
  235. });
  236. }
  237. })
  238. .catch((err) => {
  239. console.log("getTrade err", err);
  240. });
  241. },
  242. handelGetScope() {
  243. let that = this;
  244. getScope()
  245. .then((res) => {
  246. console.log("getScope", res);
  247. if (res.code == 200) {
  248. res.data.map(function (currentValue) {
  249. that.scope.push({
  250. value: currentValue.dictValue,
  251. label: currentValue.dictLabel,
  252. });
  253. });
  254. }
  255. })
  256. .catch((err) => {
  257. console.log("getScope err", err);
  258. });
  259. },
  260. },
  261. };
  262. </script>
  263. <style lang='scss' scoped>
  264. .left-content {
  265. padding-top: 0;
  266. }
  267. //@import url()
  268. .job-base {
  269. background: #eee;
  270. padding: 32px 0 42px;
  271. .name {
  272. font-size: 14px;
  273. font-weight: 400;
  274. color: #717171;
  275. line-height: 20px;
  276. margin-bottom: 15px;
  277. }
  278. .position {
  279. font-size: 28px;
  280. font-weight: 400;
  281. color: #1f1f1f;
  282. line-height: 40px;
  283. letter-spacing: 1px;
  284. margin-bottom: 18px;
  285. }
  286. .details {
  287. font-size: 14px;
  288. font-weight: 400;
  289. color: #4d4d4d;
  290. line-height: 20px;
  291. span {
  292. color: #ff5900;
  293. margin-right: 10px;
  294. }
  295. }
  296. }
  297. .job-details {
  298. .big-title {
  299. font-size: 22px;
  300. font-weight: 500;
  301. color: #1c1c1c;
  302. line-height: 30px;
  303. letter-spacing: 1px;
  304. margin-bottom: 53px;
  305. }
  306. .block {
  307. margin-bottom: 20px;
  308. .title {
  309. font-size: 18px;
  310. font-weight: 500;
  311. color: #1c1c1c;
  312. line-height: 25px;
  313. margin-bottom: 6px;
  314. }
  315. ul {
  316. li {
  317. font-size: 14px;
  318. font-weight: 400;
  319. color: #464646;
  320. line-height: 30px;
  321. }
  322. }
  323. }
  324. }
  325. </style>