CF 809div2 DE

本文探讨了在算法竞赛中如何通过枚举和贪心策略解决复杂问题,如DChoppingCarrots题目中寻找最小的max_{1leilen}

D Chopping Carrots

Problem - D2 - Codeforces

题意

​ 给你一个长度为 n n n的数组 a a a,让你构造一个数组 p p p,且 p p p中所有的数均属于 [ 1 , k ] [1,k] [1,k],并让你求 m a x 1 ≤ i ≤ n ( ⌊ a i p i ⌋ ) − m i n 1 ≤ i ≤ n ( ⌊ a i p i ⌋ ) max_{1\le i \le n} (\lfloor \frac {a_i}{p_i} \rfloor) - min_{1\le i \le n} (\lfloor \frac {a_i}{p_i} \rfloor) max1in(⌊piai⌋)min1in(⌊piai⌋)最小是多少。

思路

  • 枚举,贪心

    ​ 我们枚举最小值 l l l,贪心来看然后从 1 ∼ n 1\sim n 1n对于每个 a i a_i ai找到大于等于 l l l的最小的 a i p i \frac {a_i}{p_i} piai即可,由于数据范围很小可以先预处理出每个数可以变成哪些数,然后对于每个 a i a_i ai可以变成的数,二分即可。

    ​ 由于要求最小的 a i p i \frac{a_i}{p_i} piai a i p i ≥ l \frac {a_i}{p_i}\ge l piail即求 l × p i ≤ a i → p i ≤ a i l l\times p_i\le a_i\to p_i\le \frac{a_i}{l} l×piaipilai,所以也可以 O ( 1 ) O(1) O(1)的求出。

    然后对于所有的取值取个 m a x max max找到当前 l l l对应的 r r r,判断是否可以更新答案即可。

Code

#include <bits/stdc++.h>
#define x first
#define y second
#define debug(x) cout<<#x<<":"<<x<<endl;
using namespace std;
typedef long double ld;
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef unsigned long long ULL;
const int N = 3010, M = 2 * N, INF = 0x3f3f3f3f, mod = 1e9 + 7;
const double eps = 1e-8, pi = acos(-1), inf = 1e20;
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
int h[N], e[M], ne[M], w[M], idx;
void add(int a, int b, int v = 0) {
    e[idx] = b, w[idx] = v, ne[idx] = h[a], h[a] = idx ++;
}
int n, m, k;
int a[N];
bool st[N];
int main() {
    ios::sync_with_stdio(false), cin.tie(0);
    int T;
    cin >> T;
    while (T -- ) {
        cin >> n >> k;
        for (int i = 1; i <= n; i ++) cin >> a[i];
        vector<int> g[n + 1];
        for (int i = 0; i <= 3000; i ++) st[i] = false;
        for (int i = 1; i <= n; i ++) {
            for (int j = 1; j <= k; j ++)
                if (a[i] / j == 0 && g[i].back() == 0) break;
                else if (!g[i].size() || (a[i] / j != g[i].back())) g[i].push_back(a[i] / j), st[a[i] / j] = true;
            reverse(g[i].begin(), g[i].end());
        }

        int res = INF;
        for (int tag = 0; tag <= 3000; tag ++) {
            if (!st[tag]) continue ;
            int mn = tag, mx = -1;
            for (int i = 1; i <= n; i ++) {
                int l = 0, r = g[i].size() - 1;
                while (l < r) {
                    int mid = l + r >> 1;
                    if (g[i][mid] >= mn) r = mid;
                    else l = mid + 1;
                }
                mn = min(mn, g[i][l]), mx = max(mx, g[i][l]);
            }
            res = min(res, mx - mn);
        }

        cout << res << '\n';
    }
    return 0;
}

思路

  • 枚举,整除分块

​ 显然直接枚举 l l l再枚举数不行了,考虑优化枚举 a 1 ∼ a n a_1\sim a_n a1an这一个步骤。显然对于每个 l l l来说最终找的 r r r是一定的我们设 m x [ l ] : l 所对应的合法的最小上界是多少 mx[l]:l所对应的合法的最小上界是多少 mx[l]:l所对应的合法的最小上界是多少.

