change-hangye.vue 6.7 KB

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