You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

931 lines
35 KiB

6 months ago
  1. <template>
  2. <div class="show-box" :class="{disabled: disabled, active: isShowList}" :style="style_Container">
  3. <!-- 输入框仅在可输入模式下使用 -->
  4. <input
  5. v-if="showInput" class="input" placeholder-style="color: #bbb;"
  6. type="text" v-model="selectText" :placeholder="placeholder"
  7. @focus="onFocus" @blur="onBlur" @input="onInput" @confirm="$emit('confirm', $event)"
  8. >
  9. <!-- 显示框 -->
  10. <div v-else class="input" :style="input_style" :class="{placeholder: selectText === placeholder}" @click="onUpperClick" >{{selectText}}</div>
  11. <!-- 右侧的小三角图标 -->
  12. <span
  13. @click="onUpperClick"
  14. class="iconfont iconarrowBottom-fill right-arrow"
  15. :class="{isRotate: isRotate}"
  16. ></span>
  17. <!-- 清除按钮图标 -->
  18. <span
  19. v-if="clearable && selectText && selectText != placeholder"
  20. class="right-arrow" @click="onClear"
  21. >
  22. <span class="iconfont iconshanchu1 clear"></span>
  23. </span>
  24. <!-- 列表框 -->
  25. <div class="list-container"
  26. @click.stop="onListClick"
  27. :style="'top:' + listTop__ + 'px;'" v-show="isShowList">
  28. <span class="popper__arrow"></span> <!-- 列表框左上角的空心小三角 -->
  29. <scroll-view
  30. class="list" style="background-color: #fff;"
  31. :style="'max-height: ' + listBoxHeight__ +'em;'"
  32. scroll-y=true scroll-x=true
  33. >
  34. <div
  35. class="item" @click="onClickItem(index, item.value)"
  36. v-for="(item, index) in innerList" :key="index"
  37. :class="{active: activeIndex == index, disabled: item.disabled}"
  38. >
  39. <div>{{item.value}}</div>
  40. </div>
  41. <div v-show="innerList.length==0" class="data-state item">无数据</div>
  42. <!-- <slot></slot> -->
  43. </scroll-view>
  44. </div>
  45. </div>
  46. </template>
  47. <script>
  48. /**
  49. * v1.1.1
  50. * 最后修改: 2019.7.29
  51. * 创建: 2019.6.27
  52. */
  53. import Vue from 'vue';
  54. Vue.__xfl_select = Vue.__xfl_select || new Vue(); // 这个实例专门用来做xfl-select多个实例之间的通信中间站
  55. export default {
  56. name: 'xfl-select',
  57. props: {
  58. list: { // 原始数据
  59. type: Array,
  60. default: function(){
  61. return [];
  62. }
  63. },
  64. focusShowList: null, // 当input获取焦点时,是否自动弹出列表框
  65. initValue: null, // 选择框的初始值
  66. isCanInput: { // 选择框是否可以输入值
  67. type: Boolean,
  68. default: false,
  69. },
  70. selectHideType: { // 本选择框与其它选择框之间的关系
  71. type: String,
  72. default: 'hideAll', // 'independent' - 是独立的,与其它选择框互不影响 'hideAll' - 任何一个选择框展开时,隐藏所有其它选择框
  73. // 'hideOthers'- 当本选择框展开时,隐藏其它的选择框。 当其它选择框展开时,不隐藏本选择框。
  74. // 'hideSelf' - 当本选择框展开时,不隐藏其它的选择框。当其它选择框展开时,隐藏本选择框。
  75. },
  76. placeholder: { // 选择框的placeholder
  77. type: String,
  78. default: '请选择',
  79. },
  80. style_Container: { // 最外层的样式
  81. type: String,
  82. default: ''
  83. },
  84. input_style:{
  85. type: String,//input样式,新增
  86. default: ''
  87. },
  88. disabled: { // 是否禁用整个选择框
  89. type: Boolean,
  90. default: false,
  91. },
  92. showItemNum: { // 显示列表框的窗口高度,数字表示能显示几个列表项
  93. type: Number,
  94. default: 5
  95. },
  96. listShow: { // 是否显示列表框
  97. type: Boolean,
  98. default: false
  99. },
  100. clearable: { // 是否显示右侧的清除按钮
  101. type: Boolean,
  102. default: true
  103. },
  104. },
  105. data() {
  106. return {
  107. isShowList: false, // 是否显示列表框
  108. selectText: '', // 已经选择的内容
  109. activeIndex: -1, // 列表中当前活动的索引号
  110. isRotate: false, // 右侧的小三角是否旋转
  111. listTop__: 50, // 列表框的top位置,在初始时,根据input节点的高度来调整
  112. };
  113. },
  114. // 进行监听的话,在组件外改变这个值,组件内就能响应变化
  115. watch: { // 监听变化 ,注意,初始的值是不会被监听到的,只有在mounted回调中手动赋值
  116. listShow(newVal, oldVal){
  117. this.onDataChange_listShow(newVal, oldVal);
  118. },
  119. },
  120. computed:{
  121. focusShowList__(){ // 是否在输入框获得焦点时,自动弹出列表框
  122. if(this.focusShowList == null ){
  123. // 应该是判断在 pc端还是移动端
  124. // #ifdef H5
  125. return isPC();
  126. // #endif
  127. // #ifndef H5
  128. return false;
  129. // #endif
  130. }else{
  131. return this.focusShowList;
  132. }
  133. },
  134. listBoxHeight__(){ // 列表框的总高度
  135. const itemHeight = 2; // 每个列表项的高度(em), 默认为2个文字高
  136. return this.showItemNum*itemHeight;
  137. },
  138. showInput(){ // 是否显示输入框
  139. return this.isCanInput && !this.disabled;
  140. },
  141. innerList(){ // 转换列表的数据格式
  142. const arr = [], orginArr = this.list;
  143. orginArr.forEach((val, index)=>{
  144. let value = typeof val === 'object' && 'value' in val ? val.value : val;
  145. let isDisabled = typeof val === 'object' && val.disabled == true;
  146. arr.push({
  147. isActive: false,
  148. value: value,
  149. disabled: isDisabled,
  150. });
  151. });
  152. return arr;
  153. },
  154. },
  155. mounted(){
  156. Vue.__xfl_select.$on('open', this.onOtherXflSelectOpen);
  157. this.switchMgr = new Switch(this.onListShow, this.onListHide); // 创建开关对象
  158. this.onDataChange_listShow(this.listShow, null); // 由于 watch 不到初始值,所以需要在这里手动调用一次
  159. this.init(); //进行初始化
  160. },
  161. beforeDestroy(){
  162. Vue.__xfl_select.$off('open', this.onOtherXflSelectOpen);
  163. },
  164. methods: {
  165. onOtherXflSelectOpen(component){ //当本组件的其它实例展开时的回调
  166. if(this.selectHideType === 'independent' || this.selectHideType === 'hideOthers'){
  167. return;
  168. }
  169. component !== this && this.switchMgr.close(100);
  170. },
  171. /************************** 初始化函数 ****************************/
  172. //进行初始化
  173. init(){
  174. this.clearInput(); // 清空输入框中的显示,主要是设置placeholder
  175. this.setInput(this.initValue); // 在输入框中显示初始值
  176. this.changeActiveIndex(this.initValue); // 根据初始值设置列表框中的活动项
  177. this.getInputBoxHeight(); // 初始化列表框的top值
  178. },
  179. // 获取输入框的总高度 px
  180. getInputBoxHeight(){
  181. let component = this;
  182. // #ifdef H5
  183. component = undefined; // 在h5中传入了component反而拿不到数据
  184. // #endif
  185. getNodeInfo('.show-box', component, (data)=>{
  186. if(data){
  187. const trangleHeight = 6; //列表框左上角的小的空心三角形的高度(px)
  188. this.listTop__ = data[0].height + trangleHeight;
  189. }
  190. })
  191. },
  192. /************************** 初始化函数 ****************************/
  193. /************************** 数据 ****************************/
  194. getIndex(value){ // 将值转换为索引
  195. let activeIndex = searchIndex(
  196. this.innerList, value, 'value')
  197. return activeIndex; // 转换失败,则返回-1
  198. },
  199. itemIsDisabled(index){ // 某个列表项是否已经被禁用了
  200. return this.innerList[index].disabled;
  201. },
  202. itemIsActive(index){ // 某个列表项是否是被选中的(活动的)
  203. return index === this.activeIndex;
  204. },
  205. // listShow 这个字段的值变化时的回调
  206. onDataChange_listShow(newVal = false, oldVal){
  207. newVal ? this.switchMgr.open() : this.switchMgr.close(100);
  208. },
  209. /************************** 数据 ****************************/
  210. /************************** “输入框”的操作 ****************************/
  211. // 输入框获得焦点时
  212. onFocus(event){
  213. this.focusShowList__ && this.switchMgr.open();
  214. this.$emit('focus', event);
  215. },
  216. // 输入框失去焦点时
  217. onBlur(event){
  218. // 失去焦点时隐藏,在电脑上很好,但在移动端体验不好,因为会弹出数字键盘,然后隐藏键盘时会失去焦点
  219. this.focusShowList__ && this.switchMgr.close(100);
  220. this.$emit('blur', event);
  221. },
  222. //当显示的不是输入框时,上面的点击事件
  223. onUpperClick(){
  224. if(this.disabled){
  225. return;
  226. }
  227. this.switchMgr.toggle('auto', -1, 100);
  228. this.$emit('input-click');
  229. },
  230. //清空已经选择的内容
  231. onClear(){
  232. this.clearItemActive(); // 清空列表框中的所有活动项
  233. this.clearInput(); // 清空输入框中的显示
  234. this.$emit('clear');
  235. },
  236. // 输入框的值变化时
  237. onInput(event){
  238. const inputVal = event.detail.value;
  239. this.changeActiveIndex(inputVal);
  240. this.$emit('input', event);
  241. },
  242. // 清空input中显示的内容
  243. clearInput(placeholder = null){
  244. this.placeholder = placeholder== null ? this.placeholder : placeholder;
  245. this.selectText = this.showInput ? '' : this.placeholder;
  246. },
  247. // 设置input中显示的内容
  248. setInput(text = null){
  249. if(text == null){
  250. return;
  251. }
  252. this.selectText = text;
  253. },
  254. /************************** “输入框”的操作 ****************************/
  255. /************************** 列表的操作(显示/隐藏/点击) ****************************/
  256. /**
  257. * 传入数字表示索引其它值表示value, 会自动去搜索对应的索引
  258. * 注意
  259. * 1. 如果没有找到对应的索引则什么也不会做
  260. * 2. 如果找到了只会把对应项设置为活动的并不会清除其它的活动项
  261. */
  262. changeActiveIndex(value_index){ //改变列表中的活动项
  263. if(value_index == null){
  264. return;
  265. }
  266. let activeIndex = value_index, value = value_index;
  267. if(typeof value_index !== 'number'){ //认为是值,否则就是索引
  268. activeIndex = this.getIndex(value); // 搜索对应的值所在的索引
  269. }else{
  270. value = this.innerList[activeIndex].value;
  271. }
  272. if(activeIndex > -1){
  273. !this.itemIsActive(activeIndex) && this.setItemActive(activeIndex, value);
  274. }else{
  275. this.clearItemActive();
  276. }
  277. this.setInput(value); // 更改输入框的值
  278. },
  279. clearItemActive(index = -1){ // 设置为不选中
  280. if(index < 0){ // 清空全部
  281. this.activeIndex = -1;
  282. }
  283. },
  284. setItemActive(index, value){ //选中某一项,必须传入索引和对应的值
  285. if(this.itemIsDisabled(index)){
  286. return;
  287. }
  288. this.activeIndex = index;
  289. },
  290. // 整个列表框上的点击事件
  291. onListClick(){
  292. },
  293. onClickItem(index, value){ // 列表项上的点击事件
  294. if( this.itemIsDisabled(index) ){
  295. this.switchMgr.open(); // 点在禁用项上,就不隐藏
  296. return;
  297. }
  298. this.switchMgr.close(100); // 开始隐藏,因为会延迟隐藏,所以可以写在这里
  299. if(this.disabled){ //如果本项被禁用 或 整个列表框被禁用
  300. return;
  301. }
  302. if( !this.itemIsActive(index) ){ //如果点在非选中项上
  303. this.clearItemActive(); // 清空其它的选中的列表项
  304. this.setItemActive(index, value); // 将这一项设置为选中项
  305. this.$emit('change', {newVal: value, oldVal: this.selectText,
  306. index: index, orignItem: this.list[index]});
  307. this.setInput(value); // 更改输入框的值
  308. }
  309. },
  310. onListHide(){ //列表隐藏时的回调
  311. this.isRotate = false;
  312. this.isShowList = false;
  313. this.$emit('visible-change', false);
  314. },
  315. onListShow(){ //列表显示时的回调
  316. this.isShowList = true;
  317. this.isRotate = true;
  318. this.$emit('visible-change', true);
  319. if(this.selectHideType === 'independent' || this.selectHideType === 'hideSelf'){
  320. return;
  321. }
  322. Vue.__xfl_select.$emit('open', this);
  323. }
  324. /************************** 列表的操作(显示/隐藏/点击) ****************************/
  325. }
  326. }
  327. /************************** uniapp libs ****************************/
  328. /**
  329. * 是否是web的移动端
  330. * @public
  331. * @returns {boolean} true表示当前环境是web并且是移动端false表示非web或是pc端
  332. */
  333. function isMobile(){
  334. try{ // 可能不存在window对象
  335. let reg = /iPhone|iPad|iPod|iOS|Android|SymbianOS|Windows Phone|coolpad|mmp|smartphone|midp|wap|xoom|symbian|j2me|blackberry|wince/i;
  336. return reg.test(navigator.userAgent);
  337. }catch(e){
  338. return false;
  339. }
  340. }
  341. /**
  342. * 是否是web的pc端
  343. * @public
  344. * @returns {boolean} true表示当前环境是web并且是pc端false表示非web或是移动端
  345. */
  346. function isPC(){
  347. try{ // 可能不存在window对象
  348. let reg = /iPhone|iPad|iPod|iOS|Android|SymbianOS|Windows Phone|coolpad|mmp|smartphone|midp|wap|xoom|symbian|j2me|blackberry|wince/i;
  349. return !reg.test(navigator.userAgent);
  350. }catch(e){
  351. return false;
  352. }
  353. }
  354. /**
  355. * 获取指定元素的样式
  356. * 注意:
  357. * 1. 必须在使用这个函数的文件中 导入 import Vue from 'vue'
  358. * 2. 自定义组件编译模式默认模式, 必须传入component参数(h5中测试时不管传不传都能正常获取但wx中必须传入才行)
  359. * @public
  360. * @param {Object|string} options - 配置对象如果传入一个字符串则识别为selector
  361. * selector - dom元素的选择器仅支持以下选择器:
  362. * 1. ID选择器'#the-id'
  363. 2. class选择器可以连续指定多个'.a-class.another-class'
  364. 3. 子元素选择器'.the-parent > .the-child'
  365. 4. 后代选择器'.the-ancestor .the-descendant'
  366. 5. 跨自定义组件的后代选择器'.the-ancestor >>> .the-descendant'
  367. 6. 多选择器的并集'#a-node, .some-other-nodes'
  368. 7. 传入 'viewport' 表示获取视口对象有点类似于选中window
  369. * @param {function|component} [callback=null] - 如果传入一个函数则识别为获取到样式后的回调也可以传入一个组件,
  370. 回调的第一个参数如下:
  371. // 获取信息成功时,是对象数组,
  372. // 对象根据options的配置而有不同的字段
  373. {
  374. id: '', // String 节点的 ID, 经测试,这个id并不一定正确(特别是选中多个节点时)
  375. dataset: null, // Object 节点的 dataset
  376. left: 0, // Number 节点的包围盒的左边界坐标(px)(page元素的左上角为坐标原点)
  377. right: 0, // Number 节点的包围盒的右边界坐标(px)
  378. top: 0, // Number 节点的包围盒的上边界坐标(px)
  379. bottom: 0, // Number 节点的包围盒的下边界坐标(px)
  380. width: 0, // Number 节点的宽度(px)
  381. height: 0, // Number 节点的高度(px)
  382. scrollLeft: 0, // Number 节点的水平滚动位置(px)
  383. scrollTop: 0, // Number 节点的竖直滚动位置(px)
  384. context: {} || null, // Object节点对应的Context对象(如VideoContext、CanvasContext、和MapContext)
  385. ... // properties 数组中指定的属性值和computedStyle数组中指定的样式值
  386. }
  387. // 当获取信息失败,则为null
  388. * @param {any} [thisObj=null] 回调中的this, 可能位于第三个参数或第四个参数
  389. * @return {undefined|promise} 当没有callback时则返回promise否则返回undefined
  390. * @example
  391. * 1. 传入选择器返回promise
  392. * getNodeInfo('#aa').then((data)=>{ console.log(data);});
  393. *
  394. * 2. 传入选择器和component, 返回promise
  395. * getNodeInfo('#aa', this).then((data)=>{ console.log(data);});
  396. *
  397. * 3. 传入选择器和callback, 返回undefined
  398. * getNodeInfo('#aa', (data)=>{ console.log(data);});
  399. *
  400. * 4. 传入配置对象和callback, 返回undefined
  401. * getNodeInfo({selector: '#aa', component: this}, (data)=>{ console.log(data);});
  402. */
  403. function getNodeInfo({
  404. selector = 'selector', // 选择器
  405. component = null, // 选择器所在的组件,不传入的话,相当于是在整个当前页面中选择
  406. attemptSpaceTime = 16, // 尝试获取节点信息的时间间隔(ms): 16 24 36 54 81 122 183 275 413
  407. attemptSpaceRate = 1.5, // 时间间隔的增长系数
  408. totalAttemptNum = 8, // 如果获取信息失败,再次进行尝试获的最大次数
  409. // 以下为获取到的结果字段的配置
  410. id = true, // Boolean 是否返回节点 id
  411. dataset = true, // Boolean 是否返回节点 dataset
  412. rect = true, // Boolean 是否返回节点布局位置(left right top bottom)
  413. size = true, // Boolean 是否返回节点尺寸(width height)
  414. scrollOffset = true, //Boolean 是否返回节点的 scrollLeft scrollTop
  415. // 以下三个 仅 App 和微信小程序支持
  416. properties = [], // Array<string> 指定属性名列表,返回节点对应属性名的当前属性值
  417. // 只能获得组件文档中标注的常规属性值,
  418. // id class style 和事件绑定的属性值不可获取
  419. computedStyle = [], //Array<string>指定样式名列表,返回节点对应样式名的当前值
  420. context = true, // Boolean 是否返回节点对应的 Context 对象
  421. } = {}, callback = null, thisObj = null){
  422. // arguments 始终会记录最原始的传进来的参数,而不管这些默认值会怎么转换
  423. // 因为传入一个对象或非字符串会报错,强制转换为字符串
  424. const args = arguments;
  425. selector = typeof args[0] === 'string' ? args[0] : String(selector);
  426. if(typeof args[1] !== 'function'){
  427. component = args[1]; callback = args[2]; thisObj = args[3];
  428. }
  429. !component instanceof Vue && (component = null); //传入非组件对象,会报错
  430. // 不能把 component 字符添加到这个对象上,否则在wx中会报循环引用的错误
  431. const options = { selector, attemptSpaceTime, totalAttemptNum, attemptSpaceRate,
  432. id, dataset, rect, size, scrollOffset, properties, computedStyle, context };
  433. const selectorQuery = uni.createSelectorQuery();
  434. component && selectorQuery.in(component);
  435. const nodesRef = selector === 'viewport' ? selectorQuery.selectViewport() : selectorQuery.selectAll(selector);
  436. nodesRef.fields(options); // 注意,只注册了这一个命令
  437. let result; // 必须把创建promise的代码放在前面,否则在h5端会出现exec先执行完成的情况
  438. if(typeof callback !== 'function'){
  439. result = new Promise(resolve=>callback = resolve);
  440. }
  441. stepRunFunc((next, currNum)=>{
  442. selectorQuery.exec( ([data]) => { // 开始查询页面中的节点
  443. data && data.length === 0 && (data = null);
  444. data || totalAttemptNum <= currNum ? typeof callback === 'function' && callback.call(thisObj, data) : next(attemptSpaceTime);
  445. attemptSpaceTime = Math.round( attemptSpaceTime * attemptSpaceRate );
  446. });
  447. })(); // 立即执行一次
  448. return result;
  449. }
  450. /************************** uniapp libs ****************************/
  451. /************************** js libs ****************************/
  452. /**
  453. * 开关类管理两个状态的切换
  454. * 特点是: 状态的切换可能是延迟进行的
  455. * @class
  456. */
  457. class Switch{
  458. constructor(onopen = null, onclose = null){
  459. this.onopen = onopen; // 打开后的回调
  460. this.onclose = onclose; // 关闭后的回调
  461. this.isOpen = false; // 初始时状态是关闭的
  462. }
  463. toggle(toState = 'auto', ...args){ //切换开关的状态
  464. if( !(toState === 'close' || toState === 'open') ){
  465. toState = this.isOpen ? 'close' : 'open';
  466. }
  467. let delayTime_open, delayTime_close, cancelType_open, cancelType_close;
  468. for(let i=0, arg; i<args.length; i++){
  469. arg = args[i];
  470. switch(typeof arg){
  471. case 'number': delayTime_open == null ? (delayTime_open = arg) : (delayTime_close = arg); break;
  472. case 'string': cancelType_open == null ? (cancelType_open = arg) : (cancelType_close = arg); break;
  473. }
  474. }
  475. const delayTime = toState === 'open' ? delayTime_open : delayTime_close;
  476. const cancelType = toState === 'open' ? cancelType_open : cancelType_close;
  477. this.change(toState, delayTime == null ? -1 : delayTime, cancelType == null ? 'both' : cancelType);
  478. }
  479. open(delayTime = -1, cancelType = 'both'){ // 打开
  480. this.change('open', delayTime, cancelType);
  481. }
  482. close(delayTime = -1, cancelType = 'both'){ // 关闭
  483. this.change('close', delayTime, cancelType);
  484. }
  485. cancel(type = 'both'){ // 取消定时器
  486. if(type === 'open'){
  487. clearTimeout(this.openTimer); this.openTimer = null;
  488. }else if(type === 'close'){
  489. clearTimeout(this.closeTimer); this.closeTimer = null;
  490. }else if(type === 'both'){
  491. clearTimeout(this.closeTimer); this.closeTimer = null;
  492. clearTimeout(this.openTimer); this.openTimer = null;
  493. }
  494. }
  495. change(toState, delayTime = -1, cancelType = 'both' ){ // 改变到指定的状态
  496. this.cancel(cancelType); // 取消定时器
  497. if(this.isOpen && toState === 'open' || !this.isOpen && toState === 'close'){
  498. return;
  499. }
  500. const funcName = 'on' + toState;
  501. if(delayTime < 0){
  502. this.isOpen = toState === 'open';
  503. typeof this[funcName] === 'function' && this[funcName]();
  504. }else{
  505. this[toState + 'Timer'] = setTimeout(()=>{
  506. this.isOpen = toState === 'open';
  507. typeof this[funcName] === 'function' && this[funcName]();
  508. }, delayTime)
  509. }
  510. }
  511. }
  512. /**
  513. * 从一个数组中进行搜索返回一个索引, 主要特点是可以深层搜索
  514. * 依赖: forEach props 这两个函数
  515. * @public
  516. * @param {Array} arr - 要搜索的数组或类数组或普通对象
  517. * @param {any} searchVal - 要搜索的值
  518. * @param {string|Array} [propPath=''] - 要搜索的值的路径 'aa.bb.cc' ['aa', 'bb', 'cc']
  519. * @param {function} [compareFunc=null] - 比较函数 compareFunc(val, searchVal, arrElem, index, orignArr)
  520. * 省略时表示进行全等比较
  521. * @example
  522. * 1. 简单的使用
  523. * searchIndex([1, 2, 3], 2); // => 1
  524. *
  525. * 2. 使用自定义的比较函数
  526. * searchIndex([1, 2, 3], '2', '', (val, searchVal)=>val==searchVal); // => 1
  527. *
  528. * 3. 指定用值的路径
  529. * searchIndex([1, {aa: 3}, {aa: {bb: 3}}, {aa: {bb: 4}], 3, 'aa.bb'); // => 1
  530. */
  531. function searchIndex(arr, searchVal, propPath = '', compareFunc = null){
  532. let result_index= -1;
  533. if(propPath){
  534. if(typeof propPath === 'string'){
  535. propPath = propPath.split(/\s*[\,\.]\s*/);
  536. }else if( !Array.isArray(propPath) ){
  537. propPath = '';
  538. }
  539. }
  540. forEach(arr, (val, index, orignArr)=>{
  541. if(propPath){
  542. val = props(val, propPath);
  543. }
  544. if(
  545. typeof compareFunc === 'function'
  546. ? compareFunc(val, searchVal, arrElem, index, orignArr)
  547. : val === searchVal
  548. ){
  549. result_index = index;
  550. return false;
  551. }
  552. });
  553. return result_index;
  554. }
  555. /**
  556. * 遍历数组或类数组或普通对象
  557. * 跟原生的forEach的差别是: 可以遍历普通对象也可以中途可以退出
  558. * 注意类数组只会遍历其中的数字属性
  559. * @public
  560. * @param {object|Array} obj - 要遍历的对象
  561. * @param {function} func - 回调 func.call(thisObj, value, prop, obj);
  562. * @param {any} [thisObj=null] - 回调中的this
  563. * @example
  564. * 1. forEach({a: 3, b: 4}, (val, prop, obj)=>{ // 遍历普通对象
  565. * return false; //返回false 表示退出循环
  566. * });
  567. *
  568. * 2. forEach([3, 4], (val, index, obj)=>{ // 遍历数组
  569. * return false; //返回false 表示退出循环
  570. * });
  571. *
  572. * 3. forEach({1: 3, 5: 10, a: 'aa', length: 20}, (val, index, obj)=>{ // 遍历类数组
  573. * return false; //返回false 表示退出循环
  574. * });
  575. */
  576. function forEach(obj, func, thisObj = null) {
  577. if (obj == null || typeof obj === 'function' || typeof func !== 'function') {
  578. return obj;
  579. }
  580. //对象自身的(不含继承的)所有可遍历(enumerable)属性
  581. let keys = Object.keys(obj);
  582. const length = obj.length;
  583. const isArrayLike = typeof length == 'number' && length > -1 && length % 1 == 0 && length <= 9007199254740991;
  584. //如果是类数组或数组,只遍历其中的数字属性
  585. if (isArrayLike) {
  586. const reg = /^(?:0|[1-9]\d*)$/,
  587. maxNum = 9007199254740991,
  588. numPropArr = [];
  589. for (let i = 0, val; i < keys.length; i++) {
  590. val = keys[i];
  591. if (reg.test(val) && +val <= maxNum) {
  592. numPropArr.push(val);
  593. }
  594. }
  595. keys = numPropArr;
  596. }
  597. // 开始遍历所有的数字属性
  598. for (let i = 0; i < keys.length; i++) {
  599. if ( func.call(thisObj, obj[keys[i]], keys[i], obj) === false ) { break; }
  600. }
  601. return obj;
  602. }
  603. /**
  604. * 从一个对象上取指定的属性 设置属性的值
  605. * @public
  606. * @param {Object} obj - 对象, 当设置时会更改这个对象
  607. * @param {Array} propArr - 属性名称的数组指出要操作的属性的路径
  608. * @param {any} [val=undefined] - 要设置的值 省略时表示获取否则就是设置
  609. * @param {Boolean} [fource=false] - 在设置时如果不存在对应的属性是否创建
  610. * @returns {any|undefined} 设置时一定返回undefined, 获取时返回对应的值如果不存在则返回undefined
  611. * @example
  612. * 1. props({}, ['aa', 'bb', 'cc'], 5); // => undefined 什么也没做
  613. * 2. props({}, ['aa', 'bb', 'cc'], 5, true); // => undefined 在空对象上创建了多层属性 {aa: {bb: {cc: 5} }}
  614. * 3. props({}, ['aa', 'bb', 'cc']); // => undefined
  615. * 4. props({aa: {bb: 77}}, ['aa', 'bb']); // => 77
  616. * 5. props({aa: 3}, ['aa', 'bb', 'cc'], 5); // => undefined 什么也没做
  617. * 6. props({aa: 3}, ['aa'], 5); // => undefined 设置了 aa 的值为5
  618. * 7. props({aa: 3}, [], 5); // => undefined 什么也没做
  619. */
  620. function props(obj, propArr, val = undefined, fource = false){
  621. for(let i=0, subObj = obj, len = propArr.length, propName; i<len; i++){
  622. if(!subObj || typeof subObj !== 'object'){
  623. return;
  624. }
  625. propName = propArr[i];
  626. if(i === len -1 ){
  627. if(val === undefined){
  628. return subObj[ propName ];
  629. }else{
  630. subObj[ propName ] = val;
  631. }
  632. }else{
  633. if( !(subObj[ propName ] && typeof subObj[ propName ] === 'object') ){
  634. if(fource && val !== undefined){
  635. subObj[ propName ] = {};
  636. }else{
  637. return;
  638. }
  639. }
  640. subObj = subObj[ propName ];
  641. }
  642. }
  643. }
  644. /**
  645. * 分次执行某个函数
  646. * 使用场景: 异步执行某个操作这个操作可能会失败所以当失败时需要再尝试几次直到成功或尝试次数用完
  647. * @public
  648. * @param {function} callback - 要执行的函数 callback.call(thisObj, next, currCount, timers)
  649. * @param {any} [thisObj=null] - callback中的this
  650. * @returns {function} 返回next函数next函数可以传入以下两个参数
  651. * {any} [delayTime=-1] - 延迟多久(ms)再执行下一次callback回调
  652. * 负数NaNInfinite表示立即同步调用其它值表示延迟执行
  653. * {string} [type='both'] - 当调用next时如果其它地方也调用了next并且还没有完成此时该保留哪次调用
  654. * 'new' - 保留本次的清除所有原来的
  655. * 'old' - 保留所有原来的舍弃本次的
  656. * 'both' - 两个都保留
  657. * @example
  658. * 1. 最简单的使用
  659. * stepRunFunc((next, currCount, timers)=>{
  660. * console.log('执行第' + currCount + '次');
  661. * currCount <= 2 && next(2000);
  662. * })();
  663. * // => 会立即执行第一次,然后2s后再执行第二次
  664. *
  665. * 2. next()函数的第二个参数是考虑到用户可能会在短时间内连续调用多次此时应该怎么处理这些next调用之间的关系
  666. * stepRunFunc((next, currCount, timers)=>{
  667. * console.log('执行第' + currCount + '次');
  668. * if(currCount <= 2 ){
  669. * next(3000);
  670. * setTimeout(()=>{next(1000, 'old')}, 1000); // 这一次next调用将不起作用
  671. * }
  672. * })();
  673. * // => 会立即执行第一次,然后3s后再执行第二次
  674. */
  675. function stepRunFunc(callback, thisObj = null){
  676. const getDelayTime = (delayTime)=>{ // 转换delayTime的格式
  677. delayTime = parseInt(delayTime);
  678. if(isNaN(delayTime) || !isFinite(delayTime)){
  679. delayTime = -1;
  680. }
  681. return delayTime;
  682. }
  683. const timers = []; // 记录所有正在执行的计时器
  684. const clearTimer = (oneTimer)=>{ // 清除定时器
  685. if(oneTimer == null){
  686. for(let i=0; i<timers.length; i++){
  687. clearTimeout(timers[i]);
  688. }
  689. timers.length = 0;
  690. }else{
  691. const index = timers.indexOf(oneTimer);
  692. if(index > -1){
  693. clearTimeout(timers[index]);
  694. timers.splice(index, 1);
  695. }
  696. }
  697. }
  698. let currCount = 0; // 记录callback当前已经执行了的次数
  699. const next = function(delayTime = -1, type = 'both'){
  700. if(type === 'new'){ // 如果只保留最新的next回调
  701. clearTimer();
  702. }else if(type === 'old' && timers.length > 0){ // 保留以前的next回调,忽略本次next回调
  703. return;
  704. }
  705. delayTime = getDelayTime(delayTime);
  706. if(delayTime < 0){
  707. callback.call(thisObj, next, ++currCount, timers);
  708. }else{
  709. const oneTimer = setTimeout(()=>{
  710. clearTimer(oneTimer);
  711. callback.call(thisObj, next, ++currCount, timers);
  712. }, delayTime);
  713. timers.push(oneTimer);
  714. }
  715. }
  716. return next;
  717. }
  718. /************************** js libs ****************************/
  719. </script>
  720. <style scoped lang="less">
  721. @normal-color: #606266; //正常情况下的字体颜色
  722. @hover-color: #c0c4cc; //边框的颜色
  723. @active-color: #409eff; //活动的颜色
  724. @mouse-move-color: #f5f7fa; //在列表项上按下时的列表项的背景色
  725. @padding-left: 5%; //两侧的边距
  726. @arrowWidth: 12%; //右边的小三角按钮区域的宽度
  727. .placeholder11{
  728. color: red; top: 10px;
  729. }
  730. .show-box{
  731. &.active{
  732. border-color: @active-color;
  733. }
  734. // &:hover{
  735. // border-color: @normal-color;
  736. // &.active{
  737. // border-color: @active-color;
  738. // }
  739. // }
  740. &.disabled{
  741. background-color: #f0f0f0;
  742. }
  743. text-align: left;
  744. -webkit-appearance: none;
  745. background-color: #fff;
  746. background-image: none;
  747. border-radius: 4px;
  748. border: 1px solid @hover-color;
  749. box-sizing: border-box;
  750. color: @normal-color;
  751. display: inline-block;
  752. font-size: inherit;
  753. height: 2em;
  754. line-height: inherit;
  755. outline: none;
  756. padding: 0 @arrowWidth 0 @padding-left;
  757. transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  758. width: 100%;
  759. position: relative;
  760. // background: #e2f5fc;
  761. .input{
  762. width: 100%; height: 90%; //原来100%
  763. display: flex; align-items: center; justify-content: flex-start;
  764. border: none;
  765. // background: #e2f5fc;//新增
  766. // color: #94afce;//新增
  767. // margin-left: -25upx;//新增
  768. }
  769. .placeholder{
  770. color: #bbb;
  771. }
  772. //*************************** 右侧的小箭头 ***************************
  773. .right-arrow{
  774. &.isRotate{
  775. transform: rotate(180deg);
  776. }
  777. transition: transform .2s cubic-bezier(.645,.045,.355,1);
  778. position: absolute; font-size: 1em; right: 0px; display: flex;
  779. top: 0;
  780. align-items: center; color: @hover-color; height: 100%;
  781. font-weight: 100; width: @arrowWidth; justify-content: center;
  782. }
  783. .clear{
  784. color: #fff; line-height: 1;
  785. background-color: @hover-color; border-radius: 50%; padding: 2px;
  786. }
  787. /****** 列表框部分样式 *****/
  788. .list-container{
  789. position: absolute; width: 100%; left: 0; top: 50px;
  790. box-sizing: border-box; z-index: 100;
  791. //*************************** 弹出框上面的小三角 ***************************
  792. .popper__arrow{
  793. transform: translateX(-400%);
  794. position: absolute;
  795. display: block;
  796. width: 0;
  797. height: 0;
  798. border-color: transparent;
  799. border-style: solid;
  800. border-width: 6px;
  801. filter: drop-shadow(0 2px 12px rgba(0,0,0,.03));
  802. left: 30%;
  803. margin-right: 3px;
  804. border-top-width: 0;
  805. border-bottom-color: #dcdfe6;
  806. top: -5px;
  807. &:after{
  808. content: " ";
  809. border-width: 6px;
  810. position: absolute;
  811. display: block;
  812. width: 0;
  813. height: 0;
  814. border-color: transparent;
  815. border-style: solid;
  816. top: 1px;
  817. margin-left: -6px;
  818. border-top-width: 0;
  819. border-bottom-color: #fff;
  820. }
  821. }
  822. .list{
  823. border-radius: 4px;
  824. border: 1px solid #dcdfe6;
  825. width: 100%;
  826. max-height: 10em;
  827. background-color: #fff;
  828. box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  829. padding: 5px 0;
  830. //*************************** 弹出框中每一项样式 ***************************
  831. .item{
  832. &:hover{
  833. background-color: @mouse-move-color;
  834. &.disabled{
  835. background-color: transparent;
  836. }
  837. }
  838. &.active{
  839. color: @active-color;
  840. font-weight: 500;
  841. background-color: @mouse-move-color;
  842. }
  843. &.disabled{
  844. color: @hover-color;
  845. }
  846. padding: 0 @padding-left;
  847. line-height: 2;
  848. }
  849. .data-state{
  850. color: @hover-color;
  851. }
  852. }
  853. }
  854. }
  855. //************************************** 以下为字体 ****************************************
  856. @font-face {font-family: "iconfont";
  857. src:
  858. url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAM8AAsAAAAAB1gAAALvAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDHAqCEIFsATYCJAMQCwoABCAFhG0HSxthBhEVlKdkPwvsmHgLNqmwEc2pDxvYjI1gkX0f4uFrv9dz3+772RAqQJV8FbKANj5RiB1f1q0ioyorK1THs2Qj0gAJVYn///3mxT27TKyJJ63gD/KkYhr/9woe4ghtLxKJk5AWd7icc+CiJuQLU5SVQ48+ST+l0H2/pM2sm89zOb2VZYHMb1luYy3a0496AWYLKLA9sQ0UaAEFxC2yi7gTF3GaQJtRTbFxcfcIRYYmBeKyjDJQCiFZNrJFaDSszOI11Ep1IQZeRd+P/zAXcip1gmbuHJ/nYeWX9redqtuqPU6AYj4vjHUkNJGJ08bUviQMXtL2m2wJRVHxS/sz/N1+2CZOdizDemP/eBXRgCo7wIKcTvzSUnlmGMoSgt/tChX8EEOBlNvCLsQdpgv8HuNG8wuia9YA1Tfni5TZR1QthTxh8ZM2VCAHtiBtzfWtz1RtObA8IXowr5rzRK4/sRYpfjm1FBA9nrPl/qNAJRZLKJNsUumMKdb3dkIlkqjEtt8VrbNjZgnB48fG1XqNHax98/uI4xs768DFXVceFql2do6594N/t9vl/tw+ZlhKP6ngFjorHQq/AOmpcAlI98L7Pz/KG7P0OqU7+SuqQ7d8OXhYRvZsnLHcTCD4zwpgXfZVyJGzq6byIJiNgyZUaNOGv5ujz885jIPgWkIxOCLYYiRDUkyTmdNErd0CGopltJm1vb5dv3tJ5DDjpYTQ4wMqXT4h6fGZzJwfqA2R/SGlDxGUnsO0o4onyuKUUDLWoDbodPCGuFjE1U9sJispr4r4X6Sxi0IRiZWzD/RIc8wZ56ZkNmAoOLhL56G1ASKFHjWnLXOssmix6UWpDm4nnCJIYqgGlA3oaIFneHMmKp9/Qo2JJVEHqyf9hcio6x0UUjmAfOg9iHUvl4xmjRJjBjBI4IC7NAxZVgBi87Ae0liqHZGIKhluZKD6dH2j+8Jd0AY9MUcVKXLU5I9a6XU7FUcUppMkCss5MAeXmM7a3Q4A') format('woff2'),
  859. url('data:application/x-font-woff;charset=utf-8;base64,d09GMgABAAAAAAM8AAsAAAAAB1gAAALvAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDHAqCEIFsATYCJAMQCwoABCAFhG0HSxthBhEVlKdkPwvsmHgLNqmwEc2pDxvYjI1gkX0f4uFrv9dz3+772RAqQJV8FbKANj5RiB1f1q0ioyorK1THs2Qj0gAJVYn///3mxT27TKyJJ63gD/KkYhr/9woe4ghtLxKJk5AWd7icc+CiJuQLU5SVQ48+ST+l0H2/pM2sm89zOb2VZYHMb1luYy3a0496AWYLKLA9sQ0UaAEFxC2yi7gTF3GaQJtRTbFxcfcIRYYmBeKyjDJQCiFZNrJFaDSszOI11Ep1IQZeRd+P/zAXcip1gmbuHJ/nYeWX9redqtuqPU6AYj4vjHUkNJGJ08bUviQMXtL2m2wJRVHxS/sz/N1+2CZOdizDemP/eBXRgCo7wIKcTvzSUnlmGMoSgt/tChX8EEOBlNvCLsQdpgv8HuNG8wuia9YA1Tfni5TZR1QthTxh8ZM2VCAHtiBtzfWtz1RtObA8IXowr5rzRK4/sRYpfjm1FBA9nrPl/qNAJRZLKJNsUumMKdb3dkIlkqjEtt8VrbNjZgnB48fG1XqNHax98/uI4xs768DFXVceFql2do6594N/t9vl/tw+ZlhKP6ngFjorHQq/AOmpcAlI98L7Pz/KG7P0OqU7+SuqQ7d8OXhYRvZsnLHcTCD4zwpgXfZVyJGzq6byIJiNgyZUaNOGv5ujz885jIPgWkIxOCLYYiRDUkyTmdNErd0CGopltJm1vb5dv3tJ5DDjpYTQ4wMqXT4h6fGZzJwfqA2R/SGlDxGUnsO0o4onyuKUUDLWoDbodPCGuFjE1U9sJispr4r4X6Sxi0IRiZWzD/RIc8wZ56ZkNmAoOLhL56G1ASKFHjWnLXOssmix6UWpDm4nnCJIYqgGlA3oaIFneHMmKp9/Qo2JJVEHqyf9hcio6x0UUjmAfOg9iHUvl4xmjRJjBjBI4IC7NAxZVgBi87Ae0liqHZGIKhluZKD6dH2j+8Jd0AY9MUcVKXLU5I9a6XU7FUcUppMkCss5MAeXmM7a3Q4A') format('woff')
  860. }
  861. .iconfont {
  862. font-family: "iconfont" !important;
  863. font-size: 16px;
  864. font-style: normal;
  865. -webkit-font-smoothing: antialiased;
  866. -moz-osx-font-smoothing: grayscale;
  867. }
  868. .iconshanchu1:before {
  869. content: "\e68c";
  870. }
  871. .icongou:before {
  872. content: "\e786";
  873. }
  874. .iconarrowBottom-fill:before {
  875. content: "\e60e";
  876. }
  877. </style>