​ 对于 a i a_i ai来说假设能变成 b 1 , b 2 , . . . , b x b_1,b_2,...,b_x b1,b2,...,bx这些数且 b i > b i − 1 b_i>b_{i-1} bi>bi1,对于任意一个 l l l,则 l l l一定可以插在 b i + 1 ≤ l ≤ b i + 1 b_i + 1\le l \le b_{i+1} bi+1lbi+1,所以存在某个区间 [ l , l + 1 , . . , l + p ] [l,l+1,..,l+p] [l,l+1,..,l+p]使得, b i + 1 ≤ [ l , l + 1 , . . , l + p ] ≤ b i + 1 b_i + 1\le [l,l+1,..,l+p]\le b_{i+1} bi+1[l,l+1,..,l+p]bi+1,则 m x [ l ∼ l + p ] mx[l\sim l+p] mx[ll+p]的取值都可以是 b i + 1 b_{i+1} bi+1,对于每个 m x [ l ] mx[l] mx[l]的所有可能取值里要取最大的一个 m x [ l ] mx[l] mx[l]才能合法,区间赋值我们可以只对 m x [ l ] mx[l] mx[l]赋值即可,然后枚举 l l l的时候对 m x mx mx数组求前缀和即可维护区间。

​ 由于 l l l从小到大枚举,则 l + p + 1 l+p+1 l+p+1这个数所成立的 m x [ l + p + 1 ] mx[l+p+1] mx[l+p+1]是一定大于 m x [ l ] mx[l] mx[l]因此对于区间赋值,做成后缀赋值是没有影响的,那么枚举每个数再将他分解。

​ 对于一个数 n n n将他除以 1 ∼ n 1\sim n 1n的值一定是一段一段的,可以整除分块直接跳到对应的下一段的起点,因此复杂度为 O ( a i a i ) O(a_i\sqrt a_i) O(aia i),就可以接受了。

Code

#include <bits/stdc++.h>
#define x first
#define y second
#define debug(x) cout<<#x<<":"<<x<<endl;
using namespace std;
typedef long double ld;
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef unsigned long long ULL;
const int N = 1e5 + 10, M = 2 * N, INF = 0x3f3f3f3f, mod = 1e9 + 7;
const double eps = 1e-8, pi = acos(-1), inf = 1e20;
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
int h[N], e[M], ne[M], w[M], idx;
void add(int a, int b, int v = 0) {
    e[idx] = b, w[idx] = v, ne[idx] = h[a], h[a] = idx ++;
}
int n, m, k;
int a[N], mx[N];
int main() {
    ios::sync_with_stdio(false), cin.tie(0);
    int T;
    cin >> T;
    while (T -- ) {
        cin >> n >> k;
        for (int i = 1; i <= n; i ++) cin >> a[i];
        for (int i = 0; i <= a[1]; i ++) mx[i] = 0;
        for (int i = 1; i <= n; i ++) {
            int last = INF;
            for (int p = 1; p <= min(a[i], k); p = a[i] / (a[i] / p) + 1) {
                int l = a[i] / p;
                mx[l + 1] = max(mx[l + 1], last);
                last = l;
            }
            mx[0] = max(mx[0], last);
        }

        int res = INF, pmx = 0;
        for (int i = 0; i <= a[1]; i ++) {
            pmx = max(pmx, mx[i]);
            res = min(res, pmx - i);
        }

        cout << res << '\n';
    }
    return 0;
}

E. Qpwoeirut and Vertices

Problem - E - Codeforces

题意

​ 给你一个 n n n个点 m m m条边的连通图可 q q q次询问,每次询问问你一个区间 [ l , r ] [l,r] [l,r],你需要回答 [ l , r ] [l,r] [l,r]里的任意点对需要经过至少前多少条边两两互达。

思路

  • 贪心,启发式合并

​ 对于任意两点我们想让他们经过的边的编号尽量的小,由于边的编号的是不同的,因此该图的最小生成树唯一,所以我们把边的编号当成边权,实际上有用的边就是该图最小生成树上的边。

