[CF786B] Legacy

本文介绍了一种使用线段树进行图优化的方法,适用于大规模图数据处理场景。该方法通过将线段树节点作为中转站来优化从叶子节点到叶子节点之间的路径连接过程,有效地减少了内存占用并提高了效率。

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

Description

有 n 个点 \((n\leq 10^5)\),三种操作:

  1 u v w 从u向v连一条权值为w的有向边 

2 u L R w 从u向[L,R]的所有结点连一条权值为w的有向边 

3 u L R w 从[L,R]的所有结点向u连一条权值为w的有向边

Solution

解锁了线段树优化建图的姿势。

感觉有点玄乎啊,优化建图实际上就是让线段树上的节点做一个中转,中转叶子节点到叶子节点的道路。

这老哥写的不错 戳我

注意边的空间要开大点!

Code

#include<queue>
#include<cstdio>
#include<cctype>
#include<cstring>
#define N 100005
#define int long long
#define min(A,B) ((A)<(B)?(A):(B))
#define max(A,B) ((A)>(B)?(A):(B))
#define swap(A,B) ((A)^=(B)^=(A)^=(B))

int vis[N<<2];
int root1,root2;
int n,m,s,cnt,tot;
int lch[N<<2],rch[N<<2];
int dis[N<<2],head[N<<2];

struct Edge{
    int to,nxt,dis;
}edge[N*20];

struct Node{
    int now,dis;
    friend bool operator<(Node a,Node b){
        return a.dis>b.dis;
    }
};

void add(int x,int y,int z){
    edge[++cnt].to=y;
    edge[cnt].nxt=head[x];
    edge[cnt].dis=z;
    head[x]=cnt;
}

void build1(int &cur,int l,int r){
    if(l==r){
        cur=l;
        return;
    }
    cur=++tot;
    int mid=l+r>>1;
    build1(lch[cur],l,mid);
    build1(rch[cur],mid+1,r);
    add(cur,lch[cur],0);add(cur,rch[cur],0);
}

void build2(int &cur,int l,int r){
    if(l==r){
        cur=l;
        return;
    }
    cur=++tot;
    int mid=l+r>>1;
    build2(lch[cur],l,mid);
    build2(rch[cur],mid+1,r);
    add(lch[cur],cur,0);add(rch[cur],cur,0);
}

int getint(){
    int x=0,f=0;char ch=getchar();
    while(!isdigit(ch)) f|=ch=='-',ch=getchar();
    while(isdigit(ch)) x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
    return f?-x:x;
}

void modify1(int cur,int l,int r,int ql,int qr,int x,int y){
    if(ql<=l and r<=qr){
        add(x,cur,y);
        return;
    }
    int mid=l+r>>1;
    if(ql<=mid)
        modify1(lch[cur],l,mid,ql,qr,x,y);
    if(mid<qr)
        modify1(rch[cur],mid+1,r,ql,qr,x,y);
}

void modify2(int cur,int l,int r,int ql,int qr,int x,int y){
    if(ql<=l and r<=qr){
        add(cur,x,y);
        return;
    }
    int mid=l+r>>1;
    if(ql<=mid)
        modify2(lch[cur],l,mid,ql,qr,x,y);
    if(mid<qr)
        modify2(rch[cur],mid+1,r,ql,qr,x,y);
}

void dijkstra(){
    std::priority_queue<Node> pq;
    pq.push((Node){s,0});
    while(pq.size()){
        Node u=pq.top();pq.pop();
        if(vis[u.now]) continue;
        vis[u.now]=1;
        for(int i=head[u.now];i;i=edge[i].nxt){
            int to=edge[i].to;
            if(dis[to]>u.dis+edge[i].dis){
                dis[to]=u.dis+edge[i].dis;
                pq.push((Node){to,dis[to]});
            }
        }
    }
}

signed main(){
    n=getint(),m=getint(),s=getint();tot=n;
    build1(root1,1,n);build2(root2,1,n);
    while(m--){
        int opt=getint();
        if(opt==1){
            int a=getint(),b=getint(),c=getint();
            add(a,b,c);
        } else if(opt==2){
            int a=getint(),b=getint(),c=getint(),d=getint();
            modify1(root1,1,n,b,c,a,d);
        } else{
            int a=getint(),b=getint(),c=getint(),d=getint();
            modify2(root2,1,n,b,c,a,d);
        }
    }
    for(int i=1;i<=(n<<2);i++)
        dis[i]=2e18;
    dis[s]=0;
    dijkstra();
    for(int i=1;i<=n;i++){
        if(dis[i]>=2e18)
            printf("-1 ");
        else
            printf("%I64d ",dis[i]);
    }
    return 0;
}

