change-hangye1.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <view class="hangye-list u-flex-col">
  3. <view class="hangye-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">
  19. <view class="u-flex u-row-between u-flex-wrap right-list">
  20. <text class="right-text u-line-1" @click="changeright(a)" v-for="(a,b) in rightlist" :key="b">{{a.name}}</text>
  21. </view>
  22. </view>
  23. </scroll-view>
  24. </view>
  25. <!-- <view class="hangye-down">
  26. <view class="u-flex u-row-between hangye-btn">
  27. <text class="text1">重置</text>
  28. <text class="text2">保存</text>
  29. </view>
  30. <view class="safe-area-inset-bottom"></view>
  31. </view> -->
  32. </view>
  33. </template>
  34. <script>
  35. import {get_category_industry} from "@/units/inquire.js"
  36. export default {
  37. data() {
  38. return {
  39. leftindex: 0,
  40. leftlist: [],
  41. rightlist:[],
  42. keyword1: '',
  43. keyword: ''
  44. }
  45. },
  46. onLoad() {
  47. this.getlist()
  48. },
  49. methods: {
  50. changeright(item) {
  51. var arr = []
  52. arr.push({
  53. id: this.leftlist[this.leftindex].id,
  54. name: this.leftlist[this.leftindex].name
  55. })
  56. arr.push({
  57. id: item.id,
  58. name: item.name
  59. })
  60. const eventChannel = this.getOpenerEventChannel();
  61. eventChannel.emit('changehangye', 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. if (item.name.indexOf(this.keyword) > -1) {
  74. this.rightlist.push(item)
  75. }
  76. })
  77. } else {
  78. this.rightlist = this.leftlist[this.leftindex].childlist
  79. }
  80. },
  81. changeleft(index){
  82. this.leftindex = index
  83. this.shaixuan()
  84. },
  85. getlist() {
  86. get_category_industry().then(res => {
  87. console.log(res);
  88. this.leftlist = res.data
  89. this.rightlist = this.leftlist[this.leftindex].childlist
  90. })
  91. }
  92. }
  93. }
  94. </script>
  95. <style lang="scss">
  96. .hangye-list {
  97. height: 100vh;
  98. .hangye-down {
  99. .hangye-btn {
  100. padding: 8rpx 32rpx;
  101. .text1 {
  102. width: 256rpx;
  103. line-height: 84rpx;
  104. background: #F3F3F3;
  105. border-radius: 12rpx;
  106. text-align: center;
  107. font-size: 32rpx;
  108. font-family: PingFangSC-Medium, PingFang SC;
  109. font-weight: 500;
  110. color: #333333;
  111. }
  112. .text2 {
  113. width: 406rpx;
  114. line-height: 84rpx;
  115. background: #0C66C2;
  116. border-radius: 12rpx;
  117. text-align: center;
  118. font-size: 32rpx;
  119. font-family: PingFangSC-Medium, PingFang SC;
  120. font-weight: 500;
  121. color: #FFFFFF;
  122. }
  123. }
  124. }
  125. .scroll-box {
  126. min-height: 1rpx;
  127. .scroll-right {
  128. flex: 1;
  129. min-width: 1rpx;
  130. height: 100%;
  131. padding: 0 32rpx 0 26rpx;
  132. .right-item {
  133. padding: 34rpx 0;
  134. .right-list {
  135. .right-text {
  136. width: 212rpx;
  137. line-height: 72rpx;
  138. background: #F3F3F3;
  139. border-radius: 4rpx;
  140. text-align: center;
  141. font-size: 24rpx;
  142. font-family: SFPro-Regular, SFPro;
  143. font-weight: 400;
  144. color: #222222;
  145. margin-bottom: 20rpx;
  146. }
  147. .rightactive {
  148. background-color: rgba(12, 102, 194, 0.1);
  149. color: #0C66C2;
  150. }
  151. }
  152. .item-title {
  153. padding: 30rpx 0 24rpx;
  154. font-size: 36rpx;
  155. font-family: PingFangSC-Medium, PingFang SC;
  156. font-weight: 500;
  157. color: #222222;
  158. }
  159. }
  160. }
  161. .scroll-left {
  162. width: 240rpx;
  163. border-right: 2rpx solid #F0F0F0;
  164. height: 100%;
  165. .left-item {
  166. padding: 26rpx 0;
  167. text:first-child {
  168. width: 4rpx;
  169. height: 32rpx;
  170. }
  171. text:nth-child(2) {
  172. flex: 1;
  173. padding: 0 28rpx;
  174. font-size: 28rpx;
  175. font-family: PingFangSC-Regular, PingFang SC;
  176. font-weight: 400;
  177. color: #333333;
  178. }
  179. text:last-child {
  180. width: 4rpx;
  181. height: 32rpx;
  182. }
  183. }
  184. .leftactive {
  185. text:first-child {
  186. background-color: #0C66C2;
  187. }
  188. text:nth-child(2) {
  189. color: #0C66C2;
  190. font-weight: bold;
  191. }
  192. }
  193. }
  194. }
  195. .hangye-search {
  196. border-bottom: 2rpx solid #F0F0F0;
  197. padding: 20rpx 32rpx;
  198. .search-box {
  199. height: 76rpx;
  200. background: #F3F3F3;
  201. border-radius: 16rpx;
  202. padding: 0 24rpx;
  203. .input {
  204. flex: 1;
  205. font-size: 30rpx;
  206. margin-left: 10rpx;
  207. }
  208. }
  209. }
  210. }
  211. </style>