change-zhiwei.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="zhiwei-list u-flex-col">
  3. <view class="zhiwei-search">
  4. <view class="search-box u-flex">
  5. <u-icon name="search" size="30"></u-icon>
  6. <input type="text" class="input" placeholder="选择职位名称查找职位类别" v-model="keyword1" confirm-type="search" @confirm="tosearch">
  7. </view>
  8. </view>
  9. <view class="u-flex-1 scroll-box u-flex">
  10. <scroll-view scroll-y="true" class="scroll-left">
  11. <view class="left-item u-flex u-row-between" :class="{leftactive:leftindex == index}" @click="changeleft(index)" v-for="(item,index) in leftlist" :key="index">
  12. <text></text>
  13. <text>{{item.name}}</text>
  14. <text></text>
  15. </view>
  16. </scroll-view>
  17. <scroll-view scroll-y="true" class="scroll-right">
  18. <view class="right-item" v-for="(item,index) in rightlist" :key="index">
  19. <view class="item-title">
  20. {{item.name}}
  21. </view>
  22. <view class="u-flex u-row-between u-flex-wrap right-list">
  23. <text class="right-text" @click="changeright(item,a)" v-for="(a,b) in item.childlist" :key="b">{{a.name}}</text>
  24. </view>
  25. </view>
  26. </scroll-view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. import {get_category_job} from "@/units/inquire.js"
  32. export default {
  33. data() {
  34. return {
  35. leftindex: 0,
  36. leftlist: [],
  37. rightlist: [],
  38. keyword1: '',
  39. keyword: ''
  40. }
  41. },
  42. onLoad() {
  43. this.getlist()
  44. },
  45. methods: {
  46. changeright(item, a) {
  47. var arr = []
  48. arr.push({
  49. id: this.leftlist[this.leftindex].id,
  50. name: this.leftlist[this.leftindex].name
  51. })
  52. arr.push({
  53. id: item.id,
  54. name: item.name
  55. })
  56. arr.push({
  57. id: a.id,
  58. name: a.name
  59. })
  60. const eventChannel = this.getOpenerEventChannel();
  61. eventChannel.emit('changefenlei', arr);
  62. uni.navigateBack()
  63. },
  64. tosearch() {
  65. this.keyword = this.keyword1
  66. this.shaixuan()
  67. },
  68. shaixuan() {
  69. if (this.keyword) {
  70. var rightlist = JSON.parse(JSON.stringify(this.leftlist[this.leftindex].childlist))
  71. this.rightlist = []
  72. rightlist.forEach(item => {
  73. var arr = []
  74. item.childlist.forEach(val => {
  75. if (val.name.indexOf(this.keyword) > -1) {
  76. arr.push(val)
  77. }
  78. })
  79. item.childlist = arr
  80. if (arr.length > 0) {
  81. this.rightlist.push(item)
  82. }
  83. })
  84. } else {
  85. this.rightlist = this.leftlist[this.leftindex].childlist
  86. }
  87. },
  88. changeleft(index) {
  89. this.leftindex = index
  90. this.shaixuan()
  91. },
  92. getlist() {
  93. get_category_job().then(res => {
  94. this.leftlist = res.data
  95. this.rightlist = res.data[this.leftindex].childlist
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. .zhiwei-list {
  103. height: 100vh;
  104. .scroll-box {
  105. min-height: 1rpx;
  106. .scroll-right {
  107. flex: 1;
  108. min-width: 1rpx;
  109. height: 100%;
  110. padding: 0 32rpx 0 26rpx;
  111. .right-item {
  112. .right-list {
  113. .right-text {
  114. width: 212rpx;
  115. line-height: 72rpx;
  116. background: #F3F3F3;
  117. border-radius: 4rpx;
  118. text-align: center;
  119. font-size: 24rpx;
  120. font-family: SFPro-Regular, SFPro;
  121. font-weight: 400;
  122. color: #222222;
  123. margin-bottom: 20rpx;
  124. }
  125. .rightactive {
  126. background-color: rgba(12, 102, 194, 0.1);
  127. color: #0C66C2;
  128. }
  129. }
  130. .item-title {
  131. padding: 30rpx 0 24rpx;
  132. font-size: 36rpx;
  133. font-family: PingFangSC-Medium, PingFang SC;
  134. font-weight: 500;
  135. color: #222222;
  136. }
  137. }
  138. }
  139. .scroll-left {
  140. width: 240rpx;
  141. border-right: 2rpx solid #F0F0F0;
  142. height: 100%;
  143. .left-item {
  144. padding: 26rpx 0;
  145. text:first-child {
  146. width: 4rpx;
  147. height: 32rpx;
  148. }
  149. text:nth-child(2) {
  150. flex: 1;
  151. padding: 0 28rpx;
  152. font-size: 28rpx;
  153. font-family: PingFangSC-Regular, PingFang SC;
  154. font-weight: 400;
  155. color: #333333;
  156. }
  157. text:last-child {
  158. width: 4rpx;
  159. height: 32rpx;
  160. }
  161. }
  162. .leftactive {
  163. text:first-child {
  164. background-color: #0C66C2;
  165. }
  166. text:nth-child(2) {
  167. color: #0C66C2;
  168. font-weight: bold;
  169. }
  170. }
  171. }
  172. }
  173. .zhiwei-search {
  174. border-bottom: 2rpx solid #F0F0F0;
  175. padding: 20rpx 32rpx;
  176. .search-box {
  177. height: 76rpx;
  178. background: #F3F3F3;
  179. border-radius: 16rpx;
  180. padding: 0 24rpx;
  181. .input {
  182. flex: 1;
  183. font-size: 30rpx;
  184. margin-left: 10rpx;
  185. }
  186. }
  187. }
  188. }
  189. </style>