123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995 |
- <template>
- <basic-container
- ref="container"
- style="height:100%;"
- >
- <el-row class="h-100p">
- <el-col :span="12" class=" h-100p">
- <div class="h-100p flex flex-d-c ov-hidden">
- <el-tabs v-model="activeName" @tab-click="handleClick" >
- <el-tab-pane label="竣工档案目录" name="first" >
- </el-tab-pane>
- <el-tab-pane label="文书档案目录" name="second">
- </el-tab-pane>
- </el-tabs>
- <div class="scrollClass " style="height:100%">
- <el-input
- placeholder="输入关键字进行过滤"
- clearable
- v-model="filterText"
- >
- </el-input>
- <div style="height:100%;overflow-y: auto;" class="scrollClass ">
- <el-scrollbar style="height:75%">
- <el-tree
- style="box-sizing: border-box;"
- v-show="!filterText"
- ref="trees1"
- :props="props"
- :load="loadNode"
- node-key="id"
- :default-expanded-keys="defaultExpandedKeys"
- :current-node-key="curreenttid"
- @node-click="nodeClick"
- lazy >
- <div
- class="custom-tree-node "
- style="flex: 1;width: 100%;justify-content: flex-start;"
- :class="data.moreShow ? 'show' : ''"
- slot-scope="{ node, data }"
- @mouseover="mouseOver(data)"
- @mouseleave="mouseLeave(data)"
- >
- <!-- <span style="text-overflow: ellipsis;width:101%;">{{ data.title }}</span> -->
- <span v-if="data.title&&data.title.length<=30">{{data.title | ellipsis}}</span>
- <el-tooltip v-if="data.title&&data.title.length>30" :content="data.title" raw-content placement="top-start" effect="light">
- <span v-if="data.title &&data.title.length <=30">{{ data.title }}</span>
- <span v-if="data.title && data.title.length > 30"> {{data.title | ellipsis}}</span>
- </el-tooltip>
- <span
- class="marleft10"
- v-show="data.moreShow"
- >
- <div class="normal-black ">
- <div >
- <el-link :underline="false">
- <i
- class="el-icon-menu "
- @click.stop="showMenu($event,data, node)"
- v-if="node.level != 1"
- ></i>
- </el-link>
- <!-- 因右键自定义菜单事件需要获取当前点击的位置,所以此处绑定动态样式来控制菜单实时跟踪鼠标右键点击位置 -->
- <ul
- v-show="menuvisible"
- :style="{ left: menuleft + 'px', top: menutop + 'px' }"
- class="contextmenu"
- >
- <li v-for="item in menusData" :key="item" @click="menuClick($event,item,data,node)">
- <i :class="item.icon"></i>
- <span>{{item.label}}</span>
- </li>
- </ul>
- </div>
- </div>
- </span>
- </div>
- </el-tree>
- <el-tree
- v-show="filterText"
- :default-expanded-keys='defaultExpanded'
- :props="props"
- :data="data"
- node-key="id"
- ref="trees2"
- :default-expand-all="true"
- :filter-node-method="filterNode"
- :current-node-key="curreenttid"
- >
- <span
- class="custom-tree-node flexStar"
- style="flex: 1;width: 100%;justify-content: flex-start;"
- :class="data.moreShow ? 'show' : ''"
- slot-scope="{ node, data }"
- @mouseover="mouseOver(data)"
- @mouseleave="mouseLeave(data)"
- >
- <!-- <span style="text-overflow: ellipsis;width:101%;">{{ data.title }}</span> -->
- <span v-if="data.title&&data.title.length<=30">{{data.title | ellipsis}}</span>
- <el-tooltip v-if="data.title&&data.title.length>30" :content="data.title" raw-content placement="top-start" effect="light">
- <span v-if="data.title &&data.title.length <=30">{{ data.title }}</span>
- <span v-if="data.title && data.title.length > 30"> {{data.title | ellipsis}}</span>
- </el-tooltip>
- <span
- class="marleft10"
- v-show="data.moreShow"
- >
- <div class="normal-black ">
- <div >
- <el-link :underline="false">
- <i
- class="el-icon-menu "
- @click.stop="showMenu($event,data, node)"
- v-if="node.level != 1"
- ></i>
- </el-link>
- <!-- 因右键自定义菜单事件需要获取当前点击的位置,所以此处绑定动态样式来控制菜单实时跟踪鼠标右键点击位置 -->
- <ul
- v-show="menuvisible"
- :style="{ left: menuleft + 'px', top: menutop + 'px' }"
- class="contextmenu"
- >
- <li v-for="item in menusData" :key="item" @click="menuClick($event,item,data,node)">
- <i :class="item.icon"></i>
- <span>{{item.label}}</span>
- </li>
- </ul>
- </div>
- </div>
- </span>
- </span>
- </el-tree>
- </el-scrollbar>
- </div>
- </div>
- </div>
- </el-col>
- <el-col :span="12" class="h-100p">
- <basic-container class=" h-100p ">
- <div class="peizhi h-100p ov-hidden" v-loading="rightTreeLoading">
- <el-tabs v-model="activetabName" @tab-click="handletabClick">
- <el-tab-pane label="立卷规则" name="second">
- <el-row style="margin-bottom:15px">
- <el-button type="primary" plain @click="setHigh">设置为最高并卷层级</el-button>
- <el-button type="primary" plain @click="setType">设置为分类卷并卷</el-button>
- <el-button type="primary" plain @click="setAlone">设置为独立组卷</el-button>
- </el-row>
- <div style="display: flex;justify-content: space-between;">
- <el-select v-model="publictreevalue" clearable placeholder="请选择公有质检化分树" @change="treeIdChange" style=" margin-bottom:15px; width:45%;">
- <el-option
- v-for="item in publictreeoptions"
- :key="item.id"
- :label="item.wbsName"
- :value="item.id">
- </el-option>
- </el-select>
- <el-select v-model="testtreevalue" clearable placeholder="请选择公有试验化分树" @change="treeIdChange" style=" width: 45%;">
- <el-option
- v-for="item in testtreeoptions"
- :key="item.id"
- :label="item.wbsName"
- :value="item.id">
- </el-option>
- </el-select>
- </div>
- </el-tab-pane>
- <el-tab-pane label="工程文件入口配置" name="first"></el-tab-pane>
- </el-tabs>
- <div class="scrollClass " v-if="activetabName==='second'" style="height:100%">
- <el-scrollbar style="height:80%">
- <el-tree
- :props="Rightprops"
- :data="rightData"
- node-key="id"
- ref="settree"
- class="filter-tree"
- show-checkbox :check-strictly="true"
- @check="handleCheckChange"
- :default-expanded-keys="defaultExpandedKeys1"
- :current-node-key="curreenttid1"
- >
- <div class="custom-tree-node" slot-scope="{ node, data }" @mouseover="mouseOver(data)" style="flex: 1;width: 100%;justify-content: flex-start;"
- @mouseleave="mouseLeave(data)">
- <!-- <span>{{ node.label }}</span> -->
- <span v-if="node.label&&node.label.length<=25">{{node.label | ellipsis1}}</span>
- <el-tooltip v-if="node.label&&node.label.length>25" :content="node.label" raw-content placement="top-start" effect="light">
- <span v-if="node.label &&node.label.length <=25">{{node.label}}</span>
- <span v-if="node.label && node.label.length > 25"> {{node.label | ellipsis1}}</span>
- </el-tooltip>
- <span class="marleft10"
- v-show="data.moreShow">
- <div class="config_type" v-if="data.archiveAutoType == 1&&data.archiveAutoGroupSelect == 1">最</div>
- <div class="config_type" v-if="data.archiveAutoType == 2&&data.archiveAutoGroupSelect == 1">分</div>
- <div class="config_type" v-if="data.archiveAutoType == 3&&data.archiveAutoGroupSelect == 1">独</div>
- <el-button
- type="text"
- size="mini"
- @click.stop="() => viewConfig(data,node)">
- 查看配置
- </el-button>
- <el-link @click.stop="removeArchive(data)" type="danger" :underline="false" class="marleft10"><i class="el-icon-delete"></i></el-link>
- </span>
- </div>
- </el-tree>
- </el-scrollbar>
- </div>
- <div class="flexEnd" v-if="isentryTree&&activetabName==='first'">
- <i
- @click="rightPushTree"
- class="el-icon-plus"
- style="backgroundColor:#2A97DF;color:#fff;fontSize:20px;cursor: pointer;"
- ></i>
- </div>
- <div class="scrollClass " v-if="isentryTree&&activetabName==='first'" style="height:100%">
- <el-scrollbar style="height:80%">
- <el-tree
- :props="Rightprops"
- :data="rightData"
- node-key="id"
- ref="tree"
- class="filter-tree"
- >
- <div class="custom-tree-node" slot-scope="{ node, data }" @mouseover="mouseOver(data)"
- @mouseleave="mouseLeave(data)">
- <!-- <span>{{ node.label }}</span> -->
- <span v-if="node.label&&node.label.length<=25">{{node.label | ellipsis1}}</span>
- <el-tooltip v-if="node.label&&node.label.length>25" :content="node.label" raw-content placement="top-start" effect="light">
- <span v-if="node.label &&node.label.length <=25">{{node.label}}</span>
- <span v-if="node.label && node.label.length > 25"> {{node.label | ellipsis1}}</span>
- </el-tooltip>
- </div>
- </el-tree>
- </el-scrollbar>
- </div>
- </div>
- </basic-container>
- </el-col>
- </el-row>
- <!-- 新增编辑 -->
- <el-dialog
- :title="form.id?'编辑':'新增'"
- :visible.sync="treeTap"
- width="700px"
- :modal-append-to-body="false"
- @close="treeClose"
- >
- <div>
- <el-form
- ref="form"
- :model="form"
- label-width="120px"
- :rules="rules"
- >
- <el-form-item
- label="节点名称"
- prop="nodeName"
- >
- <el-input
- v-model="form.nodeName"
- style="width:400px;"
- ></el-input>
- </el-form-item>
- <el-form-item
- label="岗位类型"
- prop="postType"
- >
- <el-select
- v-model="form.postType"
- placeholder="请选择岗位"
- style="width:400px;"
- >
- <el-option
- v-for="item in JobTypeList"
- :key="item.id"
- :label="item.title"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- label="节点类型"
- prop="nodeType"
- >
- <el-select
- v-model="form.nodeType"
- placeholder="请选择节点"
- style="width:400px;"
- >
- <el-option
- v-for="item in nodeTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- label="工程类型"
- prop="projectType"
- >
- <el-select
- v-model="form.projectType"
- placeholder="工程类型"
- style="width:400px;"
- >
- <el-option
- v-for="item in projectTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- label="并卷规则"
- prop="archiveAutoType"
- >
- <el-select
- v-model="form.archiveAutoType"
- style="width:400px;"
- >
- <el-option
- v-for="item in ruleTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- label="储存类型"
- prop="storageType"
- v-if="form.nodeType==1"
- >
- <el-select
- v-model="form.storageType"
- style="width:400px;"
- placeholder="请选择"
- >
- <el-option
- v-for="item in storageTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <template v-if="form.nodeType==2">
- <el-form-item
- label="是否存储节点"
- prop="isStorageNode"
- >
- <el-select
- v-model="form.isStorageNode"
- style="width:400px;"
- >
- <el-option
- v-for="item in storageNodeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
-
- <template v-if="form.isStorageNode==1">
- <el-form-item
- label="保管期限"
- prop="storageTime"
- >
- <el-select
- v-model="form.storageTime"
- style="width:400px;"
- >
- <el-option
- v-for="item in timeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- label="储存类型"
- prop="storageType"
- >
- <el-select
- v-model="form.storageType"
- style="width:400px;"
- placeholder="请选择"
- >
- <el-option
- v-for="item in storageTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item
- label="是否竣工图"
- prop="isBuiltDrawing"
- >
- <el-select
- v-model="form.isBuiltDrawing"
- style="width:400px;"
- >
- <el-option
- v-for="item in builtDrawingList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item> -->
- <el-form-item
- label="是否接口节点"
- prop="isInterfaceNode"
- >
- <el-select
- v-model="form.isInterfaceNode"
- style="width:400px;"
- >
- <el-option
- v-for="item in interfaceNodeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <template v-if="form.isInterfaceNode==1">
- <el-form-item label="选择接口类型">
- <el-select
- v-model="form.interfaceType"
- style="width:400px;"
- >
- <el-option
- v-for="item in interfaceTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </template>
- </template>
- </template>
- <!-- 数字化文件上传 -->
- <template v-if="form.nodeType==1">
- <el-form-item
- label="关联类型"
- prop="associationType"
- >
- <el-select
- v-model="form.associationType"
- style="width:400px;"
- placeholder="请选择"
- >
- <el-option
- v-for="item in associationTypeList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <template v-if="form.associationType==1">
- <el-form-item
- label="业内资料类型"
- prop="majorDataType"
- >
- <el-checkbox-group v-model="form.majorDataType">
- <el-checkbox
- v-for="item in majorDataTypeList"
- :key="item.dictKey"
- :label="item.dictKey"
- name="type"
- >{{item.dictValue}}</el-checkbox>
- </el-checkbox-group>
- </el-form-item>
- <el-form-item
- label="显示层级"
- prop="displayHierarchy"
- >
- <el-select
- v-model="form.displayHierarchy"
- style="width:400px;"
- placeholder="请选择"
- >
- <el-option
- v-for="item in displayHierarchyList"
- :key="item.dictKey"
- :label="item.dictValue"
- :value="item.dictKey"
- ></el-option>
- </el-select>
- </el-form-item>
- </template>
- <template v-if="form.associationType==2">
- <el-form-item
- label="文件类型"
- prop="expDataType"
- >
- <el-checkbox-group v-model="form.expDataType">
- <el-checkbox
- v-for="item in fileTypeList"
- :key="item.value"
- :label="item.label"
- >{{item.label}}</el-checkbox>
- </el-checkbox-group>
- </el-form-item>
- </template>
- </template>
- </el-form>
- </div>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="treeTap=false">取 消</el-button>
- <el-button
- type="primary"
- @click="saveTree"
- >保 存</el-button>
- </span>
- </el-dialog>
- <!-- 右侧树 -->
- <el-dialog
- title="上传文件入口显示配置"
- :visible.sync="pushfileTap"
- :modal-append-to-body='false'
- width="800px"
- @close="pushFileClose"
- >
- <div style="width: 100%;overflow-x: auto;">
- <el-tree
- :props="dialogProps"
- show-checkbox
- :data="dialogData"
- node-key="id"
- accordion
- ref="trees"
- class="filter-tree"
- >
- </el-tree>
- </div>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="pushfileTap = false">取 消</el-button>
- <el-button
- type="primary"
- @click="saveFile"
- >确 定</el-button>
- </span>
- </el-dialog>
- <!-- wbs树排序弹框 -->
- <el-dialog
- title="调整排序"
- :visible="sortTag"
- width="50%"
- append-to-body
- >
- <ManualSorting
- v-if="sortTag2"
- @bianhua='bianhua()'
- :sort='sort'
- />
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="sortTag=false,sortTag2=false">取 消</el-button>
- <el-button
- type="primary"
- @click="editSort()"
- >确 定</el-button>
- </span>
- </el-dialog>
- <!-- 设置最高层级 -->
- <el-dialog
- :title="setName"
- :visible.sync="highVisible"
- width="50%"
- append-to-body
- >
- <el-checkbox-group v-model="checkList" class="wraplabel">
- <div v-for="node in nodesList" :key="node.id">
- <el-checkbox :label="node.id" style="margin-bottom:10px;">{{node.pathName}}</el-checkbox>
- </div>
- </el-checkbox-group>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="highVisible=false,highVisible=false">取 消</el-button>
- <el-button
- type="primary"
- @click="setRecordsHandle()"
- >确 定</el-button>
- </span>
- </el-dialog>
- <!-- 查看配置 -->
- <!-- <el-dialog
- title="设置最高并卷层级"
- :visible.sync="configVisible"
- width="50%"
- append-to-body
- >
- <el-tabs v-model="configactiveName" @tab-click="confighandleClick">
- <el-tab-pane label="最高层级配置" name="first"></el-tab-pane>
- <el-tab-pane label="分类并卷配置" name="second"></el-tab-pane>
- <el-tab-pane label="独立组卷配置" name="third"></el-tab-pane>
- </el-tabs>
- <el-checkbox-group v-model="checkList">
- <el-checkbox label="复选框 A" style="margin-bottom:10px"></el-checkbox><br/>
- <el-checkbox label="复选框 B" style="margin-bottom:10px"></el-checkbox><br/>
- <el-checkbox label="复选框 C" style="margin-bottom:10px"></el-checkbox><br/>
- </el-checkbox-group>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="configVisible=false,configVisible=false">取 消</el-button>
- <el-button
- type="primary"
- @click="editSort()"
- >确 定</el-button>
- </span>
- </el-dialog> -->
- <el-dialog
- :visible.sync="configVisible"
- width="50%"
- append-to-body
- >
- <div v-if="configInfo && configInfo.type">
- <div class="config-type-name">
- <span>配置类别:</span>
- <span v-if="configInfo.type == 1">最高并卷层级</span>
- <span v-if="configInfo.type == 2">分类并卷</span>
- <span v-if="configInfo.type == 3">独立组卷</span>
- </div>
- <template v-if="configInfo.type !== 2">
- <div class="config-allname">
- {{configInfo.data.allName}}
- </div>
- </template>
- <template v-else>
- <el-tree :data="configInfo.data.tree" :props="{label: 'nodeName'}" show-checkbox :check-strictly="true" :default-checked-keys="checkedKeys" :default-expanded-keys="checkedKeys" node-key="id" ref="configtree" @check="configCheckChange" class="config-allname"></el-tree>
- </template>
- </div>
- <div style="text-align: center;font-size: 22px;" v-else>
- 该节点尚未配置
- </div>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="configVisible=false">取消查看</el-button>
- <el-button v-if="configInfo && configInfo.type == 2"
- type="primary"
- @click="changeConfig"
- >确认修改配置</el-button>
- </span>
- </el-dialog>
- </basic-container>
- </template>
- <script>
- import ManualSorting from '@/components/WbsTree/ManualSorting'
- import { archiveTreeInit, lazyTree, dictionary, remove, archiveTreeSave, archiveTreeUpdate, archiveTreeDetail, archiveTreetree, submitDisplayConfigTree, getSameGradeNode, submitArchiveTreeSort,saveArchiveAutoRule,getArchiveAutoRule,updateArchiveAutoRule,removeArchiveAutoRule} from "@/api/manager/archivetree";
- import {getWbsList} from "@/api/manager/wbsinfo";
- import { getToken } from '@/util/auth';
- import { roletree } from "@/api/system/role.js";
- import logoVue from '../../page/index/logo.vue';
- import { getStore, setStore } from "@/util/store";
- export default {
- components: {
- ManualSorting,
- },
- data () {
- return {
- publictreeoptions: [],
- publictreevalue:'',
- testtreeoptions: [],
- testtreevalue:'',
- activeName: 'second',
- activetabName:'second',
- configactiveName:'second',
- isentryTree:true,
- checkList:[],
- //#region 左侧树
- defaultExpanded: [],//默认选中的节点
- filterText: '',//筛选条件
- rulefilterText:'',
- treeNode: {},
- treeParent:{},//选中节点的父级
- nodeNames: '',
- token: '',
- props: {
- label: 'title',
- children: 'children',
- isLeaf: 'hasChildren'
- },
- data: [],//树节点枚举值
- //#endregion
- //#region 新增编辑节点弹框
- treeTap: false,
- form: {
- id: '',//新增还是编辑
- parentId: '', //上级节点id
- nodeName: "", //节点名称
- nodeType: '', // 节点类型 2 = 数字化上传文件
- postType: '', //岗位类型
- isStorageNode: '', //是否为存储节点
- // isBuiltDrawing: '', //竣工图
- isInterfaceNode: '', //是否接口节点
- interfaceType: '', //选择接口类型
- associationType: '', //关联类型
- majorDataType: [], //内业资料类型
- displayHierarchy: '', //显示层级
- projectType:'',//工程类型
- storageType:'',//储存类型
- expDataType:[],//文件类型
- archiveAutoType:1,//并卷规则
- storageTime:'3',//保管期限
- },
- rules: {
- nodeName: [{ required: true, message: '请输入节点名称', trigger: 'blur' }],
- postType: [{ required: true, message: '请选择岗位类型', trigger: 'change' }],
- nodeType: [{ required: true, message: '请选择节点类型', trigger: 'change' }],
- isStorageNode: [{ required: true, message: '请选择存储节点', trigger: 'change' }],
- // isBuiltDrawing: [{ required: true, message: '请选择竣工图', trigger: 'change' }],
- isInterfaceNode: [{ required: true, message: '请选择接口节点', trigger: 'change' }],
- interfaceType: [{ required: true, message: '请选择接口类型', trigger: 'change' }],
- associationType: [{ required: true, message: '请选择关联类型', trigger: 'change' }],
- majorDataType: [{ required: true, message: '请选择业内资料类型', trigger: 'change' }],
- displayHierarchy: [{ required: true, message: '请选择显示层级', trigger: 'change' }],
- projectType: [{ required: true, message: '请选择工程类型', trigger: 'change' }],
- storageType: [{ required: true, message: '请选择储存类型', trigger: 'change' }],
- expDataType: [{ required: true, message: '请选择文件类型', trigger: 'change' }],
- },
- JobTypeList: [],//岗位类型枚举
- nodeTypeList: [
- {
- label: '关联电子原生文件',
- value: 1
- }, {
- label: '数字化上传文件',
- value: 2
- },
- ],//节点类型枚举
- projectTypeList:[
- {
- label: '水利水电工程',
- value: 1
- }, {
- label: '公路工程',
- value: 2
- }, {
- label: '全部',
- value: 3
- },
- ],//工程类型枚举
- storageTypeList:[
- {
- label: '普通',
- value: 1
- },{
- label: '竣工图',
- value: 2
- },{
- label: '计量',
- value: 3
- },{
- label: '质检',
- value: 4
- },{
- label: '声像',
- value: 5
- },{
- label: '隐蔽',
- value: 6
- },{
- label: '原材试验',
- value: 7
- },{
- label: '管理文件',
- value: 8
- },{
- label: '变更令',
- value: 9
- },
- ],//储存类型枚举
- storageNodeList: [{
- label: '是',
- value: 1
- }, {
- label: '否',
- value: 2
- },],//存储节点枚举
- ruleTypeList: [
- {
- label: '单独组卷',
- value: 1
- }, {
- label: '分类并卷',
- value: 2
- },
- {
- label: '最高组卷',
- value: 3
- },
- ],
- timeList: [
- { label: '永久', value: '3' },
- { label: '30年', value: '2' },
- { label: '10年', value: '1' },
- ],
- builtDrawingList: [{
- label: '是',
- value: 1
- }, {
- label: '否',
- value: 2
- },],//竣工图枚举
- interfaceNodeList: [{
- label: '是',
- value: 1
- }, {
- label: '否',
- value: 2
- },],//接口节点枚举
- interfaceTypeList: [
- {
- label: '试验接口',
- value: 1
- }, {
- label: '计量接口',
- value: 2
- },
- ],//选择接口类型枚举
- associationTypeList: [{
- label: '质检资料',
- value: 1
- },
- {
- label: '试验资料',
- value: 2
- },
- {
- label: '影像资料',
- value: 3
- },
- {
- label: '台账资料',
- value: 4
- },{
- label: '首件资料',
- value: 5
- },{
- label: '日志文件',
- value: 6
- },
- ],//
- fileTypeList:[
- {
- label: '配合比',
- value: 1
- },
- {
- label: '原材',
- value: 2
- },{
- label: '汇总',
- value: 3
- },{
- label: '设备',
- value: 4
- },{
- label: '外委(第三方)',
- value: 5
- },
- ],
- majorDataTypeList: [],//
- displayHierarchyList: [],//
- //#endregion
- //#region 右侧树节点
- pushfileTap: false,//开关
- Rightprops: {
- label: 'title'
- },
- rightData: [],
- rightTreeLoading:false,//右侧树加载
- //#endregion
- //#region 右侧树弹框
- dialogProps: {
- label: 'title'
- },
- dialogData: [],
- checkXuan: [],
- //#endregion
- heights: '',
- sortTag2: false,
- sortTag: false,
- sort: [],
- ruledata: [{
- id: 1,
- label: '一级 1',
- children: [{
- id: 4,
- label: '二级 1-1',
- children: [{
- id: 9,
- label: '三级 1-1-1'
- }, {
- id: 10,
- label: '三级 1-1-2'
- }]
- }]
- }, {
- id: 2,
- label: '一级 2',
- children: [{
- id: 5,
- label: '二级 2-1'
- }, {
- id: 6,
- label: '二级 2-2'
- }]
- }, {
- id: 3,
- label: '一级 3',
- children: [{
- id: 7,
- label: '二级 3-1'
- }, {
- id: 8,
- label: '二级 3-2'
- }]
- }],
- ruledefaultProps: {
- children: 'children',
- label: 'label'
- },
- highVisible:false,
- configVisible:false,
- archiveAutoType:'',//最高1 分类2 独立3
- nodesList:[],
- configInfo:null,
- checkedKeys:[],//分类并卷 回显 勾选数组
- treeSelectId:'',//选中的划分树
- menusData:[
- {icon: 'el-icon-plus', label: '新增', key: "add"},
- {icon: 'el-icon-s-promotion', label: '编辑', key: "edit"},
- {icon: 'el-icon-sort', label: '排序', key: "sort"},
- {icon: 'el-icon-delete', label: '删除', key: "del"},
- ],//树组件操作菜单
- menuvisible:false,
- menuleft:20,
- menutop:0,
- defaultExpandedKeys:[],
- defaultExpandedKeys1:[],
- expandName: this.$route.fullPath,
- curreenttid:'',
- curreenttid1:''
- }
- },
- computed:{
- setName(){
- let name = '';
- switch (this.archiveAutoType) {
- case 1:
- name = '设置最高并卷层级';
- break;
- case 2:
- name = '设置分类并卷层级';
- break;
- case 3:
- name = '设置单独并卷层级';
- break;
- }
- return name;
- }
- },
- methods: {
- //切换tabs
- handleClick(tab, event) {
- console.log(tab, event);
- },
- handletabClick(tab, event) {
- console.log(tab, event);
- },
- confighandleClick(tab, event) {
- console.log(tab, event);
- },
- setHigh(){
- if(this.showHighVisible()){
- this.archiveAutoType =1;
- }
- //console.log('设置最高');
- },
- setType(){
- if(this.showHighVisible()){
- this.archiveAutoType =2;
- }
- //console.log('设置类型');
- },
- setAlone(){
- if(this.showHighVisible()){
- this.archiveAutoType =3;
- }
- //console.log('设置独立');
- },
- showHighVisible(){
- if(!this.publictreevalue && !this.testtreevalue){
- this.$message({
- message: '请先在下拉框选择树,在勾选树节点,再进行设置',
- type: 'warning'
- });
- return false;
- }
- let nodes = this.$refs.settree.getCheckedNodes();
- if(nodes.length < 1){
- this.$message({
- message: '请先勾选节点,再进行设置',
- type: 'warning'
- });
- return false;
- }
- let ids = [];
- nodes.forEach((element)=>{
- element.pathName = this.getTreeNodePath(element,'settree')
- ids.push(element.id);
- })
- //console.log(nodes)
- this.checkList = ids;
- this.nodesList = nodes;
- this.highVisible=true;
- return true;
- },
- async viewConfig(data,node){
- console.log(data,'查看配置');
- //获取节点展开路径
- this.getExpandedKeys1(node);
- this.configInfo = null;
- const { data: res } = await getArchiveAutoRule({
- nodeId:data.id,//归档树节点的id 或者 挂载wbs节点的ID(具体哪个ID待定)
- iswbsNode:data.iswbsNode,//是否是wbs节点
- projectId:0,// 系统级为0 项目级为项目id
- wbsNode2ArchiveTreeNodeId:data.wbsNode2ArchiveTreeNodeId,// 这个树节点里面有(iswbsNode为true需传)
- wbsId:this.treeSelectId // 这个就是一开始上面选择划分树的id(iswbsNode为true需传)
- })
- if (res.code == 200 && res.msg == "操作成功") {
- //console.log(res.data)
- if(res.data.type){
- this.configInfo = res.data;
- }else if(res.data.archiveAutoType){
- this.configInfo = {
- type:2,
- data:res.data
- }
- this.checkedKeys = res.data.selectNodeIds.split(',');
- }
- this.configVisible=true
- }
- },
- handleCheckChange(data, checks) {
- //console.log(data, checks);
- let array = checks.checkedNodes;
- for (let index = 1; index < array.length; index++) {
- const element = array[index];
- if(element.iswbsNode !== array[0].iswbsNode){
- //取消勾选
- this.$refs.settree.setChecked(data.id,false,false)
- this.$message({
- message: '非wbs节点不能和wbs节点一起设置规则',
- type: 'warning'
- });
- return;
- }
- }
- },
- handleentrybtn(){
- console.log(this.entrybtn,'entrybtn');
- this.isentryTree=false;
- },
- handlerulebtn(){
- this.isentryTree=true;
- console.log(this.rulebtn,'rulebtn');
- },
- savebtn(){
- this.isentryTree=true;
- },
- paixuMD (data) {
- this.sortTag = true
- this.sortTag2 = true
- this.curTreeData = data;
- this.findWbsTreeSameLevel(data.id)
- },
- async findWbsTreeSameLevel (parentId) {//查询当前节点的同级节点
- const { data: res } = await getSameGradeNode({ id: parentId })
- //console.log(res);
- if (res.code === 200) {
- this.sort = res.data
- }
- },
- bianhua () {
- this.sortTag2 = false
- this.$nextTick(() => {
- this.sortTag2 = true
- })
- },
- editSort () {//修改排序
- let sortArr = this.sort, newArr = []
- for (let i = 0; i < sortArr.length; i++) {
- newArr.push({
- id: sortArr[i].id,
- nodeName: sortArr[i].nodeName
- })
- }
- this.wbsTreeSort(newArr)
- },
- async wbsTreeSort (newArr) {//修改排序
- const { data: res } = await submitArchiveTreeSort(newArr)
- //console.log(res);
- if (res.code == 200) {
- this.sortTag = false
- this.sortTag2 = false
- //刷新页面
- window.location.reload()
- }
- },
- //#region 左侧树方法
- async loadNode (node, resolve) {
- console.log(node);
- if (node.level === 0) {
- let ks = await this.lazyTree(0)
- if (ks.length) {
- resolve(ks)
- } else {
- this.archiveTreeInit()
- }
- } else {
- resolve(await this.lazyTree(node.data.id))
- }
- },
- async archiveTreeInit () {//添加根节点
- const { data: res } = await archiveTreeInit()
- console.log(res);
- if (res.code == 200 && res.msg == '操作成功') {
- res.data.forEach(val => {
- val.hasChildren = !val.hasChildren
- });
- return res.data
- } else if (res.code == 200 && res.msg == "未查询到信息") {
- return []
- }
- },
- async lazyTree (parentId) {//树节点懒加载
- const { data: res } = await lazyTree({
- parentId,
- token: this.token,
- projectId:0
- })
- console.log(res);
- if (res.code == 200 && res.msg == '操作成功') {
- res.data.forEach(val => {
- val.hasChildren = !val.hasChildren
- });
- return res.data
- } else if (res.code == 200 && res.msg == "未查询到信息") {
- return []
- }
- },
- mouseLeave (data) {
- if (data.moreShow) {
- this.$set(data, 'moreShow', false)
- this.menuvisible=false
- }
- },
- mouseOver (data) {
- console.log(1111111);
- if (!data.moreShow) {
- this.$set(data, 'moreShow', true)
- }
- },
- //获取节点展开路径
- getExpandedKeys(node) {
- //console.log(node)
- let expandedKeys = [];
- while (node.parent) {
- expandedKeys.push(node.data.id);
- node = node.parent;
- }
- setStore({
- name: this.expandName,
- content: expandedKeys,
- type: true, //sessionStorage
- });
- //console.log(expandedKeys)
- },
- getExpandedKeys1(node) {
- //console.log(node)
- let expandedKeys = [];
- while (node.parent) {
- expandedKeys.push(node.data.id);
- node = node.parent;
- }
- setStore({
- name: 'configkey',
- content: expandedKeys,
- type: true, //sessionStorage
- });
- //console.log(expandedKeys)
- },
- nodeClick(data,node){
- //获取节点展开路径
- this.getExpandedKeys(node);
- setStore({
- name: 'curreenttid',
- content: data.id,
- type: true, //sessionStorage
- });
- },
- addtree (data, node) {//添加树
- console.log(data);
- if (this.JobTypeList.length == 0) {
- this.roletree()
- }
- if (this.majorDataTypeList.length == 0) {
- this.major_data_type()//内业资料类型
- }
- if (this.displayHierarchyList.length == 0) {
- this.display_hierarchy()//显示层级
- }
- this.form.postType = data.postType
- this.form.id = ''
- this.form.parentId = data.id
- if (this.filterText) {
- this.defaultExpanded = [data.id]
- }
- this.form.archiveAutoType=1
- this.treeTap = true
- },
- async edittree (data,node) {//编辑树
- console.log(node,'node');
- if (this.JobTypeList.length == 0) {
- this.roletree()
- }
- if (this.majorDataTypeList.length == 0) {
- this.major_data_type()//内业资料类型
- }
- if (this.displayHierarchyList.length == 0) {
- this.display_hierarchy()//显示层级
- }
- await this.archiveTreeDetail(data)
- this.form.id = data.id
- this.form.parentId = ''
- this.treeNode = data
- this.treeParent=node.parent.data
- this.treeTap = true
- },
- deletetree (node) {//删除树
- console.log(node);
- let _that = this
- this.$confirm('是否删除此数据', '提示', {
- distinguishCancelAndClose: true,
- confirmButtonText: '确认',
- cancelButtonText: '取消'
- })
- .then(() => {
- console.log(1111111);
- this.remove(node.id).then(()=>{
- _that.$refs.trees1.remove(node) //删除界面上的节点
- this.archiveTreetree4()//全加载左侧树
- }).catch(()=>{
- })
- })
- .catch(() => {
- });
- },
- async remove (id) {//删除接口
- console.log('删除');
- const { data: res } = await remove({ id })
- console.log(res);
- if (res.code == 200) {
- this.$message({
- type: 'success',
- message: '删除成功'
- })
- }
- },
- async archiveTreeDetail (data) {//详情接口
- console.log(data);
- const { data: res } = await archiveTreeDetail({ id: data.id ,projectId:0})
- console.log(res);
- if (res.code == 200) {
- this.form.nodeName = res.data.fullName //节点名称
- this.form.nodeType = res.data.nodeType // 节点类型 2 = 数字化上传文件
- this.form.postType = res.data.postType //岗位类型
- this.form.isStorageNode = res.data.isStorageNode //是否为存储节点
- // this.form.isBuiltDrawing = res.data.isBuiltDrawing //竣工图
- this.form.isInterfaceNode = res.data.isInterfaceNode //是否接口节点
- this.form.interfaceType = res.data.interfaceType //选择接口类型
- this.form.associationType = res.data.associationType //关联类型
- // this.form.majorDataType = res.data.majorDataType.split(',') //内业资料类型
- this.form.displayHierarchy = res.data.displayHierarchy //显示层级
- this.form.projectType = res.data.projectType //工程类型
- this.form.storageType = res.data.storageType //储存类型
- if(res.data.expDataType){
- this.form.expDataType = res.data.expDataType.split(',') //文件类型
- }else{
- this.form.expDataType = [];
- }
- if(res.data.majorDataType){
- this.form.majorDataType = res.data.majorDataType.split(',') //文件类型
- }else{
- this.form.majorDataType = [];
- }
- }
- },
- async archiveTreetree4 () {//全加载左侧树
- const { data: res } = await archiveTreetree({
- // token: this.token,
- projectId:0
- })
- console.log(res);
- if (res.code == 200 && res.msg == "操作成功") {
- this.data = res.data
- }
- },
- filterNode (value,data,node) {//筛选条件
- if (!value) return true;
- return data.title.indexOf(value) !== -1;
- },
- rulefilterNode (value,data,node) {//筛选条件
- if (!value) return true;
- return data.title.indexOf(value) !== -1;
- },
- //判断节点是否匹配
- getReturnNode(node,_array,value){
- let isPass = node.data && node.data.title && node.data.title.indexOf(value) !== -1;
- isPass?_array.push(isPass):'';
- //判断节点是否是父节点
- if(!isPass && node.level!=1 && node.parent){
- this.getReturnNode(node.parent,_array,value);
- }
- },
- //#endregion
- //#region 新增编辑节点弹框
- treeClose () {//弹框关闭事件
- this.form = {
- parentId: '', //上级节点id
- nodeName: "", //节点名称
- nodeType: '', // 节点类型 2 = 数字化上传文件
- postType: '', //岗位类型
- isStorageNode: '', //是否为存储节点
- // isBuiltDrawing: '', //竣工图
- isInterfaceNode: '', //是否接口节点
- interfaceType: '', //选择接口类型
- associationType: '', //关联类型
- majorDataType: [], //内业资料类型
- displayHierarchy: '', //显示层级
- projectType:'',//工程类型
- storageType:'',//储存类型
- expDataType:[],//文件类型
- }
- this.$refs.form.resetFields();
- this.form.id = ''
- this.treeTap = false
- },
- async roletree () {//岗位类型枚举
- const { data: res } = await roletree()
- console.log(res);
- if (res.code == 200) {
- this.JobTypeList = res.data
- }
- },
- async major_data_type () {//内业资料类型
- const { data: res } = await dictionary({ code: 'major_data_type' })
- console.log(res);
- if (res.code == 200) {
- this.majorDataTypeList = res.data
- }
- },
- async display_hierarchy () {//显示层级
- const { data: res } = await dictionary({ code: 'display_hierarchy' })
- console.log(res);
- if (res.code == 200) {
- this.displayHierarchyList = res.data
- }
- },
- saveTree () {//保存按钮
- console.log(this.form.postType,'post');
- console.log(this.treeParent,'treeParent');
- if(this.treeParent.postType&&this.treeParent.postType!= this.form.postType){
- this.$message.warning('岗位类型必须和父级节点岗位类型一直')
- }else{
- this.$refs.form.validate(val => {
- if (val) {
- if (this.form.nodeType == 2) {
- if (this.form.isStorageNode == 1) {
- if (this.form.isInterfaceNode == 1) {
- this.baocun({
- id: this.form.id,
- parentId: this.form.parentId, //上级节点id
- nodeName: this.form.nodeName, //节点名称
- nodeType: this.form.nodeType, // 节点类型
- postType: this.form.postType, //岗位类型
- isStorageNode: this.form.isStorageNode, //是否为存储节点
- // isBuiltDrawing: this.form.isBuiltDrawing, //竣工图
- isInterfaceNode: this.form.isInterfaceNode, //是否接口节点
- interfaceType: this.form.interfaceType, //选择接口类型
- projectType:this.form.projectType, //工程类型
- storageType:this.form.storageType, //储存类型
- })
- } else {
- this.baocun({
- id: this.form.id,
- parentId: this.form.parentId, //上级节点id
- nodeName: this.form.nodeName, //节点名称
- nodeType: this.form.nodeType, // 节点类型
- postType: this.form.postType, //岗位类型
- isStorageNode: this.form.isStorageNode, //是否为存储节点
- // isBuiltDrawing: this.form.isBuiltDrawing, //竣工图
- isInterfaceNode: this.form.isInterfaceNode, //是否接口节点
- projectType:this.form.projectType, //工程类型
- storageType:this.form.storageType, //储存类型
- })
- }
- } else {
- this.baocun({
- id: this.form.id,
- parentId: this.form.parentId, //上级节点id
- nodeName: this.form.nodeName, //节点名称
- nodeType: this.form.nodeType, // 节点类型
- postType: this.form.postType, //岗位类型
- isStorageNode: this.form.isStorageNode, //是否为存储节点
- projectType:this.form.projectType, //工程类型
- })
- }
- } else if (this.form.nodeType == 1) {
- if (this.form.associationType == 1) {
- this.baocun({
- id: this.form.id,
- parentId: this.form.parentId, //上级节点id
- nodeName: this.form.nodeName, //节点名称
- nodeType: this.form.nodeType, // 节点类型
- postType: this.form.postType, //岗位类型
- associationType: this.form.associationType, //关联类型
- majorDataType: this.form.majorDataType, //内业资料类型
- displayHierarchy: this.form.displayHierarchy, //显示层级
- projectType:this.form.projectType, //工程类型
- storageType:this.form.storageType, //储存类型
- })
- }else if(this.form.associationType == 2){
- //试验资料
- this.baocun({
- id: this.form.id,
- parentId: this.form.parentId, //上级节点id
- nodeName: this.form.nodeName, //节点名称
- nodeType: this.form.nodeType, // 节点类型
- postType: this.form.postType, //岗位类型
- associationType: this.form.associationType, //关联类型
- expDataType:this.form.expDataType.join(','),//文件类型
- projectType:this.form.projectType, //工程类型
- storageType:this.form.storageType, //储存类型
- })
- }else {
- this.baocun({
- id: this.form.id,
- parentId: this.form.parentId, //上级节点id
- nodeName: this.form.nodeName, //节点名称
- nodeType: this.form.nodeType, // 节点类型
- postType: this.form.postType, //岗位类型
- associationType: this.form.associationType, //关联类型
- projectType:this.form.projectType, //工程类型
- storageType:this.form.storageType, //储存类型
- })
- }
- }
- }
- })
- if(this.menuKey='edit'){
- //刷新页面
- window.location.reload()
- }
- }
- },
- async baocun (da) {
- if (da.majorDataType) {
- if (da.majorDataType.length > 0) {
- let das = ''
- da.majorDataType.forEach((val, key) => {
- das += val
- if (da.majorDataType.length - 1 != key) {
- das += ','
- }
- })
- da.majorDataType = das
- }
- }
- if (this.form.id) {
- await this.archiveTreeUpdate(da)
- } else {
- await this.archiveTreeSave(da)
- }
- if (this.filterText) {
- this.archiveTreetree4()
- }
- },
- async archiveTreeSave (da) {//新增
- console.log(da);
- const { data: res } = await archiveTreeSave(da)
- console.log(res);
- if (res.code == 200) {
- this.$message({
- type: 'success',
- message: '新增成功'
- })
- this.treeTap = false
- let das = await this.lazyTree(da.parentId)
- this.$refs.trees1.updateKeyChildren(da.parentId, das)
- let node = this.$refs.trees1.getNode(da.parentId);
- node.isLeaf = false;
- node.isLeafByUser = false;
- }
- },
- async archiveTreeUpdate (da) {//编辑
- const { data: res } = await archiveTreeUpdate(da)
- console.log(res);
- if (res.code == 200) {
- this.$message({
- type: 'success',
- message: '编辑成功'
- })
- this.treeTap = false
- this.treeNode.title = da.nodeName
- this.treeNode.postType = da.postType
- }
- },
- //#endregion
- //#region 右侧树节点
- async rightPushTree () {//右侧节点树
- this.checkXuan = []
- await this.archiveTreetree2({
- // token: this.token,
- nodeType: 2,
- })
- this.pushfileTap = true
- await this.saixuan(this.dialogData)
- console.log(this.checkXuan);
- this.$refs.trees.setCheckedKeys(this.checkXuan);
- },
- // 赛选
- saixuan (da) {//赛选
- if (da.length > 0) {
- let tag = true
- da.forEach(val => {
- if (val.isDisplayTree == 1 && val.hasChildren) {
- let ks = this.saixuan(val.children)
- if (ks) {
- this.checkXuan.push(val.id)
- }
- } else if (val.isDisplayTree == 1 && !val.hasChildren) {
- this.checkXuan.push(val.id)
- } else {
- tag = false
- }
- })
- return tag
- }
- },
- pushFileClose () {//弹框关闭事件
- this.checkXuan = []
- },
- async archiveTreetree (da) {//右侧树全加载接口
- // const { data: res } = await archiveTreetree(da)
- // console.log(res);
- // if (res.code == 200 && res.msg == "操作成功") {
- // this.rightData = res.data
- // }
- },
- //#endregion
- //#region 右侧树弹框
- async submitDisplayConfigTree (ids) {//保存接口
- const { data: res } = await submitDisplayConfigTree({ ids })
- console.log(res);
- if (res.code == 200) {
- this.$message({
- type: 'success',
- message: '设置成功'
- })
- this.archiveTreetree({
- // token: this.token,
- disPlayTree: 1,
- nodeType: 2,
- projectId:0
- })
- this.pushfileTap = false
- }
- },
- async archiveTreetree2 (da) {//右侧树全加载接口
- const { data: res } = await archiveTreetree(da)
- console.log(res);
- if (res.code == 200 && res.msg == "操作成功") {
- this.dialogData = res.data
- }
- },
- saveFile () {//保存按钮
- let zi = this.$refs.trees.getCheckedKeys() //返回选中子节点的key
- let fu = this.$refs.trees.getHalfCheckedKeys()//返回选中子节点的父节点的key
- let arr = [...zi, ...fu]
- if (arr.length > 0) {
- let ids = ''
- arr.forEach((val, key) => {
- ids += val
- if (key != arr.length - 1) {
- ids += ','
- }
- })
- this.submitDisplayConfigTree(ids)
- } else {
- this.$message({
- type: 'error',
- message: '请先设置配置文件'
- })
- }
- },
- //#endregion
- async getWbsList(){
- const datas = await Promise.all([
- getWbsList(1),
- getWbsList(2),
- ])
- //console.log(datas,'ressssss');
- this.publictreeoptions = datas[0].data.data;
- this.testtreeoptions = datas[1].data.data;
- },
- //切换树
- async treeIdChange(id){
- this.treeSelectId = id;
- this.rightTreeLoading = true;
- const { data: res } = await archiveTreetree({
- projectId:0,
- wbsId:id
- })
- //console.log(res);
- this.rightTreeLoading = false;
- if (res.code == 200 && res.msg == "操作成功") {
- this.rightData = res.data
- }
- },
- //获取树节点名字路径
- getTreeNodePath(node,refName){
- let nodeInfo = this.$refs[refName].getNode(node.id);
- //console.log(nodeInfo)
- let pathArr = [];
- while (nodeInfo.parent) {
- pathArr.push(nodeInfo.data.title)
- nodeInfo = nodeInfo.parent
- }
- return pathArr.reverse().join('/');
- },
- async setRecordsHandle(){
- const { data: res } = await saveArchiveAutoRule({
- archiveAutoType:this.archiveAutoType,//最高1 分类2 独立3
- selectNodeIds:this.checkList.join(','),//鼠标选择的节点ID(只要鼠标选择的节点,选择节点的下级子节点那种不要),逗号拼接
- iswbsNode:this.nodesList[0].iswbsNode,//是否是wbs节点
- projectId:0,// 系统级为0 项目级为项目id
- })
- if (res.code == 200 && res.msg == "操作成功") {
- this.$message({
- type: 'success',
- message: '设置成功'
- })
- this.treeIdChange(this.treeSelectId)
- this.highVisible = false;
- }
- },
- //立卷树勾选修改
- configCheckChange(data, checks){
- let array = checks.checkedNodes;
- for (let index = 1; index < array.length; index++) {
- const element = array[index];
- if(element.iswbsNode !== array[0].iswbsNode){
- //取消勾选
- this.$refs.configtree.setChecked(data.id,false,false)
- this.$message({
- message: '非wbs节点不能和wbs节点一起设置规则',
- type: 'warning'
- });
- return;
- }
- }
- },
- //立卷规则修改
- async changeConfig(){
- let keys = this.$refs.configtree.getCheckedKeys();
- let nodes = this.$refs.configtree.getCheckedNodes();
- console.log(nodes)
- const { data: res } = await updateArchiveAutoRule({
- archiveAutoType:2,//最高1 分类2 独立3
- archiveAutoGroupId:this.configInfo.data.archiveAutoGroupId,
- selectNodeIds:keys.join(','),//鼠标选择的节点ID(只要鼠标选择的节点,选择节点的下级子节点那种不要),逗号拼接
- iswbsNode:nodes[0].iswbsNode,//是否是wbs节点
- projectId:0,// 系统级为0 项目级为项目id
- })
- if (res.code == 200 && res.msg == "操作成功") {
- this.$message({
- type: 'success',
- message: '修改成功'
- })
- this.configVisible = false;
- }
- },
- async removeArchive(data){
- this.$confirm('此操作将永久删除配置, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- removeArchiveAutoRule({
- nodeId:data.id,
- iswbsNode:data.iswbsNode,//是否是wbs节点 flase 不是 true 是 (先false,具体怎么区分后面再看)
- projectId:0,// 系统级为0 项目级为项目id
- }).then((res)=>{
- //console.log(res)
- if (res.data.code == 200 && res.data.msg == "操作成功") {
- this.$message({
- type: 'success',
- message: '修改成功'
- })
- }
- })
- });
- },
- //树形控件菜单相关方法
- mouseout(){
- this.menuvisible=false
- },
- //展示菜单
- showMenu(e,data,node){
- e.preventDefault();
- console.log(e,'e');
- var x = e.pageX; //这个应该是相对于整个浏览器页面的x坐标,左上角为坐标原点(0,0)
- var y = e.pageY; //这个应该是相对于整个浏览器页面的y坐标,左上角为坐标原点(0,0)
- this.menutop = y-70;
- this.menuleft = x;
- this.menuvisible=true
- },
- menuClick(e,item,data,node){
- //获取节点展开路径
- this.getExpandedKeys(node);
- this.menuKey=''
- e.preventDefault();
- if(item.key==='add'){
- if(data.isStorageNode!=1){
- this.addtree(data,node)
- this.menuKey='add'
- }else{
- this.$message.warning('该节点下不允许新增节点')
- }
- }
- else if(item.key==='edit'){
- this.edittree(data,node)
- this.menuKey='edit'
- }
- else if(item.key==='del'){
- this.menuKey='del'
- this.deletetree(data,node)
- }else if(item.key==='copy'){
- this.$message.info('暂无相关接口')
- }
- else if(item.key==='sort'){
- this.menuKey='sort'
- this.paixuMD(data,node)
- }
- },
- },
- watch: {
- filterText (val) {
- this.$refs.trees2.filter(val);
- },
- rulefilterText(val) {
- this.$refs.ruletree.filter(val);
- }
- },
- created () {
- this.token = 'bearer ' + getToken()
- this.archiveTreetree({
- // token: this.token,
- disPlayTree: 1,
- nodeType: 2,
- projectId:0
- })
- this.defaultExpandedKeys = getStore({ name: this.expandName });
- this.defaultExpandedKeys1 = getStore({ name: 'configkey' });
- this.curreenttid1= getStore({ name:'curreenttid1' });
- this.curreenttid= getStore({ name:'curreenttid' });
- console.log( this.curreenttid,' this.curreenttid');
- this.archiveTreetree4()//全加载左侧树
- this.getWbsList();
- },
- mounted () {
- this.heights = this.$refs.container.$el.offsetHeight
- },
- filters:{
- ellipsis(value) {
- if (!value) return "";
- if (value.length > 35) {
- return value.slice(0, 35) + "...";
- }
- return value;
- },
- ellipsis1(value) {
- if (!value) return "";
- if (value.length > 25) {
- return value.slice(0, 25) + "...";
- }
- return value;
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .peizhi {
- // border: 1px solid #e5e5e5;
- border-radius: 5px;
- padding: 15px 10px;
- }
- .btnground{
- background-color: #e5e5e5;
- }
- .el-tree .el-tree-node__content{
- display: block !important;
- }
- ::v-deep .el-tree .el-tree-node__children{
- overflow: visible!important;
- }
- .config-type-name{
- font-size: 18px;
- }
- .config-allname{
- margin-top: 20px;
- }
- .wraplabel ::v-deep .el-checkbox__label {
- display: inline-grid;
- white-space: pre-line;
- word-wrap: break-word;
- overflow: hidden;
- line-height: 20px;
- }
- .contextmenu {
- margin: 0;
- background: #fff;
- z-index: 1000;
- position: fixed; //关键样式设置固定定位
- list-style-type: none;
- padding: 5px 0;
- border-radius: 4px;
- font-size: 12px;
- font-weight: 400;
- color: #333;
- box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3);
- }
- .contextmenu li {
- margin: 0;
- padding: 7px 16px;
- cursor: pointer;
- }
- .contextmenu li:hover {
- background: #eee;
- }
- .config_type{
- display: inline-block;
- background: rgb(254, 110, 34);
- color: #fff;
- width: 16px;
- height: 16px;
- border-radius: 50%;
- text-align: center;
- line-height: 20px;
- margin-right: 8px;
- font-size: 12px;
- }
- </style>
|