​ 多组询问,每次问你一个 [ l , r ] [l,r] [l,r]显然是不能枚举其中的点对来解答的,这里启示我们可以找一个等价的子集来枚举,考虑只枚举每个位置和前一个位置的互达的最小编号,对于任意一个不相邻的点对,如果他们互达的最小编号比我们枚举这些位置的最大值小,那么是不需要他的因为求的是最大值,如果比我们枚举的这些位置的最大值大,显然是不可能的,假设是 ( x , y ) (x,y) (x,y)显然我们可以沿着 x → x + 1 → . . . → y x\to x+1\to...\to y xx+1...y这样走下去一定小于等于我们枚举的最大值。

​ 因此我们只需要维护出每个位置和前一个位置的互达最小编号即可,对于查询区间 [ l , r ] [l,r] [l,r]我们只需要求出 [ l + 1 , r ] [l+1,r] [l+1,r]中的最大值即可,这个可以用 s t st st表维护。

​ 那么怎么维护每个位置和前一个位置互达的最小编号呢,暴力的去跑肯定不行,考虑我们用 k r u s k a l kruskal kruskal求最小生成树的时候,枚举当前的边,如果所连的两个点不在一个集合的时候就要合并这两个集合,则我们可以暴力的枚举一个集合里的所有的点,看看他的左右临点是否再另一个集合里,在的话就直接给对应点的最小编号赋值,这样暴力维护也是 O ( n 2 ) O(n^2) O(n2)的,我们只需要将小的集合向大的集合合并,就可以做到 O ( n l o g n ) O(nlogn) O(nlogn)了。

Code

