ueditor.config.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. /**
  2. * ueditor完整配置项
  3. * 可以在这里配置整个编辑器的特性
  4. */
  5. /**************************提示********************************
  6. * 所有被注释的配置项均为UEditor默认值。
  7. * 修改默认配置请首先确保已经完全明确该参数的真实用途。
  8. * 主要有两种修改方案,一种是取消此处注释,然后修改成对应参数;另一种是在实例化编辑器时传入对应参数。
  9. * 当升级编辑器时,可直接使用旧版配置文件替换新版配置文件,不用担心旧版配置文件中因缺少新功能所需的参数而导致脚本报错。
  10. **************************提示********************************/
  11. (function () {
  12. /**
  13. * 编辑器资源文件根路径。它所表示的含义是:以编辑器实例化页面为当前路径,指向编辑器资源文件(即dialog等文件夹)的路径。
  14. * 鉴于很多同学在使用编辑器的时候出现的种种路径问题,此处强烈建议大家使用"相对于网站根目录的相对路径"进行配置。
  15. * "相对于网站根目录的相对路径"也就是以斜杠开头的形如"/myProject/ueditor/"这样的路径。
  16. * 如果站点中有多个不在同一层级的页面需要实例化编辑器,且引用了同一UEditor的时候,此处的URL可能不适用于每个页面的编辑器。
  17. * 因此,UEditor提供了针对不同页面的编辑器可单独配置的根路径,具体来说,在需要实例化编辑器的页面最顶部写上如下代码即可。当然,需要令此处的URL等于对应的配置。
  18. * window.UEDITOR_HOME_URL = "/xxxx/xxxx/";
  19. */
  20. var URL = window.UEDITOR_HOME_URL || (function () {
  21. function PathStack() {
  22. this.documentURL = self.document.URL || self.location.href;
  23. this.separator = '/';
  24. this.separatorPattern = /\\|\//g;
  25. this.currentDir = './';
  26. this.currentDirPattern = /^[.]\/]/;
  27. this.path = this.documentURL;
  28. this.stack = [];
  29. this.push(this.documentURL);
  30. }
  31. PathStack.isParentPath = function (path) {
  32. return path === '..';
  33. };
  34. PathStack.hasProtocol = function (path) {
  35. return !!PathStack.getProtocol(path);
  36. };
  37. PathStack.getProtocol = function (path) {
  38. var protocol = /^[^:]*:\/*/.exec(path);
  39. return protocol ? protocol[0] : null;
  40. };
  41. PathStack.prototype = {
  42. push: function (path) {
  43. this.path = path;
  44. update.call(this);
  45. parse.call(this);
  46. return this;
  47. },
  48. getPath: function () {
  49. return this + "";
  50. },
  51. toString: function () {
  52. return this.protocol + ( this.stack.concat(['']) ).join(this.separator);
  53. }
  54. };
  55. function update() {
  56. var protocol = PathStack.getProtocol(this.path || '');
  57. if (protocol) {
  58. //根协议
  59. this.protocol = protocol;
  60. //local
  61. this.localSeparator = /\\|\//.exec(this.path.replace(protocol, ''))[0];
  62. this.stack = [];
  63. } else {
  64. protocol = /\\|\//.exec(this.path);
  65. protocol && (this.localSeparator = protocol[0]);
  66. }
  67. }
  68. function parse() {
  69. var parsedStack = this.path.replace(this.currentDirPattern, '');
  70. if (PathStack.hasProtocol(this.path)) {
  71. parsedStack = parsedStack.replace(this.protocol, '');
  72. }
  73. parsedStack = parsedStack.split(this.localSeparator);
  74. parsedStack.length = parsedStack.length - 1;
  75. for (var i = 0, tempPath, l = parsedStack.length, root = this.stack; i < l; i++) {
  76. tempPath = parsedStack[i];
  77. if (tempPath) {
  78. if (PathStack.isParentPath(tempPath)) {
  79. root.pop();
  80. } else {
  81. root.push(tempPath);
  82. }
  83. }
  84. }
  85. }
  86. var currentPath = document.getElementsByTagName('script');
  87. currentPath = currentPath[ currentPath.length - 1 ].src;
  88. return new PathStack().push(currentPath) + "";
  89. })();
  90. /**
  91. * 配置项主体。注意,此处所有涉及到路径的配置别遗漏URL变量。
  92. */
  93. window.UEDITOR_CONFIG = {
  94. //为编辑器实例添加一个路径,这个不能被注释
  95. UEDITOR_HOME_URL: URL
  96. //图片上传配置区
  97. , imageUrl: URL_upload //图片上传提交地址
  98. , imagePath: URL_home //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置
  99. //,imageFieldName:"upfile" //图片数据的key,若此处修改,需要在后台对应文件修改对应参数
  100. //,compressSide:0 //等比压缩的基准,确定maxImageSideLength参数的参照对象。0为按照最长边,1为按照宽度,2为按照高度
  101. , maxImageSideLength: 2500 //上传图片最大允许的边长,超过会自动等比缩放,不缩放就设置一个比较大的值,更多设置在image.html中
  102. //涂鸦图片配置区
  103. , scrawlUrl: URL_scrawlUp //涂鸦上传地址
  104. , scrawlPath: URL_home //图片修正地址,同imagePath
  105. //附件上传配置区
  106. , fileUrl: URL_fileUp //附件上传提交地址
  107. , filePath: URL_home //附件修正地址,同imagePath
  108. //,fileFieldName:"upfile" //附件提交的表单名,若此处修改,需要在后台对应文件修改对应参数
  109. //远程抓取配置区
  110. , catchRemoteImageEnable: true //是否开启远程图片抓取,默认开启
  111. , catcherUrl: URL_getRemoteImage //处理远程图片抓取的地址
  112. , catcherPath: URL_home //图片修正地址,同imagePath
  113. //,catchFieldName:"upfile" //提交到后台远程图片uri合集,若此处修改,需要在后台对应文件修改对应参数
  114. //,separater:'ue_separate_ue' //提交至后台的远程图片地址字符串分隔符
  115. //,localDomain:[] //本地顶级域名,当开启远程图片抓取时,除此之外的所有其它域名下的图片都将被抓取到本地,默认不抓取127.0.0.1和localhost
  116. //图片在线管理配置区
  117. , imageManagerUrl: URL_imageManager //图片在线管理的处理地址
  118. , imageManagerPath: URL_home //图片修正地址,同imagePath
  119. //屏幕截图配置区
  120. //,snapscreenHost: location.hostname //屏幕截图的server端文件所在的网站地址或者ip,请不要加http://
  121. //,snapscreenServerUrl: URL +"php/imageUp.php" //屏幕截图的server端保存程序,UEditor的范例代码为“URL +"server/upload/php/snapImgUp.php"”
  122. // ,snapscreenPath: URL + "php/"
  123. //,snapscreenServerPort: location.port //屏幕截图的server端端口
  124. //,snapscreenImgAlign: '' //截图的图片默认的排版方式
  125. //word转存配置区
  126. , wordImageUrl: URL_upload //word转存提交地址
  127. , wordImagePath: URL_home //
  128. //,wordImageFieldName:"upfile" //word转存表单名若此处修改,需要在后台对应文件修改对应参数
  129. //获取视频数据的地址
  130. , getMovieUrl: URL_getMovie //视频数据获取地址
  131. //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的从新定义
  132. , toolbars: [
  133. ['fullscreen', 'source', '|', 'undo', 'redo', '|',
  134. 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
  135. 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
  136. 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
  137. 'directionalityltr', 'directionalityrtl', 'indent', '|',
  138. 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
  139. 'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
  140. 'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'webapp', 'pagebreak', 'template', 'background', '|',
  141. 'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
  142. 'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', '|',
  143. 'print', 'preview', 'searchreplace', 'help']
  144. ]
  145. //当鼠标放在工具栏上时显示的tooltip提示,留空支持自动多语言配置,否则以配置值为准
  146. , labelMap: {
  147. 'anchor': '', 'undo': ''
  148. }
  149. //webAppKey
  150. //百度应用的APIkey,每个站长必须首先去百度官网注册一个key后方能正常使用app功能
  151. , webAppKey: "nF7CUXca5xztsG1vnicM0efe"
  152. //语言配置项,默认是zh-cn。有需要的话也可以使用如下这样的方式来自动多语言切换,当然,前提条件是lang文件夹下存在对应的语言文件:
  153. //lang值也可以通过自动获取 (navigator.language||navigator.browserLanguage ||navigator.userLanguage).toLowerCase()
  154. //,lang:"zh-cn"
  155. //,langPath:URL +"lang/"
  156. //主题配置项,默认是default。有需要的话也可以使用如下这样的方式来自动多主题切换,当然,前提条件是themes文件夹下存在对应的主题文件:
  157. //现有如下皮肤:default
  158. //,theme:'default'
  159. //,themePath:URL +"themes/"
  160. //若实例化编辑器的页面手动修改的domain,此处需要设置为true
  161. //,customDomain:false
  162. //针对getAllHtml方法,会在对应的head标签中增加该编码设置。
  163. //,charset:"utf-8"
  164. //常用配置项目
  165. //,isShow : true //默认显示编辑器
  166. //,initialContent:'欢迎使用ueditor!' //初始化编辑器的内容,也可以通过textarea/script给值,看官网例子
  167. //,initialFrameWidth:1000 //初始化编辑器宽度,默认1000
  168. //,initialFrameHeight:320 //初始化编辑器高度,默认320
  169. //,autoClearinitialContent:true //是否自动清除编辑器初始内容,注意:如果focus属性设置为true,这个也为真,那么编辑器一上来就会触发导致初始化的内容看不到了
  170. //,iframeCssUrl: URL + '/themes/iframe.css' //给编辑器内部引入一个css文件
  171. //,textarea:'editorValue' // 提交表单时,服务器获取编辑器提交内容的所用的参数,多实例时可以给容器name属性,会将name给定的值最为每个实例的键值,不用每次实例化的时候都设置这个值
  172. //,focus:false //初始化时,是否让编辑器获得焦点true或false
  173. //,autoClearEmptyNode : true //getContent时,是否删除空的inlineElement节点(包括嵌套的情况)
  174. //,fullscreen : false //是否开启初始化时即全屏,默认关闭
  175. //,readonly : false //编辑器初始化结束后,编辑区域是否是只读的,默认是false
  176. //,zIndex : 900 //编辑器层级的基数,默认是900
  177. //,imagePopup:true //图片操作的浮层开关,默认打开
  178. //如果自定义,最好给p标签如下的行高,要不输入中文时,会有跳动感
  179. //,initialStyle:'p{line-height:1em}'//编辑器层级的基数,可以用来改变字体等
  180. //,autoSyncData:true //自动同步编辑器要提交的数据
  181. //,emotionLocalization:false //是否开启表情本地化,默认关闭。若要开启请确保emotion文件夹下包含官网提供的images表情文件夹
  182. ,pasteplain:true //是否默认为纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴
  183. //纯文本粘贴模式下的过滤规则
  184. // 'filterTxtRules' : function(){
  185. // function transP(node){
  186. // node.tagName = 'p';
  187. // node.setStyle();
  188. // }
  189. // return {
  190. // //直接删除及其字节点内容
  191. // '-' : 'script style object iframe embed input select',
  192. // 'p': {$:{}},
  193. // 'br':{$:{}},
  194. // 'div':{'$':{}},
  195. // 'li':{'$':{}},
  196. // 'caption':transP,
  197. // 'th':transP,
  198. // 'tr':transP,
  199. // 'h1':transP,'h2':transP,'h3':transP,'h4':transP,'h5':transP,'h6':transP,
  200. // 'td':function(node){
  201. // //没有内容的td直接删掉
  202. // var txt = !!node.innerText();
  203. // if(txt){
  204. // node.parentNode.insertAfter(UE.uNode.createText(' &nbsp; &nbsp;'),node);
  205. // }
  206. // node.parentNode.removeChild(node,node.innerText())
  207. // }
  208. // }
  209. // }()
  210. //,allHtmlEnabled:false //提交到后台的数据是否包含整个html字符串
  211. //iframeUrlMap
  212. //dialog内容的路径 ~会被替换成URL,垓属性一旦打开,将覆盖所有的dialog的默认路径
  213. //,iframeUrlMap:{
  214. // 'anchor':'~/dialogs/anchor/anchor.html',
  215. // }
  216. //insertorderedlist
  217. //有序列表的下拉配置,值留空时支持多语言自动识别,若配置值,则以此值为准
  218. // ,'insertorderedlist':{
  219. // //自定的样式
  220. // 'num':'1,2,3...',
  221. // 'num1':'1),2),3)...',
  222. // 'num2':'(1),(2),(3)...',
  223. // 'cn':'一,二,三....',
  224. // 'cn1':'一),二),三)....',
  225. // 'cn2':'(一),(二),(三)....',
  226. // //系统自带
  227. // 'decimal' : '' , //'1,2,3...'
  228. // 'lower-alpha' : '' , // 'a,b,c...'
  229. // 'lower-roman' : '' , //'i,ii,iii...'
  230. // 'upper-alpha' : '' , lang //'A,B,C'
  231. // 'upper-roman' : '' //'I,II,III...'
  232. // }
  233. //insertunorderedlist
  234. //无序列表的下拉配置,值留空时支持多语言自动识别,若配置值,则以此值为准
  235. //,insertunorderedlist : {
  236. // //自定的样式
  237. // 'dash' :'— 破折号',
  238. // 'dot':' 。 小圆圈'
  239. // //系统自带
  240. // 'circle' : '', // '○ 小圆圈'
  241. // 'disc' : '', // '● 小圆点'
  242. // 'square' : '' //'■ 小方块'
  243. //}
  244. // ,listDefaultPaddingLeft : '30'//默认的左边缩进的基数倍
  245. // ,listiconpath : 'http://bs.baidu.com/listicon/'//自定义标号的路径
  246. // ,maxListLevel : 3 //限制可以tab的级数-1不限制
  247. //fontfamily
  248. //字体设置 label留空支持多语言自动切换,若配置,则以配置值为准
  249. // ,'fontfamily':[
  250. // { label:'',name:'songti',val:'宋体,SimSun'},
  251. // { label:'',name:'kaiti',val:'楷体,楷体_GB2312, SimKai'},
  252. // { label:'',name:'yahei',val:'微软雅黑,Microsoft YaHei'},
  253. // { label:'',name:'heiti',val:'黑体, SimHei'},
  254. // { label:'',name:'lishu',val:'隶书, SimLi'},
  255. // { label:'',name:'andaleMono',val:'andale mono'},
  256. // { label:'',name:'arial',val:'arial, helvetica,sans-serif'},
  257. // { label:'',name:'arialBlack',val:'arial black,avant garde'},
  258. // { label:'',name:'comicSansMs',val:'comic sans ms'},
  259. // { label:'',name:'impact',val:'impact,chicago'},
  260. // { label:'',name:'timesNewRoman',val:'times new roman'}
  261. // ]
  262. //fontsize
  263. //字号
  264. //,'fontsize':[10, 11, 12, 14, 16, 18, 20, 24, 36]
  265. //paragraph
  266. //段落格式 值留空时支持多语言自动识别,若配置,则以配置值为准
  267. //,'paragraph':{'p':'', 'h1':'', 'h2':'', 'h3':'', 'h4':'', 'h5':'', 'h6':''}
  268. //rowspacingtop
  269. //段间距 值和显示的名字相同
  270. //,'rowspacingtop':['5', '10', '15', '20', '25']
  271. //rowspacingBottom
  272. //段间距 值和显示的名字相同
  273. //,'rowspacingbottom':['5', '10', '15', '20', '25']
  274. //lineheight
  275. //行内间距 值和显示的名字相同
  276. //,'lineheight':['1', '1.5','1.75','2', '3', '4', '5']
  277. //customstyle
  278. //自定义样式,不支持国际化,此处配置值即可最后显示值
  279. //block的元素是依据设置段落的逻辑设置的,inline的元素依据BIU的逻辑设置
  280. //尽量使用一些常用的标签
  281. //参数说明
  282. //tag 使用的标签名字
  283. //label 显示的名字也是用来标识不同类型的标识符,注意这个值每个要不同,
  284. //style 添加的样式
  285. //每一个对象就是一个自定义的样式
  286. //,'customstyle':[
  287. // {tag:'h1', name:'tc', label:'', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;text-align:center;margin:0 0 20px 0;'},
  288. // {tag:'h1', name:'tl',label:'', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;margin:0 0 10px 0;'},
  289. // {tag:'span',name:'im', label:'', style:'font-style:italic;font-weight:bold'},
  290. // {tag:'span',name:'hi', label:'', style:'font-style:italic;font-weight:bold;color:rgb(51, 153, 204)'}
  291. // ]
  292. //右键菜单的内容,可以参考plugins/contextmenu.js里边的默认菜单的例子,label留空支持国际化,否则以此配置为准
  293. // ,contextMenu:[
  294. // {
  295. // label:'', //显示的名称
  296. // cmdName:'selectall',//执行的command命令,当点击这个右键菜单时
  297. // //exec可选,有了exec就会在点击时执行这个function,优先级高于cmdName
  298. // exec:function () {
  299. // //this是当前编辑器的实例
  300. // //this.ui._dialogs['inserttableDialog'].open();
  301. // }
  302. // }
  303. // ]
  304. //快捷菜单
  305. //,shortcutMenu:["fontfamily", "fontsize", "bold", "italic", "underline", "forecolor", "backcolor", "insertorderedlist", "insertunorderedlist"]
  306. //
  307. //wordCount
  308. , wordCount: true //是否开启字数统计
  309. , maximumWords: 10000000 //允许的最大字符数
  310. //字数统计提示,{#count}代表当前字数,{#leave}代表还可以输入多少字符数,留空支持多语言自动切换,否则按此配置显示
  311. , wordCountMsg: '当前已输入 {#count} 个字符,您还可以输入{#leave} 个字符' //当前已输入 {#count} 个字符,您还可以输入{#leave} 个字符
  312. //超出字数限制提示 留空支持多语言自动切换,否则按此配置显示
  313. , wordOverFlowMsg: '<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>' //<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>
  314. //highlightcode
  315. // 代码高亮时需要加载的第三方插件的路径
  316. , highlightJsUrl: URL + "third-party/SyntaxHighlighter/shCore.js", highlightCssUrl: URL + "third-party/SyntaxHighlighter/shCoreDefault.css"
  317. //tab
  318. //点击tab键时移动的距离,tabSize倍数,tabNode什么字符做为单位
  319. //,tabSize:4
  320. //,tabNode:'&nbsp;'
  321. //elementPathEnabled
  322. //是否启用元素路径,默认是显示
  323. //,elementPathEnabled : true
  324. //removeFormat
  325. //清除格式时可以删除的标签和属性
  326. //removeForamtTags标签
  327. ,removeFormatTags:'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var'
  328. //removeFormatAttributes属性
  329. ,removeFormatAttributes:'class,style,lang,width,height,align,hspace,valign'
  330. //undo
  331. //可以最多回退的次数,默认20
  332. //,maxUndoCount:20
  333. //当输入的字符数超过该值时,保存一次现场
  334. //,maxInputCount:1
  335. //autoHeightEnabled
  336. // 是否自动长高,默认true
  337. ,autoHeightEnabled:true
  338. //scaleEnabled
  339. //是否可以拉伸长高,默认true(当开启时,自动长高失效)
  340. //,scaleEnabled:false
  341. //,minFrameWidth:800 //编辑器拖动时最小宽度,默认800
  342. //,minFrameHeight:220 //编辑器拖动时最小高度,默认220
  343. //autoFloatEnabled
  344. //是否保持toolbar的位置不动,默认true
  345. //,autoFloatEnabled:true
  346. //浮动时工具栏距离浏览器顶部的高度,用于某些具有固定头部的页面
  347. //,topOffset:30
  348. //编辑器底部距离工具栏高度(如果参数大于等于编辑器高度,则设置无效)
  349. //,toolbarTopOffset:400
  350. //indentValue
  351. //首行缩进距离,默认是2em
  352. ,indentValue:'0em'
  353. //pageBreakTag
  354. //分页标识符,默认是_ueditor_page_break_tag_
  355. //,pageBreakTag:'_ueditor_page_break_tag_'
  356. //sourceEditor
  357. //源码的查看方式,codemirror 是代码高亮,textarea是文本框,默认是codemirror
  358. //注意默认codemirror只能在ie8+和非ie中使用
  359. //,sourceEditor:"codemirror"
  360. //如果sourceEditor是codemirror,还用配置一下两个参数
  361. //codeMirrorJsUrl js加载的路径,默认是 URL + "third-party/codemirror/codemirror.js"
  362. //,codeMirrorJsUrl:URL + "third-party/codemirror/codemirror.js"
  363. //codeMirrorCssUrl css加载的路径,默认是 URL + "third-party/codemirror/codemirror.css"
  364. //,codeMirrorCssUrl:URL + "third-party/codemirror/codemirror.css"
  365. //编辑器初始化完成后是否进入源码模式,默认为否。
  366. //,sourceEditorFirst:false
  367. //autotypeset
  368. // //自动排版参数
  369. ,autotypeset:{
  370. mergeEmptyline : true, //合并空行
  371. removeClass : true, //去掉冗余的class
  372. removeEmptyline : false, //去掉空行
  373. textAlign : "left" , //段落的排版方式,可以是 left,right,center,justify 去掉这个属性表示不执行排版
  374. imageBlockLine : 'center', //图片的浮动方式,独占一行剧中,左右浮动,默认: center,left,right,none 去掉这个属性表示不执行排版
  375. pasteFilter : false, //根据规则过滤没事粘贴进来的内容
  376. clearFontSize : false, //去掉所有的内嵌字号,使用编辑器默认的字号
  377. clearFontFamily : false, //去掉所有的内嵌字体,使用编辑器默认的字体
  378. removeEmptyNode : false , // 去掉空节点
  379. //可以去掉的标签
  380. removeTagNames : {"font":1},
  381. indent : false, // 行首缩进
  382. indentValue : '0em' //行首缩进的大小
  383. }
  384. //填写过滤规则
  385. //filterRules : {}
  386. };
  387. })();