转载于:https://www.cnblogs.com/YoungNeal/p/9297023.html

PS C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp> npm run vue:serve Debugger attached. > cl_csm@0.1.0 vue:serve > vue-cli-service serve Debugger attached. INFO Starting development server... [hardsource:25fcdbf0] Using 42 MB of disk space. [hardsource:25fcdbf0] Writing new cache 25fcdbf0... [hardsource:25fcdbf0] Tracking node dependencies with: package-lock.json. 40% building 185/194 modules 9 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\core-js\modules\_iobject.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 40% building 218/236 modules 18 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\qs\lib\utils.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 24 │ @import "~element-ui/packages/theme-chalk/src/index"; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 24:9 root stylesheet 48% building 321/346 modules 25 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\core-js\modules\_string-pad.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 52% building 350/373 modules 23 active ...app\node_modules\vue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\RoStep.vue[BABEL] Note: The code generator has deoptimised the styling of C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\constant\kbnConst.js as it exceeds the max of 500KB. 54% building 367/423 modules 56 active ...UBE-A-APP\CL_CSM\src\main\webapp\node_modules\babel-loader\lib\index.js!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\validators\amount.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 4 │ @import './variables'; │ ^^^^^^^^^^^^^ ╵ stdin 4:9 root stylesheet 63% building 487/546 modules 59 active ...oader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Atoms\RaButton.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 63% building 488/546 modules 58 active ...oader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Atoms\RaButton.vue?vue&type=script&lang=jsDeprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--step-height, 2) or calc($--step-height / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 5 │ $--step-half-height: $--step-height / 2; │ ^^^^^^^^^^^^^^^^^^ ╵ stdin 5:22 root stylesheet 62% building 507/582 modules 75 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\vee-validate\dist\vee-validate.esm.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 62% building 513/585 modules 72 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\xe-utils\methods\index.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 520/591 modules 71 active ...b\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmInputRange.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 523/597 modules 74 active ...r\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmSelect.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 62% building 526/600 modules 74 active ...\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmDatePicker.vue?vue&type=style&index=0&id=22de6f5e&lang=scss&scoped=trueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 527/602 modules 75 active ...b\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmDatePicker.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 560/625 modules 65 active ...\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmTimeSelect.vue?vue&type=style&index=0&id=70f9fd2b&lang=scss&scoped=trueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 563/626 modules 63 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\popup\index.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 571/636 modules 65 active ...tions!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\contextmenu\Submenu.vue?vue&type=style&index=0&id=07b5451e&scoped=true&lang=cssDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 587/636 modules 49 active ...tions!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\contextmenu\Submenu.vue?vue&type=style&index=0&id=07b5451e&scoped=true&lang=cssDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 595/642 modules 47 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\mixins\focus.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 598/643 modules 45 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\mixins\focus.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 67% building 960/1010 modules 50 active ...in\webapp\node_modules\url-loader\dist\cjs.js??ref--4-0!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\assets\icomoon\fonts\icomoon.eot?20wc3hDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import "@/sdk/_variables.scss"; │ ^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 3:9 root stylesheet 67% building 965/1011 modules 46 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\es\src\event.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 998/1040 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\xe-utils\methods\base\helperDeleteProperty.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 17 │ @import "@/sdk/_variables.scss"; │ ^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 17:9 root stylesheet 66% building 1132/1199 modules 67 active ...lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 66% building 1134/1202 modules 68 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\vue-popper.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 66% building 1156/1219 modules 63 active ...1.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01Style.scss?vue&type=style&index=0&id=0b2bc8ab&lang=scss&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1160/1219 modules 59 active ...1.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01Style.scss?vue&type=style&index=0&id=0b2bc8ab&lang=scss&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1172/1221 modules 49 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\resize-event.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1182/1225 modules 43 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\throttle-debounce\debounce.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1183/1225 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\throttle-debounce\debounce.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1202/1265 modules 63 active ...c\main\webapp\node_modules\babel-loader\lib\index.js!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB03D01\CSMRCB03D01Model.jsDeprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import "./base.scss"; │ ^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import "./pagination.scss"; │ ^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import "./dialog.scss"; │ ^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 3:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 4 │ @import "./autocomplete.scss"; │ ^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 4:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 24 │ $--color-primary-light-1: mix($--color-white, $--color-primary, 10%) !default; /* 53a8ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 24:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 25 │ $--color-primary-light-2: mix($--color-white, $--color-primary, 20%) !default; /* 66b1ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 25:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 26 │ $--color-primary-light-3: mix($--color-white, $--color-primary, 30%) !default; /* 79bbff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 26:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 27 │ $--color-primary-light-4: mix($--color-white, $--color-primary, 40%) !default; /* 8cc5ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 27:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 28 │ $--color-primary-light-5: mix($--color-white, $--color-primary, 50%) !default; /* a0cfff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 28:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div(1, 5) or calc(1 / 5) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 487 │ $--group-option-flex: 0 0 (1/5) * 100% !default; │ ^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 487:28 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 32 │ margin-right: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 32:21 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 51 │ margin-right: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 51:21 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 70 │ margin-bottom: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 70:22 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 89 │ margin-bottom: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 89:22 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 7 │ color: mix($--tag-primary-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 7:10 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 14 │ color: mix($--tag-primary-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 14:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 24 │ color: mix($--tag-info-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 24:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 31 │ color: mix($--tag-info-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 31:14 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 42 │ color: mix($--tag-success-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 42:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Warning: 458 repetitive deprecation warnings omitted. 67% building 1332/1383 modules 51 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\objectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1353/1403 modules 50 active ...ue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB05D01\mixin\mailItiranInfoState.vueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 17 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 17:9 root stylesheet 67% building 1355/1403 modules 48 active ...ue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB05D01\mixin\mailItiranInfoState.vueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1370/1412 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\getYearDay.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1445/1501 modules 56 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\isSet.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1451/1505 modules 54 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\isWindow.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1472/1509 modules 37 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\async-validator\es\util.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1573/1632 modules 59 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1581/1632 modules 51 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1582/1632 modules 50 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1611/1657 modules 46 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\async-validator\es\validator\enum.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1623/1681 modules 58 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\autocomplete.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import './variables'; │ ^^^^^^^^^^^^^ ╵ stdin 1:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 5 │ @import 'vxe-table/styles/variable.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 5:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 11 │ @import 'vxe-table/styles/icon.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 11:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 12 │ @import 'vxe-table/styles/table.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 12:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 13 │ @import 'vxe-table/styles/column.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 13:9 root stylesheet 68% building 1664/1696 modules 32 active ...PP\CL_CSM\src\main\webapp\node_modules\url-loader\dist\cjs.js??ref--1-0!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\assets\images\かんむり.68% building 1690/1729 modules 39 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1692/1729 modules 37 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1694/1729 modules 35 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 98% after emitting CopyPlugin ERROR Failed to compile with 4 errors 14:43:32 error in ./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true Syntax Error: <span class="esc footer-key" v-if="escCaption">ESC</span> ^ Expected selector. ╷ 7 │ footer#footer /deep/ { │ ^ ╵ stdin 7:15 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\RoPopupFooter.vue (line 7, column 15) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true 4:14-500 15:3-20:5 16:22-508 @ ./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true @ ./src/components/sdk/Organisms/RoPopupFooter.vue @ ./src/sdk/rComponent.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true Syntax Error: // this.$refs.tranMenu.$el.focus(); ^ Expected selector. ╷ 52 │ margin: 0 0 0 auto; │ ^ ╵ stdin 52:22 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\NotFound.vue (line 52, column 22) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true 4:14-495 15:3-20:5 16:22-503 @ ./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true @ ./src/components/sdk/Organisms/NotFound.vue @ ./src/router.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external Syntax Error: justify-content: flex-end; ^ Expected selector. ╷ 66 │ justify-content: flex-end; │ ^ ╵ stdin 66:29 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMSTM01D01\CSMSTM01D01Style.scss (line 66, column 29) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external 4:14-384 15:3-20:5 16:22-392 @ ./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external @ ./src/views/CSM/CSMSTM01D01/CSMSTM01D01.vue @ ./src/router.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/sdk/vxe-custom.scss Syntax Error: @import 'vxe-table/styles/icon.scss'; ^ Can't find stylesheet to import. ╷ 11 │ @import 'vxe-table/styles/icon.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 11:9 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\vxe-custom.scss (line 11, column 9) @ ./src/sdk/vxe-custom.scss 4:14-227 15:3-20:5 16:22-235 @ ./src/sdk/rVxeTable.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js(中文)
08-23
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值