language.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <template>
  2. <view class="index-page">
  3. <!-- 个人信息 -->
  4. <view class="personal">
  5. <view class="body-input u-flex-col u-row-center " @click="langeshow = true">
  6. <text class="input-title">语种</text>
  7. <view class="u-flex">
  8. <u--input customStyle="padding:0 !important" type="text" placeholder="请选择您的语种" border
  9. placeholderClass='input-style' v-model="language.language_name"></u--input>
  10. <text v-if="language.language_name">{{num+1}}</text>
  11. <text v-if="language.language_name">/</text>
  12. <text v-if="language.language_name">{{total}}</text>
  13. </view>
  14. </view>
  15. <view class="body-input u-flex-col u-row-center">
  16. <text class="input-title">水平</text>
  17. <view class="" @click="levelshow = true">
  18. <u--input disabledColor="#fff" customStyle="padding:0 !important" type="text"
  19. placeholder="请选择您的语言水平" border placeholderClass='input-style' suffixIcon="arrow-right"
  20. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  21. v-model="language.level_name"></u--input>
  22. </view>
  23. </view>
  24. <view class="u-flex u-row-between bottom">
  25. <view class="button1" @click="dele" v-if="type==2">
  26. 删除
  27. </view>
  28. <view class="button" @click="next">
  29. 保存
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 选择器 -->
  34. <u-modal :showCancelButton="true" :show="delec" :title="title" :content='content' @confirm="confirm"
  35. @cancel="delec = false"></u-modal>
  36. <u-picker :show="langeshow" keyName="name" :columns="lange" @confirm="lange1"></u-picker>
  37. <u-picker :show="levelshow" keyName="name" :columns="level" @confirm="level1"></u-picker>
  38. </view>
  39. </template>
  40. <script>
  41. import {
  42. update,
  43. resumeDetail,
  44. destroy,
  45. get_language,
  46. get_language_level
  47. } from "@/units/inquire.js"
  48. export default {
  49. data() {
  50. return {
  51. num: "",
  52. langeshow: false,
  53. levelshow: false,
  54. id: "",
  55. total:0,
  56. delec: false,
  57. title: "您确定要删除该语言能力吗?",
  58. type: 1,
  59. lange: [
  60. []
  61. ],
  62. level: [
  63. []
  64. ],
  65. //语言能力
  66. language: {
  67. language_id: "", // tring 语言ID(语言能力
  68. level_id: "", // ng 水平ID(语言能力
  69. language_name: "", // string 语言名称(语言能力
  70. level_name: "", // ring 水平名称(语言能力
  71. },
  72. }
  73. },
  74. onLoad(opsition) {
  75. this.id = opsition.id
  76. console.log(this.id);
  77. this.type = opsition.type
  78. if (opsition.type == 1) {
  79. uni.setNavigationBarTitle({
  80. title: "添加能力水平"
  81. })
  82. } else {
  83. this.resumeDetail()
  84. uni.setNavigationBarTitle({
  85. title: "编辑能力水平"
  86. })
  87. }
  88. },
  89. onShow() {
  90. this.get_language()
  91. this.get_language_level()
  92. },
  93. methods: {
  94. lange1(e) {
  95. this.num = e.indexs[0]
  96. this.language.language_name = e.value[0].name
  97. this.language.language_id = e.value[0].id
  98. this.langeshow = false
  99. },
  100. level1(e) {
  101. this.language.level_name = e.value[0].name
  102. this.language.level_id = e.value[0].id
  103. this.levelshow = false
  104. },
  105. //语言列表
  106. get_language() {
  107. get_language().then(res => {
  108. if (res.code == 1) {
  109. this.lange[0] = res.data
  110. this.total = res.data.length
  111. res.data.forEach((item, index) => {
  112. console.log(this.language.language_id);
  113. if (this.language.language_id == item.id) {
  114. console.log(index);
  115. this.num = index
  116. }
  117. })
  118. }
  119. })
  120. },
  121. //语言等级列表
  122. get_language_level() {
  123. get_language_level().then(res => {
  124. if (res.code == 1) {
  125. this.level[0] = res.data
  126. }
  127. })
  128. },
  129. dele() {
  130. this.delec = true
  131. },
  132. confirm() {
  133. destroy({
  134. source_type: "language",
  135. source_id: this.id
  136. }).then(res => {
  137. this.$u.toast("删除成功")
  138. setTimeout(() => {
  139. uni.navigateBack()
  140. }, 800)
  141. })
  142. },
  143. resumeDetail() {
  144. resumeDetail().then(res => {
  145. console.log(res);
  146. res.data.language.forEach((item, index) => {
  147. if (item.id == this.id) {
  148. this.language.language_id = item.language_id
  149. this.language.language_name = item.language_name
  150. this.language.language_id = item.level_id
  151. this.language.level_name = item.level_name
  152. }
  153. })
  154. this.get_language()
  155. })
  156. },
  157. return1() {
  158. uni.navigateBack()
  159. },
  160. next() {
  161. if (!this.language.language_name) {
  162. this.$u.toast("请选择语种")
  163. return
  164. }
  165. if (!this.language.level_name) {
  166. this.$u.toast("请选择语种水平")
  167. return
  168. }
  169. update({
  170. source_type: "language",
  171. source_id: this.id,
  172. ...this.language
  173. }).then(res => {
  174. uni.navigateBack()
  175. })
  176. }
  177. }
  178. }
  179. </script>
  180. <style lang="scss">
  181. page {
  182. background-color: #F3F3F3;
  183. }
  184. .bottom {
  185. position: fixed;
  186. bottom: 0;
  187. width: 682rpx;
  188. }
  189. .index-page {
  190. overflow: hidden;
  191. background: #fff;
  192. height: 100vh;
  193. .mingpianfont {
  194. height: 50rpx;
  195. font-size: 36rpx;
  196. font-family: PingFangSC-Medium, PingFang SC;
  197. font-weight: 500;
  198. color: #FFFFFF;
  199. line-height: 50rpx;
  200. }
  201. .explain {
  202. margin-top: 24rpx;
  203. width: 528rpx;
  204. height: 36rpx;
  205. font-size: 26rpx;
  206. font-family: PingFangSC-Regular, PingFang SC;
  207. font-weight: 400;
  208. color: #FFFFFF;
  209. line-height: 36rpx;
  210. }
  211. //个人信息
  212. .personal {
  213. width: 750rpx;
  214. background: #FFFFFF;
  215. border-radius: 28rpx 28rpx 0rpx 0rpx;
  216. margin-top: -40rpx;
  217. position: relative;
  218. z-index: 99;
  219. padding: 40rpx 32rpx 0;
  220. margin-bottom: 60rpx;
  221. box-sizing: border-box;
  222. .body-input {
  223. height: 170rpx;
  224. border-bottom: 2rpx solid #F4F4F4;
  225. .input-title {
  226. font-size: 26rpx;
  227. font-family: PingFangSC-Regular, PingFang SC;
  228. font-weight: 400;
  229. color: #888888;
  230. margin-bottom: 20rpx;
  231. margin-top: 30rpx;
  232. box-sizing: border-box;
  233. }
  234. .input-style {
  235. font-size: 32rpx;
  236. font-family: PingFangSC-Regular, PingFang SC;
  237. font-weight: 400;
  238. color: #CACACA;
  239. }
  240. }
  241. .button {
  242. flex: 1;
  243. height: 88rpx !important;
  244. background: #0C66C2;
  245. border-radius: 12rpx;
  246. font-size: 32rpx;
  247. font-family: PingFangSC-Medium, PingFang SC;
  248. font-weight: 500;
  249. color: #FFFFFF;
  250. line-height: 88rpx;
  251. // margin: 10rpx 0 0rpx 0;
  252. display: flex;
  253. justify-content: center;
  254. // margin-bottom: 60rpx;
  255. }
  256. .button1 {
  257. width: 256rpx;
  258. background: #F3F3F3;
  259. border-radius: 12rpx;
  260. margin-right: 24rpx;
  261. padding: 20rpx 50rpx;
  262. font-size: 32rpx;
  263. font-family: PingFangSC-Medium, PingFang SC;
  264. font-weight: 500;
  265. color: #333333;
  266. text-align: center;
  267. height: 88rpx !important;
  268. box-sizing: border-box;
  269. }
  270. }
  271. .index-item {
  272. // width: 702rpx;
  273. // background: #FFFFFF;
  274. // border-radius: 20rpx;
  275. // margin: 20rpx auto;
  276. // padding: 0 20rpx 24rpx 10rpx;
  277. .item-down {
  278. text:first-child {
  279. font-size: 22rpx;
  280. font-family: SFPro-Regular, SFPro;
  281. font-weight: 400;
  282. color: #666666;
  283. }
  284. text:last-child {
  285. font-size: 22rpx;
  286. font-family: PingFangSC-Regular, PingFang SC;
  287. font-weight: 400;
  288. color: #666666;
  289. }
  290. }
  291. .item-gongsi {
  292. margin-bottom: 16rpx;
  293. .text2 {
  294. font-size: 24rpx;
  295. font-family: SFPro-Regular, SFPro;
  296. font-weight: 400;
  297. color: #666666;
  298. }
  299. .logo {
  300. width: 42rpx;
  301. height: 42rpx;
  302. border-radius: 10rpx;
  303. margin-right: 16rpx;
  304. }
  305. .text1 {
  306. max-width: 192rpx;
  307. font-size: 24rpx;
  308. font-family: PingFangSC-Regular, PingFang SC;
  309. font-weight: 400;
  310. color: #444444;
  311. margin-right: 12rpx;
  312. }
  313. }
  314. .item-label {
  315. margin-bottom: 20rpx;
  316. text {
  317. margin-right: 16rpx;
  318. line-height: 46rpx;
  319. background: #F7F7F7;
  320. border-radius: 4rpx;
  321. padding: 0 14rpx;
  322. font-size: 24rpx;
  323. font-family: PingFangSC-Regular, PingFang SC;
  324. font-weight: 400;
  325. color: #5F5F5F;
  326. }
  327. }
  328. .item-top {
  329. height: 88rpx;
  330. .text1 {
  331. font-size: 32rpx;
  332. font-family: PingFangSC-Medium, PingFang SC;
  333. font-weight: 500;
  334. color: #222222;
  335. margin-right: 16rpx;
  336. }
  337. .text2 {
  338. width: 50rpx;
  339. line-height: 32rpx;
  340. background: rgba(255, 83, 53, 0.1);
  341. border-radius: 4rpx;
  342. text-align: center;
  343. font-size: 20rpx;
  344. font-family: PingFangSC-Regular, PingFang SC;
  345. font-weight: 400;
  346. color: #FF5335;
  347. margin-right: 12rpx;
  348. }
  349. .text3 {
  350. width: 90rpx;
  351. line-height: 32rpx;
  352. background: #FFF2E8;
  353. border-radius: 4rpx;
  354. text-align: center;
  355. font-size: 20rpx;
  356. font-family: PingFangSC-Regular, PingFang SC;
  357. font-weight: 400;
  358. color: #FF8620;
  359. margin-right: 12rpx;
  360. }
  361. .text4 {
  362. line-height: 32rpx;
  363. background: #E6EFF8;
  364. border-radius: 4rpx;
  365. padding: 0 4rpx;
  366. text-align: center;
  367. font-size: 20rpx;
  368. font-family: SFPro-Regular, SFPro;
  369. font-weight: 400;
  370. color: #0C66C2;
  371. }
  372. .text5 {
  373. font-size: 32rpx;
  374. font-family: JDZhengHT-Regular, JDZhengHT;
  375. font-weight: 400;
  376. color: #0C66C2;
  377. }
  378. }
  379. }
  380. .index-navbar {
  381. position: sticky;
  382. top: 0;
  383. left: 0;
  384. width: 750rpx;
  385. z-index: 10;
  386. .header-down {
  387. height: 92rpx;
  388. padding: 20rpx 24rpx;
  389. box-sizing: border-box;
  390. .font {
  391. font-size: 40rpx;
  392. font-family: PingFangSC-Medium, PingFang SC;
  393. font-weight: 500;
  394. color: #222222;
  395. }
  396. .right-item {
  397. padding: 0 16rpx;
  398. height: 52rpx;
  399. background: #F3F3F3;
  400. border-radius: 4rpx;
  401. margin-left: 20rpx;
  402. .text {
  403. margin-right: 4rpx;
  404. font-size: 26rpx;
  405. font-family: PingFangSC-Regular, PingFang SC;
  406. font-weight: 400;
  407. color: #666666;
  408. }
  409. }
  410. .down-left {
  411. .text {
  412. margin-right: 4rpx;
  413. font-size: 26rpx;
  414. font-family: PingFangSC-Medium, PingFang SC;
  415. font-weight: 500;
  416. color: #222222;
  417. }
  418. }
  419. }
  420. .index-bg {
  421. position: absolute;
  422. top: 0;
  423. left: 0;
  424. z-index: -1;
  425. width: 750rpx;
  426. height: 392rpx;
  427. }
  428. }
  429. .index-header {
  430. flex: 1;
  431. padding: 0 32rpx;
  432. height: 50rpx;
  433. .index-search {
  434. width: 200rpx;
  435. height: 64rpx;
  436. background: #FFFFFF;
  437. border-radius: 20rpx;
  438. padding: 0 28rpx;
  439. .text1 {
  440. font-size: 24rpx;
  441. font-family: PingFangSC-Regular, PingFang SC;
  442. font-weight: 400;
  443. color: #999999;
  444. margin-left: 16rpx;
  445. }
  446. }
  447. .index-tabs {
  448. text:first-child {
  449. font-size: 36rpx;
  450. font-family: PingFangSC-Medium, PingFang SC;
  451. font-weight: 500;
  452. color: #222222;
  453. }
  454. text:last-child {
  455. width: 76rpx;
  456. height: 12rpx;
  457. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  458. margin-top: -20rpx;
  459. border-radius: 100rpx;
  460. }
  461. }
  462. }
  463. }
  464. ::v-deep .u-navbar__content__left {
  465. padding: 0 !important;
  466. }
  467. ::v-deep .u-subsection {
  468. width: 312rpx !important;
  469. }
  470. </style>