change-hangye.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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="change-scroll u-flex">
  10. <text class="chaneg-text">已选({{hangyelist.length}})</text>
  11. <scroll-view scroll-x="true" class="change-right u-flex-1">
  12. <view class="change-right-item u-flex" v-for="(item,index) in hangyelist" :key="index">
  13. <text>{{item.name}}</text>
  14. <image src="@/static/images/del.png" @click="del(index)" mode=""></image>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. <view class="u-flex-1 scroll-box u-flex">
  19. <scroll-view scroll-y="true" class="scroll-left">
  20. <view class="left-item u-flex u-row-between" :class="{leftactive:leftindex == index}" @click="changeleft(index)" v-for="(item,index) in leftlist" :key="index">
  21. <text></text>
  22. <text>{{item.name}}</text>
  23. <text></text>
  24. </view>
  25. </scroll-view>
  26. <scroll-view scroll-y="true" class="scroll-right">
  27. <view class="right-item">
  28. <view class="u-flex u-row-between u-flex-wrap right-list">
  29. <text class="right-text u-line-1" @click="changeright(a)" :class="{rightactive:getright(a)}" v-for="(a,b) in rightlist" :key="b">{{a.name}}</text>
  30. </view>
  31. </view>
  32. </scroll-view>
  33. </view>
  34. <view class="hangye-down">
  35. <view class="u-flex u-row-between hangye-btn">
  36. <text class="text1" @click="hangyelist = []">重置</text>
  37. <text class="text2" @click="save">保存</text>
  38. </view>
  39. <view class="safe-area-inset-bottom"></view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import {get_category_industry} from "@/units/inquire.js"
  45. export default {
  46. data() {
  47. return {
  48. leftindex: 0,
  49. leftlist: [],
  50. rightlist: [],
  51. keyword1: '',
  52. keyword: '',
  53. hangyelist: []
  54. }
  55. },
  56. onLoad() {
  57. this.getlist()
  58. },
  59. methods: {
  60. save(){
  61. if(this.hangyelist.length == 0){
  62. this.$u.toast("请选择行业")
  63. return
  64. }
  65. const eventChannel = this.getOpenerEventChannel();
  66. eventChannel.emit('changehangye', this.hangyelist);
  67. uni.navigateBack()
  68. },
  69. getright(item){
  70. var index = this.hangyelist.findIndex(val => val.id == item.id)
  71. return index > -1 ? true : false
  72. },
  73. del(index){
  74. this.hangyelist.splice(index,1)
  75. },
  76. changeright(item){
  77. var arr = []
  78. arr.push({
  79. id: this.leftlist[this.leftindex].id,
  80. name: this.leftlist[this.leftindex].name
  81. })
  82. arr.push({
  83. id: item.id,
  84. name: item.name
  85. })
  86. var index = this.hangyelist.findIndex(val => val.id == item.id)
  87. if (index > -1) {
  88. this.hangyelist.splice(index, 1)
  89. } else {
  90. this.hangyelist.push({
  91. id: item.id,
  92. name: item.name
  93. })
  94. }
  95. // console.log(arr);
  96. // const eventChannel = this.getOpenerEventChannel();
  97. // eventChannel.emit('changehangye', arr);
  98. // uni.navigateBack()
  99. },
  100. tosearch() {
  101. this.keyword = this.keyword1
  102. this.shaixuan()
  103. },
  104. shaixuan() {
  105. if (this.keyword) {
  106. var rightlist = JSON.parse(JSON.stringify(this.leftlist[this.leftindex].childlist))
  107. this.rightlist = []
  108. rightlist.forEach(item => {
  109. if (item.name.indexOf(this.keyword) > -1) {
  110. this.rightlist.push(item)
  111. }
  112. })
  113. } else {
  114. this.rightlist = this.leftlist[this.leftindex].childlist
  115. }
  116. },
  117. changeleft(index) {
  118. this.leftindex = index
  119. this.shaixuan()
  120. },
  121. getlist() {
  122. get_category_industry().then(res => {
  123. this.leftlist = res.data
  124. this.rightlist = this.leftlist[this.leftindex].childlist
  125. })
  126. }
  127. }
  128. }
  129. </script>
  130. <style lang="scss">
  131. .hangye-list {
  132. height: 100vh;
  133. .change-scroll {
  134. height: 112rpx;
  135. padding: 0 32rpx;
  136. border-bottom: 2rpx solid #F0F0F0;
  137. .change-right {
  138. white-space: nowrap;
  139. min-width: 1rpx;
  140. .change-right-item {
  141. display: inline-flex;
  142. height: 56rpx;
  143. background: rgba(12, 102, 194, 0.1);
  144. border-radius: 6rpx;
  145. margin-right: 20rpx;
  146. padding: 0 20rpx;
  147. image {
  148. width: 20rpx;
  149. height: 20rpx;
  150. }
  151. text {
  152. font-size: 24rpx;
  153. font-family: SFPro-Regular, SFPro;
  154. font-weight: 400;
  155. color: #0C66C2;
  156. margin-right: 12rpx;
  157. }
  158. }
  159. }
  160. .chaneg-text {
  161. width: 132rpx;
  162. font-size: 24rpx;
  163. font-family: PingFangSC-Regular, PingFang SC;
  164. font-weight: 400;
  165. color: #222222;
  166. }
  167. }
  168. .hangye-down {
  169. .hangye-btn {
  170. padding: 8rpx 32rpx;
  171. .text1 {
  172. width: 256rpx;
  173. line-height: 84rpx;
  174. background: #F3F3F3;
  175. border-radius: 12rpx;
  176. text-align: center;
  177. font-size: 32rpx;
  178. font-family: PingFangSC-Medium, PingFang SC;
  179. font-weight: 500;
  180. color: #333333;
  181. }
  182. .text2 {
  183. width: 406rpx;
  184. line-height: 84rpx;
  185. background: #0C66C2;
  186. border-radius: 12rpx;
  187. text-align: center;
  188. font-size: 32rpx;
  189. font-family: PingFangSC-Medium, PingFang SC;
  190. font-weight: 500;
  191. color: #FFFFFF;
  192. }
  193. }
  194. }
  195. .scroll-box {
  196. min-height: 1rpx;
  197. .scroll-right {
  198. flex: 1;
  199. min-width: 1rpx;
  200. height: 100%;
  201. padding: 0 32rpx 0 26rpx;
  202. .right-item {
  203. padding: 34rpx 0;
  204. .right-list {
  205. .right-text {
  206. width: 212rpx;
  207. line-height: 72rpx;
  208. background: #F3F3F3;
  209. border-radius: 4rpx;
  210. text-align: center;
  211. font-size: 24rpx;
  212. font-family: SFPro-Regular, SFPro;
  213. font-weight: 400;
  214. color: #222222;
  215. margin-bottom: 20rpx;
  216. }
  217. .rightactive {
  218. background-color: rgba(12, 102, 194, 0.1);
  219. color: #0C66C2;
  220. }
  221. }
  222. .item-title {
  223. padding: 30rpx 0 24rpx;
  224. font-size: 36rpx;
  225. font-family: PingFangSC-Medium, PingFang SC;
  226. font-weight: 500;
  227. color: #222222;
  228. }
  229. }
  230. }
  231. .scroll-left {
  232. width: 240rpx;
  233. border-right: 2rpx solid #F0F0F0;
  234. height: 100%;
  235. .left-item {
  236. padding: 26rpx 0;
  237. text:first-child {
  238. width: 4rpx;
  239. height: 32rpx;
  240. }
  241. text:nth-child(2) {
  242. flex: 1;
  243. padding: 0 28rpx;
  244. font-size: 28rpx;
  245. font-family: PingFangSC-Regular, PingFang SC;
  246. font-weight: 400;
  247. color: #333333;
  248. }
  249. text:last-child {
  250. width: 4rpx;
  251. height: 32rpx;
  252. }
  253. }
  254. .leftactive {
  255. text:first-child {
  256. background-color: #0C66C2;
  257. }
  258. text:nth-child(2) {
  259. color: #0C66C2;
  260. font-weight: bold;
  261. }
  262. }
  263. }
  264. }
  265. .hangye-search {
  266. border-bottom: 2rpx solid #F0F0F0;
  267. padding: 20rpx 32rpx 0 32rpx;
  268. .search-box {
  269. height: 76rpx;
  270. background: #F3F3F3;
  271. border-radius: 16rpx;
  272. padding: 0 24rpx;
  273. .input {
  274. flex: 1;
  275. font-size: 30rpx;
  276. margin-left: 10rpx;
  277. }
  278. }
  279. }
  280. }
  281. </style>