Commit 57da2a42 by 无尘

fix: 修改场景人群

parent 90d0cbd1
...@@ -4,10 +4,16 @@ ...@@ -4,10 +4,16 @@
* @Author: 无尘 * @Author: 无尘
* @Date: 2019-12-05 09:56:10 * @Date: 2019-12-05 09:56:10
* @LastEditors: 无尘 * @LastEditors: 无尘
* @LastEditTime: 2020-08-21 10:24:20 * @LastEditTime: 2020-09-04 17:28:42
*/ */
// 防抖 /**
* @description: 防抖
* @param {Function} fn
* @param {Number} delays
* @returns {Function}
* @author: 无尘
*/
export function _debounce(fn, delays) { export function _debounce(fn, delays) {
let delay = delays || 200; let delay = delays || 200;
let timer; let timer;
...@@ -24,7 +30,13 @@ export function _debounce(fn, delays) { ...@@ -24,7 +30,13 @@ export function _debounce(fn, delays) {
}, delay); }, delay);
}; };
} }
// 节流 /**
* @description: 节流
* @param {Function} fn
* @param {Number} intervals
* @returns {Function}
* @author: 无尘
*/
export function _throttle(fn, intervals) { export function _throttle(fn, intervals) {
let last; let last;
let timer; let timer;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* @Author: 无尘 * @Author: 无尘
* @Date: 2020-08-28 10:31:09 * @Date: 2020-08-28 10:31:09
* @LastEditors: 无尘 * @LastEditors: 无尘
* @LastEditTime: 2020-09-04 16:04:50 * @LastEditTime: 2020-09-04 16:18:44
--> -->
<!-- <!--
<sync-crowd-dialog :brand-id="brandId" :total-num="totalNum" @refreshData="refreshData"></sync-crowd-dialog> <sync-crowd-dialog :brand-id="brandId" :total-num="totalNum" @refreshData="refreshData"></sync-crowd-dialog>
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<template> <template>
<el-dialog title="同步场景人群" :visible.sync="dialogVisible" width="726px" :before-close="handleClose"> <el-dialog title="同步场景人群" :visible.sync="dialogVisible" width="726px" :before-close="handleClose">
<div class="sync-tip m-b-20"> <div class="sync-tip m-b-20">
<common-alert-tip :width="'100%'" :tip-content="tipContent"></common-alert-tip> <common-alert-tip :width="'400px'" :tip-content="tipContent"></common-alert-tip>
</div> </div>
<div class="sync-search"> <div class="sync-search">
<div class="flex flex-space-between"> <div class="flex flex-space-between">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment