Mr.J--JS事件监听(捕获&冒泡)

本文详细介绍了JavaScript中的事件监听,包括addEventListener的使用、移除事件监听的removeEventListener方法,以及事件捕获和冒泡的概念。通过实例展示了事件在DOM中的传播过程,解释了事件捕获先于冒泡执行的机制,并讨论了如何取消事件冒泡。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

目录

addEventListener

取消绑定事件

removeEventListener

事件捕获&冒泡

事件冒泡

事件捕获

事件捕获和事件冒泡同时存在

1.捕获在前

2.冒泡在前

注意

取消事件冒泡


addEventListener

在复杂的项目开发中,javascript和html的解耦变得至关重要,我们被推荐使用事件动态绑定的方式来处理按钮的事件。W3C为我们提供了addEventListener()函数用来为指定的dom元素动态绑定事件。这个函数有三个参数:
type:用来设置时间类型,例如click
listener:用来设置监听事件的函数,及type类型的事件发生后执行的函数

大部分情况下,确切的说是我们绑定事件的元素的父元素和子元素都不存在操作类型相同的触发事件时,前两个参数就可以满足我们为按钮绑定事件的需求。
比如:

function sayHello() {
    console.log("hello");
}

var myDiv = document.getElementById("myDiv");
myDiv.addEventListener("click", sayHello);

这样我们点击id为myDiv的元素时,控制台就会输出"Hello"。

通过上面代码可以看到对于addEventListener方法的第一个参数,可以是:click,mouseover,mouseout诸如此类的。于是改写addEventListener方法如下:

function addEvent(elem,type,handle){
			if(elem.addEventListener){
				elem.addEventListener(type,handle,false);
			}else if(elem.attachEvent){
				elem.attachEvent('on'+type,function(){
					handle.call(elem);
				})
			}else{
				elem['on' + type] = handle;
			}
		}

取消绑定事件

removeEventListener

var div = document.getElementsByTagName('div')[0];
div.onclick = function(){
			console.log('处理事件');
			this.onclick = null;			//点击一次之后失效
		}

div.removeEventListener('click',test,false);

  对于removeEventListener方法:element.removeEventListener(eventfunctionuseCapture)

function不能使用匿名函数!!!

事件捕获&冒泡

在javascript里,事件委托是很重要的一个东西,事件委托依靠的就是事件冒泡和捕获的机制。DOM(文档对象模型)结构是一个树型结构,当一个HTML元素产生一个事件时,该事件会在元素节点与根结点之间的路径传播,路径所经过的结点都会收到该事件,这个传播过程可称为DOM事件流。