#include <bits/stdc++.h>
#define x first
#define y second
#define debug(x) cout<<#x<<":"<<x<<endl;
using namespace std;
typedef long double ld;
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef unsigned long long ULL;
const int N = 1e5 + 10, M = 2 * N, INF = 0x3f3f3f3f, mod = 1e9 + 7;
const double eps = 1e-8, pi = acos(-1), inf = 1e20;
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
int h[N], e[M], ne[M], w[M], idx;
void add(int a, int b, int v = 0) {
    e[idx] = b, w[idx] = v, ne[idx] = h[a], h[a] = idx ++;
}
int n, m, k;
int a[N];
int f[N];
int find(int x) {
    return x == f[x] ? x : f[x] = find(f[x]);
}
int main() {
    ios::sync_with_stdio(false), cin.tie(0);
    int T;
    cin >> T;
    while (T -- ) {
        cin>> n >> m >> k;
        vector<int> sz[n + 1];
        vector<int> pre(n + 1);
        for (int i = 1; i <= n; i ++) f[i] = i, sz[i].push_back(i);

        for (int i = 1; i <= m; i ++) {
            int x, y; cin >> x >> y;
            int xx = find(x), yy = find(y);
            if (xx != yy) {
                if (sz[xx].size() > sz[yy].size()) swap(xx, yy);
                for (auto t : sz[xx]) {
                    if (t != 1 && find(t - 1) == yy)  pre[t] = i;
                    if (t != n && find(t + 1) == yy) pre[t + 1] = i;
                    sz[yy].push_back(t);
                }
                f[xx] = yy;
            }       
        }

        vector<vector<int>> st(n + 1, vector<int>(21));
        for (int i = 1; i <= n; i ++) st[i][0] = pre[i];
        for (int j = 1; j <= 20; j ++)
            for (int i = 1; i + (1 << j) - 1 <= n; i ++) 
                st[i][j] = max(st[i][j - 1], st[i + (1 << (j - 1))][j - 1]);

        auto query = [&](int l, int r) {
            if (l > r) return 0;
            int len = __lg(r - l + 1);
            return max(st[l][len], st[r - (1 << len) + 1][len]);
        };
        while (k --) {            
            int l, r; cin >> l >> r;
            l ++;
            cout << query(l, r) << ' ';
        }

        cout << '\n';
    }
    return 0;
}
<body> <div class="page flex-col"> <div class="box_1 flex-col"> <div class="box_2 flex-row"> <div class="box_3 flex-col"> <div class="box_4 flex-row justify-between"> <div class="box_5 flex-col"> <div class="image-wrapper_1 flex-col"> <img class="image_1" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG8cc8f7c36dc3562061d731149b84cd87.png" /> </div> </div> <div class="box_6 flex-col"> <div class="text-wrapper_1 flex-row"> <button style="color: #ffffff;margin-left: 8vw;margin-top: 2.3vw;" onclick="shuaxin()"><i class="fa fa-refresh"></i></button> <button style="color: #ffffff;margin-left: 1vw;margin-top: 2.3vw;" onclick="quanping()" ><i class="fa fa-arrows-alt"></i></button> <div id="time_value" class="text_1" style="margin-left: 2vw; margin-top: 3vw;" onclick=qp_change()></div> </div> </div> </div> <div class="image-wrapper_2 flex-row justify-between"> <img class="image_2" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGed892664a8141b31090570aa72ec03c8.png" /> <img class="image_3" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGed892664a8141b31090570aa72ec03c8.png" /> </div> <div class="box_7 flex-col"> <div class="tablebox1"> <div class="tbl-header1" style="padding: 0px 10px 10px 10px;"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th>时段</th> <th>产出板件数</th> <th>产出面积</th> <th>订单量</th> <th>时段目标</th> <th>目标达成率</th> </tr> </thead> <tbody style="opacity:0;"></tbody> </table> </div> <div class="tbl-body1" style="padding: 0px 10px 10px 10px;"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th>时段</th> <th>产出板件数</th> <th>产出面积</th> <th>订单量</th> <th>时段目标</th> <th>目标达成率</th> </thead> <tbody></tbody> </table> </div> </div> <div id="sd_zx" style="height: 11vw;width: 33.5vw; margin-top: -2vw; position: relative;"> </div> </div> <div class="image-wrapper_3 flex-row justify-between"> <img class="image_4" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGed892664a8141b31090570aa72ec03c8.png" /> <img class="image_5" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG413e952ae6791af4afbd52453dd8e88e.png" /> </div> <div class="box_9 flex-col"> <div class="box_10 flex-row justify-between"> <div class="text-wrapper_10 flex-col"> <span class="text_52">时段产能</span> </div> <div class="text-wrapper_11 flex-col"> <span class="text_53">合格率</span> </div> <div class="text-wrapper_12 flex-col"> <span class="text_54">准时交货量</span> </div> </div> <div class="box_11 flex-row justify-between"> <div class="group_1 flex-col"> <div class="image-wrapper_4 flex-row"> <img class="thumbnail_1" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGf43f0a5d2b4656d52e3e50bb3fa7d120.png" /> </div> <div class="box_12 flex-row justify-between"> <span class="text_55">总交货量</span> <div class="text-wrapper_13"> <span class="text_56">{$month_rates.zong_count}</span> <span class="text_57">/个</span> </div> </div> <img class="thumbnail_2" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGfd00a0846a9ef983e985a72ba83ef527.png" /> </div> <div class="group_2 flex-col"> <div class="image-wrapper_5 flex-row"> <img class="thumbnail_3" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGf43f0a5d2b4656d52e3e50bb3fa7d120.png" /> </div> <div class="box_13 flex-row justify-between"> <span class="text_58">实际交货量</span> <div class="text-wrapper_14"> <span class="text_59">{$month_rates.shi_count}</span> <span class="text_60">/个</span> </div> </div> <img class="thumbnail_4" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGfd00a0846a9ef983e985a72ba83ef527.png" /> </div> </div> <div class="image-wrapper_6 flex-row"> <img class="thumbnail_5" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG797c9dde8077e5885b468d374b2da6d1.png" /> <img class="thumbnail_6" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGb103e5b788531985bcef98c8959b57e4.png" /> <img class="thumbnail_7" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG797c9dde8077e5885b468d374b2da6d1.png" /> <img class="thumbnail_8" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGb103e5b788531985bcef98c8959b57e4.png" /> </div> <div class="box_14 flex-row justify-between"> <div id="channeng_month" style="height: 11vw;width: 26vw;position: absolute;margin: -1.2vw 0px 0px -6vw;"></div> <div class="group_5 flex-row"> <div class="box_15 flex-col"></div> <span class="text_63">实际交货</span> </div> </div> </div> </div> <img class="image_6" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG5a8fe72db3d57d8a5e9f6b17657a8c87.png" /> </div> <div class="box_20 flex-col"> <div class="group_7 flex-col"> <div class="box_21 flex-col"> <div class="section_16 flex-col"> <div class="text-wrapper_16 flex-col"> <span class="text_64">车间工序看板</span> </div> </div> </div> </div> </div> <img class="image_11" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGa29e6ee59e11d09266b5de326ad39ef1.png" /> <div style="display: flex;position: absolute; margin-top: 40px;" > <div> <span style="color: #fff;font-size: 15px;margin-left: 20px;">工序:</span> </div> <div class="layui-input-block"> <?php $select =!empty(input('station_id'))?input('station_id'):1; echo (model('Ui')->getchangeEasySelect('admin','all_station','station_id',$station_id,'',0)); ?> </div> <div class="layui-input-block"> <?php $select =!empty(input('time'))?input('time'):'1'; echo (model('Ui')->getchangeEasySelect('admin','time_select','time',$time_select,'',0)); ?> </div> </div> <div class="box_26 flex-row"> <img class="thumbnail_17" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG7873bb2fee2b5215411a46c9214ffccb.png" /> <span class="text_65">时段产能</span> </div> <div class="box_27 flex-col"> <div class="group_8 flex-col"> <div class="tablebox2"> <div class="tbl-header2" style="padding: 0px 10px 10px 10px;"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th>时段</th> <th>累计生产数</th> <th>不合格数</th> <th>合格率</th> <th>合格率目标</th> <th>目标达成率</th> </tr> </thead> <tbody style="opacity:0;"></tbody> </table> </div> <div class="tbl-body2" style="padding: 0px 10px 10px 10px;"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th>时段</th> <th>累计生产数</th> <th>不合格数</th> <th>合格率</th> <th>合格率目标</th> <th>目标达成率</th> </thead> <tbody></tbody> </table> </div> </div> <div id="hg_zx" style="height: 11vw;width: 33.5vw; margin-top: -2vw; position: relative;"> </div> </div> <img class="image_13" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGed892664a8141b31090570aa72ec03c8.png" /> <div class="box_28 flex-row"> <img class="thumbnail_18" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG7873bb2fee2b5215411a46c9214ffccb.png" /> <span class="text_102">合格率</span> </div> <img class="image_25_1" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/ztcj/img/cb47085232a7cf1be05b123a25702cb.png" /> <div class="box_29 flex-col"> <div class="box_30 flex-col"> <div class="tablebox3"> <div class="tbl-header3" style="padding: 0px 10px 10px 10px;"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th>时段</th> <th>时交货数量</th> <th>总订单交货数</th> <th>准时交货订单率</th> <th>准时交货率目标</th> <th>目标达成率</th> </tr> </thead> <tbody style="opacity:0;"></tbody> </table> </div> <div class="tbl-body3" style="padding: 0px 10px 10px 10px;"> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th>时段</th> <th>时交货数量</th> <th>总订单交货数</th> <th>准时交货订单率</th> <th>准时交货率目标</th> <th>目标达成率</th> </thead> <tbody></tbody> </table> </div> </div> <div id="zs_zx" style="height: 11vw;width: 33.5vw; margin-top: -2vw; position: relative;"> </div> </div> <div class="box_31 flex-row"> <img class="thumbnail_19" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG7873bb2fee2b5215411a46c9214ffccb.png" /> <span class="text_151">准时交货量</span> </div> <div class="box_32 flex-row"> <div class="image-text_1 flex-row justify-between"> <img class="thumbnail_20" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG7873bb2fee2b5215411a46c9214ffccb.png" /> <span class="text-group_1">当月累计准交率</span> </div> </div> <div class="box_33 flex-row"> <div class="image-text_2 flex-row justify-between"> <img class="thumbnail_21" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG7873bb2fee2b5215411a46c9214ffccb.png" /> <span class="text-group_2">月度准时交货量统计</span> </div> </div> <div class="box_34 flex-col"> <div class="group_10 flex-row justify-between"> <div class="text-wrapper_33 flex-col"> <span class="text_152">时段产能</span> </div> <div class="text-wrapper_34 flex-col"> <span class="text_153">合格率</span> </div> <div class="text-wrapper_35 flex-col"> <span class="text_154">准时交货量</span> </div> </div> <div class="group_11 flex-row"> <div class="list_1 flex-row"> <div class="list-items_1-0 flex-col"> <div class="image-wrapper_7-0 flex-row"> <img class="thumbnail_22-0" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGf43f0a5d2b4656d52e3e50bb3fa7d120.png" /> </div> <div class="box_35-0 flex-row justify-between"> <span class="text_155-0">当天总交货量</span> <div class="text-wrapper_36-0"> <span class="text_156-0">{$year_month_arr.day_total_jiao}</span> <span class="text_157-0">/个</span> </div> </div> <img class="thumbnail_23-0" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGfd00a0846a9ef983e985a72ba83ef527.png" /> </div> <div class="list-items_1-1 flex-col"> <div class="image-wrapper_7-1 flex-row"> <img class="thumbnail_22-1" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGf43f0a5d2b4656d52e3e50bb3fa7d120.png" /> </div> <div class="box_35-1 flex-row justify-between"> <span class="text_155-1">当天实际交货</span> <div class="text-wrapper_36-1"> <span class="text_156-1">{$year_month_arr.day_shiji_jiao}</span> <span class="text_157-1">/个</span> </div> </div> <img class="thumbnail_23-1" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGfd00a0846a9ef983e985a72ba83ef527.png" /> </div> <div class="list-items_1-2 flex-col"> <div class="image-wrapper_7-2 flex-row"> <img class="thumbnail_22-2" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGf43f0a5d2b4656d52e3e50bb3fa7d120.png" /> </div> <div class="box_35-2 flex-row justify-between"> <span class="text_155-2">当天交货率</span> <div class="text-wrapper_36-2"> <span class="text_156-2">{$year_month_arr.day_total_rate}</span> <span class="text_157-2">%</span> </div> </div> <img class="thumbnail_23-2" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGfd00a0846a9ef983e985a72ba83ef527.png" /> </div> <div class="list-items_1-3 flex-col"> <div class="image-wrapper_7-3 flex-row"> <img class="thumbnail_22-3" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGf43f0a5d2b4656d52e3e50bb3fa7d120.png" /> </div> <div class="box_35-3 flex-row justify-between"> <span class="text_155-3">月累计单量</span> <div class="text-wrapper_36-3"> <span class="text_156-3">{$year_month_arr.sum}</span> <span class="text_157-3">/个</span> </div> </div> <img class="thumbnail_23-3" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGfd00a0846a9ef983e985a72ba83ef527.png" /> </div> </div> </div> <div class="image-wrapper_8 flex-row"> <img class="thumbnail_24" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG797c9dde8077e5885b468d374b2da6d1.png" /> <img class="thumbnail_25" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGb103e5b788531985bcef98c8959b57e4.png" /> <img class="thumbnail_26" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG797c9dde8077e5885b468d374b2da6d1.png" /> <img class="thumbnail_27" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGb103e5b788531985bcef98c8959b57e4.png" /> <img class="thumbnail_28" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG797c9dde8077e5885b468d374b2da6d1.png" /> <img class="thumbnail_29" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGb103e5b788531985bcef98c8959b57e4.png" /> <img class="thumbnail_30" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNG797c9dde8077e5885b468d374b2da6d1.png" /> <img class="thumbnail_31" referrerpolicy="no-referrer" src="__PUBLIC__/msboard/process/img/FigmaDDSSlicePNGb103e5b788531985bcef98c8959b57e4.png" /> </div> <div id="yearmonthstatistics" style="height: 16vw;width: 70vw;margin-left:-2vw;"></div> </div> </div> </div> </body>看下 那里缺少了对应关系
08-14
<div class="next-virtual-tree-container"><div class="next-virtual-list-wrapper" style="position: relative; height: 1092px;"><div style="transform: translate(0px, 0px);"><ul role="tree" aria-multiselectable="false" class="next-tree next-label-block next-node-indent mr-change-file-tree"><li role="presentation" class="next-tree-node" id="tree_f327158de5da6cc3ccb8bf1e6efb8439ec18a473" level="1"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="true" aria-level="1" aria-posinset="1" aria-setsize="39" class="next-tree-node-inner" tabindex="0"><span class="next-tree-switcher next-noline"><i class="next-icon next-icon-arrow-down next-medium next-tree-switcher-icon next-tree-fold-icon"></i></span><div class="next-tree-node-label-wrapper" data-spm-anchor-id="a2cl9.codeup_devops2020_goldlog_projectCodeReviewDetail.0.i0.1a4b2f95Riq47i"><div class="next-tree-node-label next-tree-node-label-selectable"><i class="teamix-icon teamix-icon-folder-line teamix-medium" style="color: var(--color-text1-2, #6e6e6e);"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-folder-line"></use></svg></i><span class="label-content "><div class="teamix-title"><span>develop/api</span></div></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_645502b1c12dbd3e90161f42b35ac4842b2f1bc0" level="2"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="true" aria-level="2" aria-posinset="2" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noline"><i class="next-icon next-icon-arrow-down next-medium next-tree-switcher-icon next-tree-fold-icon"></i></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><i class="teamix-icon teamix-icon-folder-line teamix-medium" style="color: var(--color-text1-2, #6e6e6e);"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-folder-line"></use></svg></i><span class="label-content "><div class="teamix-title"><span>cc</span></div></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_26795b2da1ced4325633e17429a14a6d65b37997" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="3" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>agenda.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 79</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 47</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_2bf30c75cda26b6da9a01bb778c3f18caff120b7" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="4" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>bot-asr.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 3</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 3</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_5415bbf49cd2dce85711212f52e33e311f53396b" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="5" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>cache.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 7</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 8</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_2244b0780bfca45f4c922db59e053b3883112722" level="3"><div role="treeitem" aria-selected="true" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="6" aria-setsize="39" class="next-tree-node-inner next-selected" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content selected read"><div class="teamix-title"><span>call.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 225</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 24</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_c0db26d547a3e13a3e725335a3810f5427c6041f" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="7" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>cdr-ib.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 5</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 5</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_36daf1c4dc152afacb2964a0a4d980cbfeac4190" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="8" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>cdr-new-ib.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 45</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 19</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_622909527d2dc809366984c977e94ccd65d5bce3" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="9" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>cdr-new-ob.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 2</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 2</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_2a6ecd488c46a3b580371de33343d8cfde3a411f" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="10" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>cdr-ob.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 1</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 4</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_b2f2e0948f378d82249b208abc74336d186b9015" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="11" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>cdr-webcall.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 10</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 5</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_c96ea8e19e39822d6b93792b6a1eca351192c195" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="12" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>cloud-number.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 57</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 17</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_9f0f11e837f94eae5e698e87f4007496a028b790" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="13" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>comment.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 1</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 1</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_de8eed9622827c92e2bef5b723b34973853f5d1e" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="14" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>config-client.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 299</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 79</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_70db9dfa2724ee83041e57034e35866fd984f490" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="15" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>config-enterprise-pause.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 38</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 16</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_06f31b7e5b2206a07381e9a4514e1ee7360dd606" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="16" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>config-exten.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 153</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 43</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_8668a164f3b579c32e2ff437e29a2d9b9e7facab" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="17" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>config-global.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 12</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_02ee093280570525c4acdbfe1cb0638cbc01854e" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="18" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>config-ivr.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 2</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 6</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_262552720b3a25db9c10d0cb5ac1bf5917a4fbde" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="19" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>config-number.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 70</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 41</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_b6eaed69a33cbb7bcc82256fbbf6fe8fb99d61f2" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="20" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>config-queue.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 135</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 52</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_e153e556cf95e0de8a4dc3c6b4dd5c771766c76c" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="21" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>config-restrict-tel.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 63</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 29</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_7b76e5a55474a067b0a786da41180f97dc45fb7f" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="22" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title teamix-title-tooltip-trigger"><span>enterprise-info.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 12</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 3</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_3b2284d33f54f511379b41f9ff4b798a4aa1ac69" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="23" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>intelligent.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 2</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 2</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_42245dcf3431cbc07b41363fe72e1b4b72b39521" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="24" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>investigation.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 8</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 7</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_2b79fcb8c33ac0fd04019d6ddc898a0cfa489836" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="25" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>ivr-script.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 2</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 2</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_7aeb796e6c100399330afc26c134f13a6ab83255" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="26" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>log.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 17</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 8</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_d2f1e29c432a686aa88c4cb1fb143d5d4318693d" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="27" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>manage.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 101</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 21</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_5e970457d3b2936ae361e83bf05ab5ff9d2fefe2" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="28" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>monitor.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 44</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 28</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_d93cc6a762355686be58a79adb0678a8da962e60" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="29" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>record.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 1</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 1</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_71af7fbc40f41108388d6bad45a6d27f6b8b095c" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="30" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>report.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 225</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 119</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_00e44423e8a5374da656f4c501c5a95c417fc545" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="31" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>sms.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 119</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 54</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_e48fa19c604cb18d50fbd8c024fc8fee1ded3c33" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="32" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>sqc-asr.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 34</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 11</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_6ac9e8260de70a8375bf2d7aee6939aecb8743ca" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="33" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>sso-login.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 1</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 1</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_00b07295c64dbd5376df8d02bda47da65b4e8cc9" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="34" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title teamix-title-tooltip-trigger"><span>task-property.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 10</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 2</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_dffb54a48011883825c29fdcd90af450763763f9" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="35" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>voice-mail.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 9</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 3</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_8ad845fdbb2305336e6609d2f303542ebe2c245f" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="36" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>wm_rtc.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 38</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 13</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_2d82ef1179abafdcd48e7f68df961e01b7166451" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="37" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content read"><div class="teamix-title"><span>ws-login.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 12</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 3</span></span></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_8acab7cec62a3e33f169fa70f0bc95410c10f6d0" level="2"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="true" aria-level="2" aria-posinset="38" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noline"><i class="next-icon next-icon-arrow-down next-medium next-tree-switcher-icon next-tree-fold-icon"></i></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><i class="teamix-icon teamix-icon-folder-line teamix-medium" style="color: var(--color-text1-2, #6e6e6e);"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-folder-line"></use></svg></i><span class="label-content "><div class="teamix-title"><span>include</span></div></span></div></div></div></li><li role="presentation" class="next-tree-node" id="tree_70f70460b38ad1cb9617bbfd726b33ee7aa2cfdb" level="3"><div role="treeitem" aria-selected="false" aria-disabled="false" aria-checked="false" aria-expanded="false" aria-level="3" aria-posinset="39" aria-setsize="39" class="next-tree-node-inner" tabindex="-1"><span class="next-tree-node-indent-unit"></span><span class="next-tree-node-indent-unit"></span><span class="next-tree-switcher next-noop-noline"></span><div class="next-tree-node-label-wrapper"><div class="next-tree-node-label next-tree-node-label-selectable"><div class="mr-file-read-state"><span class="next-badge next-badge-not-a-wrapper mr-file-read-badge"></span><i class="teamix-icon teamix-icon-modified-code-file-line teamix-small"><svg viewBox="0 0 1024 1024"><use xlink:href="#yunxiao-modified-code-file-line"></use></svg></i></div><span class="label-content "><div class="teamix-title"><span>preface-cc.adoc</span></div><span class="label-content-right"><span class="changes-tree-item-right-item add-lines">+ 4</span><span class="changes-tree-item-right-item del-lines" style="margin-left: 8px;">- 1</span></span></span></div></div></div></li></ul></div></div></div> 这是我插件所控制pr页面中文件相关代码,是否存在这样一种情况,只有点击文件之后才会进行创建从而生成该文件的diff,
08-06
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值