事件冒泡

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8"&g
&lt;!DOCTYPE html&gt; &lt;html lang=&quot;zh-CN&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;UTF-8&quot;&gt; &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt; &lt;title&gt;关爱展厅&lt;/title&gt; &lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt; &lt;link href=&quot;https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot;&gt; &lt;style&gt; body { background: #0f172a; min-height: 100vh; display: flex; justify-content: center; align-items: center; font-family: &#39;Inter&#39;, sans-serif; overflow: hidden; } .gallery-container { perspective: 1000px; width: 100%; height: 100vh; display: flex; justify-content: center; align-items: center; } .carousel { position: relative; width: 300px; height: 400px; transform-style: preserve-3d; /* 使用更平滑的过渡函数 */ transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); } .carousel-item { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* 使用will-change优化性能 */ will-change: transform, box-shadow; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer; z-index: 5; } .carousel-item:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); transform: translateZ(calc(400px + 10px)); /* 悬停时向前移动 */ } .carousel-item:active { transform: translateZ(calc(400px)) scale(0.98); transition-duration: 0.2s; } .carousel-item img { width: 100%; height: 100%; object-fit: cover; /* 使用will-change优化性能 */ will-change: transform; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); } .carousel-item:hover img { transform: scale(1.05); } .carousel-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); transform: translateY(20px); opacity: 0; /* 使用will-change优化性能 */ will-change: transform, opacity; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1); z-index: 10; } .carousel-item:hover .carousel-info { transform: translateY(0); opacity: 1; } .carousel-title { font-size: 1.5rem; font-weight: bold; margin-bottom: 5px; color: white; } .carousel-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); } .controls { position: fixed; bottom: 50px; left: 50%; transform: translateX(-50%); display: flex; gap: 20px; z-index: 20; } .control-btn { background: rgba(255, 255, 255, 0.1); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; /* 使用will-change优化性能 */ will-change: background; transition: background 0.3s ease; } .control-btn:hover { background: rgba(255, 255, 255, 0.2); } #activityBtn { position: fixed; top: 20px; right: 20px; background: rgba(255, 255, 255, 0.1); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; /* 使用will-change优化性能 */ will-change: background; transition: background 0.3s ease; z-index: 20; } #activityBtn:hover { background: rgba(255, 255, 255, 0.2); } #activityModal { display: none; position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.7); /* 使用will-change优化性能 */ will-change: opacity; transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1); } .modal-content { background-color: #1e293b; margin: 10% auto; padding: 20px; border-radius: 10px; width: 80%; max-width: 600px; color: white; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* 使用will-change优化性能 */ will-change: transform, opacity; transform: translateY(20px); opacity: 0; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1); } .modal-open .modal-content { transform: translateY(0); opacity: 1; } .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; /* 使用will-change优化性能 */ will-change: color; transition: color 0.3s ease; } .close:hover, .close:focus { color: white; text-decoration: none; cursor: pointer; } .activity-list { margin-top: 20px; } .activity-item { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 使用will-change优化性能 */ will-change: background; transition: background 0.2s ease; } .activity-item:hover { background: rgba(255, 255, 255, 0.03); } .activity-item:last-child { border-bottom: none; } .activity-date { font-weight: bold; color: #94a3b8; } @media (max-width: 600px) { .carousel { width: 250px; height: 350px; } .modal-content { width: 90%; margin: 5% auto; } #activityBtn { top: 10px; right: 10px; padding: 8px 15px; font-size: 0.9rem; } } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class=&quot;gallery-container&quot;&gt; &lt;div id=&quot;carousel&quot; class=&quot;carousel&quot;&gt; &lt;!-- 图片将通过JS动态添加 --&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class=&quot;controls&quot;&gt; &lt;button id=&quot;prevBtn&quot; class=&quot;control-btn&quot;&gt; &lt;i class=&quot;fa fa-arrow-left mr-2&quot;&gt;&lt;/i&gt;上一张 &lt;/button&gt; &lt;button id=&quot;nextBtn&quot; class=&quot;control-btn&quot;&gt; 下一张&lt;i class=&quot;fa fa-arrow-right ml-2&quot;&gt;&lt;/i&gt; &lt;/button&gt; &lt;/div&gt; &lt;button id=&quot;activityBtn&quot; class=&quot;control-btn&quot;&gt; &lt;i class=&quot;fa fa-calendar mr-2&quot;&gt;&lt;/i&gt;活动清单 &lt;/button&gt; &lt;div id=&quot;activityModal&quot; class=&quot;modal&quot;&gt; &lt;div class=&quot;modal-content&quot;&gt; &lt;span class=&quot;close&quot;&gt;&times;&lt;/span&gt; &lt;h2 class=&quot;text-xl font-bold mb-4&quot;&gt;7月活动清单&lt;/h2&gt; &lt;div class=&quot;activity-list&quot;&gt; &lt;!-- 活动列表将通过JS动态生成 --&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;script&gt; document.addEventListener(&#39;DOMContentLoaded&#39;, () =&gt; { const carousel = document.getElementById(&#39;carousel&#39;); const prevBtn = document.getElementById(&#39;prevBtn&#39;); const nextBtn = document.getElementById(&#39;nextBtn&#39;); const activityBtn = document.getElementById(&#39;activityBtn&#39;); const activityModal = document.getElementById(&#39;activityModal&#39;); const closeBtn = document.querySelector(&#39;.close&#39;); const itemsCount = 5; // 更新为5个项目 const radius = 400; let currentAngle = 0; const angleStep = 360 / itemsCount; // 重新计算角度步长 // 优化后的主题数据,添加了&quot;新员工融入&quot;&quot;任务分派&quot; const communicationRecords = [ { id: 1001, title: &quot;员工生病探望&quot;, participants: [&quot;人力资源部: 王经理&quot;, &quot;部门主管: 张主管&quot;], content: &quot;前往医院探望生病住院的员工,带去公司关怀慰问品,了解康复情况并协调工作安排。&quot;, time: &quot;2023-06-15&quot;, location: &quot;市中心医院&quot;, followUp: &quot;人力资源部持续跟进员工康复进度,部门安排同事临时接手相关工作。&quot;, topic: &quot;生病看望&quot;, imageId: 1005 // 医疗相关图片 }, { id: 1003, title: &quot;6月员工生日会&quot;, participants: [&quot;行政部: 刘主管&quot;, &quot;6月寿星: 全体成员&quot;], content: &quot;举办6月员工生日会,庆祝员工生日,分享蛋糕礼物,增强团队凝聚力。&quot;, time: &quot;2023-06-25&quot;, location: &quot;公司会议室&quot;, followUp: &quot;行政部收集员工反馈,持续优化生日关怀活动形式。&quot;, topic: &quot;生日关怀&quot;, imageId: 1003 // 庆祝相关图片 }, { id: 1004, title: &quot;端午节福利发放&quot;, participants: [&quot;行政部: 全体成员&quot;, &quot;各部门代表&quot;], content: &quot;为全体员工发放端午节福利,包括粽子、咸鸭蛋等传统节日礼品,表达节日问候。&quot;, time: &quot;2023-06-22&quot;, location: &quot;公司大厅&quot;, followUp: &quot;行政部持续关注员工福利需求,准备其他节日福利方案。&quot;, topic: &quot;节日福利&quot;, imageId: 1004 // 食物相关图片 }, { id: 1005, title: &quot;新员工入职欢迎会&quot;, participants: [&quot;人力资源部: 李主管&quot;, &quot;新员工: 张明、王芳&quot;, &quot;部门同事代表&quot;], content: &quot;为新员工举办入职欢迎会,介绍公司文化、规章制度,帮助新员工快速融入团队。&quot;, time: &quot;2023-06-30&quot;, location: &quot;公司培训室&quot;, followUp: &quot;各部门安排导师指导新员工,定期跟进新员工适应情况。&quot;, topic: &quot;新员工融入&quot;, imageId: 1006 // 团队合作相关图片 }, { id: 1006, title: &quot;项目任务分派会议&quot;, participants: [&quot;项目经理: 赵经理&quot;, &quot;开发团队: 全体成员&quot;, &quot;测试团队: 负责人&quot;], content: &quot;召开项目任务分派会议,明确各成员职责任务,制定项目计划时间节点。&quot;, time: &quot;2023-07-05&quot;, location: &quot;公司会议室B&quot;, followUp: &quot;定期召开项目进度会议,及时解决遇到的问题,确保项目顺利进行。&quot;, topic: &quot;任务分派&quot;, imageId: 1008 // 商务会议相关图片 } ]; // 更新活动列表,添加新员工融入任务分派相关活动 const currentMonthActivities = [ { date: &quot;2023-07-05&quot;, title: &quot;新一期员工入职培训&quot;, type: &quot;培训&quot;, location: &quot;公司培训室&quot;, participants: &quot;人力资源部、新入职员工&quot; }, { date: &quot;2023-07-10&quot;, title: &quot;员工户外拓展训练&quot;, type: &quot;团队活动&quot;, location: &quot;城市郊外拓展基地&quot;, participants: &quot;全体员工&quot; }, { date: &quot;2023-07-15&quot;, title: &quot;客户满意度调研分析&quot;, type: &quot;分析会&quot;, location: &quot;公司会议室A&quot;, participants: &quot;市场部、客服部&quot; }, { date: &quot;2023-07-20&quot;, title: &quot;第三季度项目任务分派&quot;, type: &quot;任务分配&quot;, location: &quot;公司大会议室&quot;, participants: &quot;各部门负责人、项目团队&quot; }, { date: &quot;2023-07-25&quot;, title: &quot;产品创新头脑风暴&quot;, type: &quot;研讨会&quot;, location: &quot;公司创意空间&quot;, participants: &quot;产品部、研发部、设计部&quot; } ]; function createCarouselItems() { for (let i = 0; i &lt; itemsCount; i++) { const angle = (i * angleStep) * (Math.PI / 180); const item = document.createElement(&#39;div&#39;); item.className = &#39;carousel-item&#39;; item.style.transform = `rotateY(${i * angleStep}deg) translateZ(${radius}px)`; item.dataset.index = i; item.dataset.topic = communicationRecords[i].topic; const img = document.createElement(&#39;img&#39;); img.src = `https://picsum.photos/id/${communicationRecords[i].imageId}/600/800`; img.alt = communicationRecords[i].title; const info = document.createElement(&#39;div&#39;); info.className = &#39;carousel-info&#39;; const title = document.createElement(&#39;h3&#39;); title.className = &#39;carousel-title&#39;; title.textContent = communicationRecords[i].title; const desc = document.createElement(&#39;p&#39;); desc.className = &#39;carousel-desc&#39;; desc.textContent = communicationRecords[i].participants.join(&#39;、&#39;); info.appendChild(title); info.appendChild(desc); item.appendChild(img); item.appendChild(info); carousel.appendChild(item); item.addEventListener(&#39;click&#39;, () =&gt; { const topic = encodeURIComponent(communicationRecords[i].topic); console.log(`跳转到主题: ${topic}`); item.style.transform = `rotateY(${i * angleStep}deg) translateZ(${radius - 10}px) scale(0.98)`; setTimeout(() =&gt; { item.style.transform = `rotateY(${i * angleStep}deg) translateZ(${radius}px)`; // 注意:这里使用了相对路径,实际使用时请根据你的项目结构调整 window.location.href = `./photo-wall.html?topic=${topic}`; }, 150); }); } } function createActivityList() { const activityList = document.querySelector(&#39;.activity-list&#39;); activityList.innerHTML = &#39;&#39;; currentMonthActivities.forEach(activity =&gt; { const activityItem = document.createElement(&#39;div&#39;); activityItem.className = &#39;activity-item&#39;; const dateElement = document.createElement(&#39;div&#39;); dateElement.className = &#39;activity-date&#39;; dateElement.textContent = activity.date; const titleElement = document.createElement(&#39;h3&#39;); titleElement.className = &#39;text-lg font-semibold mt-1&#39;; titleElement.textContent = activity.title; const typeElement = document.createElement(&#39;div&#39;); typeElement.className = &#39;text-sm text-blue-400 mt-1&#39;; typeElement.textContent = activity.type; const locationElement = document.createElement(&#39;div&#39;); locationElement.className = &#39;text-sm text-gray-300 mt-1&#39;; locationElement.innerHTML = `&lt;i class=&quot;fa fa-map-marker mr-1&quot;&gt;&lt;/i&gt; ${activity.location}`; const participantsElement = document.createElement(&#39;div&#39;); participantsElement.className = &#39;text-sm text-gray-300 mt-1&#39;; participantsElement.innerHTML = `&lt;i class=&quot;fa fa-users mr-1&quot;&gt;&lt;/i&gt; ${activity.participants}`; activityItem.appendChild(dateElement); activityItem.appendChild(titleElement); activityItem.appendChild(typeElement); activityItem.appendChild(locationElement); activityItem.appendChild(participantsElement); activityList.appendChild(activityItem); }); } function rotateCarousel(angle) { // 使用requestAnimationFrame优化动画性能 requestAnimationFrame(() =&gt; { carousel.style.transform = `rotateY(${angle}deg)`; }); } prevBtn.addEventListener(&#39;click&#39;, () =&gt; { currentAngle += angleStep; rotateCarousel(currentAngle); }); nextBtn.addEventListener(&#39;click&#39;, () =&gt; { currentAngle -= angleStep; rotateCarousel(currentAngle); }); let isDragging = false; let startX, startRotation; let lastAnimationFrameId = null; document.addEventListener(&#39;mousedown&#39;, (e) =&gt; { if (!e.target.closest(&#39;.carousel-item&#39;)) { isDragging = true; startX = e.clientX; startRotation = currentAngle; document.body.style.cursor = &#39;grabbing&#39;; // 防止拖动时选择文本 document.body.style.userSelect = &#39;none&#39;; } }); document.addEventListener(&#39;mousemove&#39;, (e) =&gt; { if (!isDragging) return; const diffX = e.clientX - startX; const newAngle = startRotation - diffX * 0.5; // 使用requestAnimationFrame优化性能 if (lastAnimationFrameId) { cancelAnimationFrame(lastAnimationFrameId); } lastAnimationFrameId = requestAnimationFrame(() =&gt; { currentAngle = newAngle; rotateCarousel(currentAngle); }); }); document.addEventListener(&#39;mouseup&#39;, () =&gt; { if (isDragging) { isDragging = false; document.body.style.cursor = &#39;default&#39;; document.body.style.userSelect = &#39;&#39;; if (lastAnimationFrameId) { cancelAnimationFrame(lastAnimationFrameId); } } }); activityBtn.addEventListener(&#39;click&#39;, () =&gt; { createActivityList(); activityModal.style.display = &#39;block&#39;; // 添加延迟以确保过渡效果生效 setTimeout(() =&gt; { activityModal.classList.add(&#39;modal-open&#39;); }, 10); }); closeBtn.addEventListener(&#39;click&#39;, () =&gt; { activityModal.classList.remove(&#39;modal-open&#39;); // 等待过渡完成后隐藏模态框 setTimeout(() =&gt; { activityModal.style.display = &#39;none&#39;; }, 500); }); window.addEventListener(&#39;click&#39;, (e) =&gt; { if (e.target === activityModal) { activityModal.classList.remove(&#39;modal-open&#39;); // 等待过渡完成后隐藏模态框 setTimeout(() =&gt; { activityModal.style.display = &#39;none&#39;; }, 500); } }); createCarouselItems(); rotateCarousel(currentAngle); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; 上述代码中&ldquo;项目任务分派会议&rdquo;&ldquo;6月员工生日会&rdquo;这两个模块的冒泡事件异常,其他模块是正常的
07-11
&lt;div class=&quot;next-virtual-tree-container&quot;&gt;&lt;div class=&quot;next-virtual-list-wrapper&quot; style=&quot;position: relative; height: 1092px;&quot;&gt;&lt;div style=&quot;transform: translate(0px, 0px);&quot;&gt;&lt;ul role=&quot;tree&quot; aria-multiselectable=&quot;false&quot; class=&quot;next-tree next-label-block next-node-indent mr-change-file-tree&quot;&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_f327158de5da6cc3ccb8bf1e6efb8439ec18a473&quot; level=&quot;1&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;true&quot; aria-level=&quot;1&quot; aria-posinset=&quot;1&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;0&quot;&gt;&lt;span class=&quot;next-tree-switcher next-noline&quot;&gt;&lt;i class=&quot;next-icon next-icon-arrow-down next-medium next-tree-switcher-icon next-tree-fold-icon&quot;&gt;&lt;/i&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot; data-spm-anchor-id=&quot;a2cl9.codeup_devops2020_goldlog_projectCodeReviewDetail.0.i0.1a4b2f95Riq47i&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;i class=&quot;teamix-icon teamix-icon-folder-line teamix-medium&quot; style=&quot;color: var(--color-text1-2, #6e6e6e);&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-folder-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;develop/api&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_645502b1c12dbd3e90161f42b35ac4842b2f1bc0&quot; level=&quot;2&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;true&quot; aria-level=&quot;2&quot; aria-posinset=&quot;2&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noline&quot;&gt;&lt;i class=&quot;next-icon next-icon-arrow-down next-medium next-tree-switcher-icon next-tree-fold-icon&quot;&gt;&lt;/i&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;i class=&quot;teamix-icon teamix-icon-folder-line teamix-medium&quot; style=&quot;color: var(--color-text1-2, #6e6e6e);&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-folder-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cc&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_26795b2da1ced4325633e17429a14a6d65b37997&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;3&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;agenda.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 79&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 47&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_2bf30c75cda26b6da9a01bb778c3f18caff120b7&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;4&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;bot-asr.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 3&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_5415bbf49cd2dce85711212f52e33e311f53396b&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;5&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cache.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 7&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 8&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_2244b0780bfca45f4c922db59e053b3883112722&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;true&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;6&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner next-selected&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content selected read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;call.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 225&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 24&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_c0db26d547a3e13a3e725335a3810f5427c6041f&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;7&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cdr-ib.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 5&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_36daf1c4dc152afacb2964a0a4d980cbfeac4190&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;8&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cdr-new-ib.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 45&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 19&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_622909527d2dc809366984c977e94ccd65d5bce3&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;9&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cdr-new-ob.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 2&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_2a6ecd488c46a3b580371de33343d8cfde3a411f&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;10&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cdr-ob.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 1&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 4&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_b2f2e0948f378d82249b208abc74336d186b9015&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;11&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;cdr-webcall.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 10&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 5&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_c96ea8e19e39822d6b93792b6a1eca351192c195&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;12&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;cloud-number.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 57&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 17&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_9f0f11e837f94eae5e698e87f4007496a028b790&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;13&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;comment.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 1&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_de8eed9622827c92e2bef5b723b34973853f5d1e&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;14&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;config-client.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 299&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 79&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_70db9dfa2724ee83041e57034e35866fd984f490&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;15&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;config-enterprise-pause.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 38&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 16&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_06f31b7e5b2206a07381e9a4514e1ee7360dd606&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;16&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;config-exten.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 153&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 43&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_8668a164f3b579c32e2ff437e29a2d9b9e7facab&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;17&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;config-global.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 12&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_02ee093280570525c4acdbfe1cb0638cbc01854e&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;18&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;config-ivr.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 2&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 6&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_262552720b3a25db9c10d0cb5ac1bf5917a4fbde&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;19&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;config-number.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 70&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 41&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_b6eaed69a33cbb7bcc82256fbbf6fe8fb99d61f2&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;20&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;config-queue.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 135&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 52&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_e153e556cf95e0de8a4dc3c6b4dd5c771766c76c&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;21&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;config-restrict-tel.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 63&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 29&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_7b76e5a55474a067b0a786da41180f97dc45fb7f&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;22&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;enterprise-info.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 12&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_3b2284d33f54f511379b41f9ff4b798a4aa1ac69&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;23&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;intelligent.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 2&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_42245dcf3431cbc07b41363fe72e1b4b72b39521&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;24&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;investigation.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 8&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 7&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_2b79fcb8c33ac0fd04019d6ddc898a0cfa489836&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;25&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;ivr-script.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 2&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_7aeb796e6c100399330afc26c134f13a6ab83255&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;26&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;log.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 17&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 8&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_d2f1e29c432a686aa88c4cb1fb143d5d4318693d&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;27&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;manage.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 101&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 21&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_5e970457d3b2936ae361e83bf05ab5ff9d2fefe2&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;28&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;monitor.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 44&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 28&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_d93cc6a762355686be58a79adb0678a8da962e60&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;29&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;record.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 1&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_71af7fbc40f41108388d6bad45a6d27f6b8b095c&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;30&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;report.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 225&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 119&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_00e44423e8a5374da656f4c501c5a95c417fc545&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;31&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;sms.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 119&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 54&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_e48fa19c604cb18d50fbd8c024fc8fee1ded3c33&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;32&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;sqc-asr.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 34&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 11&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_6ac9e8260de70a8375bf2d7aee6939aecb8743ca&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;33&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;sso-login.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 1&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_00b07295c64dbd5376df8d02bda47da65b4e8cc9&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;34&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title teamix-title-tooltip-trigger&quot;&gt;&lt;span&gt;task-property.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 10&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_dffb54a48011883825c29fdcd90af450763763f9&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;35&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;voice-mail.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 9&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_8ad845fdbb2305336e6609d2f303542ebe2c245f&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;36&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;wm_rtc.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 38&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 13&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_2d82ef1179abafdcd48e7f68df961e01b7166451&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;37&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content read&quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;ws-login.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 12&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 3&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_8acab7cec62a3e33f169fa70f0bc95410c10f6d0&quot; level=&quot;2&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;true&quot; aria-level=&quot;2&quot; aria-posinset=&quot;38&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noline&quot;&gt;&lt;i class=&quot;next-icon next-icon-arrow-down next-medium next-tree-switcher-icon next-tree-fold-icon&quot;&gt;&lt;/i&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;i class=&quot;teamix-icon teamix-icon-folder-line teamix-medium&quot; style=&quot;color: var(--color-text1-2, #6e6e6e);&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-folder-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;include&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li role=&quot;presentation&quot; class=&quot;next-tree-node&quot; id=&quot;tree_70f70460b38ad1cb9617bbfd726b33ee7aa2cfdb&quot; level=&quot;3&quot;&gt;&lt;div role=&quot;treeitem&quot; aria-selected=&quot;false&quot; aria-disabled=&quot;false&quot; aria-checked=&quot;false&quot; aria-expanded=&quot;false&quot; aria-level=&quot;3&quot; aria-posinset=&quot;39&quot; aria-setsize=&quot;39&quot; class=&quot;next-tree-node-inner&quot; tabindex=&quot;-1&quot;&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-node-indent-unit&quot;&gt;&lt;/span&gt;&lt;span class=&quot;next-tree-switcher next-noop-noline&quot;&gt;&lt;/span&gt;&lt;div class=&quot;next-tree-node-label-wrapper&quot;&gt;&lt;div class=&quot;next-tree-node-label next-tree-node-label-selectable&quot;&gt;&lt;div class=&quot;mr-file-read-state&quot;&gt;&lt;span class=&quot;next-badge next-badge-not-a-wrapper mr-file-read-badge&quot;&gt;&lt;/span&gt;&lt;i class=&quot;teamix-icon teamix-icon-modified-code-file-line teamix-small&quot;&gt;&lt;svg viewBox=&quot;0 0 1024 1024&quot;&gt;&lt;use xlink:href=&quot;#yunxiao-modified-code-file-line&quot;&gt;&lt;/use&gt;&lt;/svg&gt;&lt;/i&gt;&lt;/div&gt;&lt;span class=&quot;label-content &quot;&gt;&lt;div class=&quot;teamix-title&quot;&gt;&lt;span&gt;preface-cc.adoc&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;label-content-right&quot;&gt;&lt;span class=&quot;changes-tree-item-right-item add-lines&quot;&gt;+ 4&lt;/span&gt;&lt;span class=&quot;changes-tree-item-right-item del-lines&quot; style=&quot;margin-left: 8px;&quot;&gt;- 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt; 这是我插件所控制pr页面中文件相关代码,是否存在这样一种情况,只有点击文件之后才会进行创建从而生成该文件的diff,
最新发布
08-06
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值