| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081 |
- <template>
- <div class="supervision-content-container">
- <!-- 搜索表单 -->
- <div class="search-panel">
- <el-form :inline="true" :model="searchForm" class="search-form">
- <el-form-item label="监审类别:">
- <el-cascader
- v-model="searchForm.catalogId"
- :options="catalogListOptions"
- placeholder=" 请选择监审类别"
- v-bind="props"
- style="width: 100%"
- clearable
- ></el-cascader>
- </el-form-item>
- <el-form-item label="模板名称:">
- <el-input
- v-model="searchForm.keyword"
- placeholder="请输入模板名称"
- clearable
- ></el-input>
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- icon="iconfont-5039297 icon-chaxun"
- @click="handleSearch"
- >
- 搜索
- </el-button>
- <el-button
- plain
- type="primary"
- icon="iconfont-5039297 icon-zhongzhi"
- @click="handleReset"
- >
- 重置
- </el-button>
- </el-form-item>
- </el-form>
- </div>
- <!-- 操作按钮 -->
- <div class="operation-bar">
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'add',
- }" -->
- <el-button
- plain
- type="success"
- icon="iconfont-5039297 icon-zengjia1"
- @click="handleAdd"
- >
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'add',
- }" -->
- 添加
- </el-button>
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'delete',
- }" -->
- <el-button
- plain
- type="danger"
- icon="iconfont-5039297 icon-shanchu1"
- :disabled="selectedRows.length === 0"
- @click="handleBatchDelete"
- >
- 删除
- </el-button>
- </div>
- <!-- 表格 -->
- <div class="table-container">
- <el-table
- v-loading="loading"
- :data="tableData"
- border
- style="width: 100%"
- :default-sort="{ prop: 'createTime', order: 'descending' }"
- @selection-change="handleSelectionChange"
- >
- <template slot="empty">
- <Empty></Empty>
- </template>
- <!-- :default-sort="{ prop: 'createTime', order: 'descending' }" -->
- <el-table-column
- type="selection"
- width="55"
- align="center"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- type="index"
- label="序号"
- width="60"
- align="center"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- prop="catalogId"
- label="监审类别"
- align="center"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <div>{{ getCatalogNames(scope.row) }}</div>
- </template>
- </el-table-column>
- <el-table-column
- prop="surveyTemplateName"
- label="核定模板名称"
- show-overflow-tooltip
- align="center"
- ></el-table-column>
- <el-table-column
- prop="versionNo"
- label="版本号"
- align="center"
- width="150"
- ></el-table-column>
- <el-table-column
- prop="status"
- label="状态"
- width="100"
- show-overflow-tooltip
- align="center"
- >
- <template slot-scope="scope">
- <span>
- {{
- scope.row.status == '-1'
- ? '草稿'
- : scope.row.status == '0'
- ? '启用'
- : '停用'
- }}
- </span>
- </template>
- </el-table-column>
- <el-table-column
- prop="createBy"
- label="创建人"
- width="120"
- show-overflow-tooltip
- align="center"
- ></el-table-column>
- <el-table-column
- prop="createTime"
- label="创建时间"
- width="160"
- show-overflow-tooltip
- align="center"
- sortable
- >
- <!-- sortable -->
- <template slot-scope="scope">
- <div>{{ scope.row.createTime.split(' ')[0] }}</div>
- <div>{{ scope.row.createTime.split(' ')[1] }}</div>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- width="240"
- fixed="right"
- show-overflow-tooltip
- align="center"
- >
- <template slot-scope="scope">
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'view',
- }" -->
- <el-button
- type="text"
- size="mini"
- @click="handleViewDetail(scope.row)"
- >
- 查看
- </el-button>
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'edit',
- targetData: scope.row,
- }" -->
- <el-button
- v-if="scope.row.status != '0'"
- type="text"
- size="mini"
- @click="handleEdit(scope.row)"
- >
- 修改
- </el-button>
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'edit',
- targetData: scope.row,
- }" -->
- <el-button
- type="text"
- size="mini"
- @click="handleStatusChange(scope.row)"
- >
- <!-- (-1草稿,0启用,1停用) -->
- {{ scope.row.status == '0' ? '停用' : '启用' }}
- </el-button>
- <!-- v-region-permission="{
- category: 'costVerifyManage',
- action: 'delete',
- targetData: scope.row,
- }" -->
- <el-button
- v-if="scope.row.status != '0'"
- type="text"
- size="mini"
- @click="handleDeleteRow(scope.row)"
- >
- 删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- class="mt20"
- :current-page.sync="searchForm.page"
- :page-size="searchForm.pageSize"
- :page-sizes="[50, 100]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="pagination.total"
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- ></el-pagination>
- </div>
- <!-- 添加/修改弹窗 -->
- <el-dialog
- :title="dialogTitle"
- :visible.sync="dialogVisible"
- width="75%"
- :close-on-click-modal="false"
- >
- <el-form
- ref="contentEditForm"
- :model="contentEditForm"
- :rules="contentEditFormRules"
- label-width="220px"
- class="content-form"
- :disabled="dialogTitle == '查看成本核定模板'"
- >
- <el-row :gutter="20">
- <el-col :span="12">
- <el-form-item label="监审类别:" prop="catalogId">
- <el-cascader
- v-model="contentEditForm.catalogId"
- :options="catalogListOptions"
- v-bind="props"
- style="width: 100%"
- @change="handleCatalogChange"
- ></el-cascader>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="核定模板名称:" prop="surveyTemplateName">
- <el-input
- v-model="contentEditForm.surveyTemplateName"
- placeholder="请输入核定模板名称"
- maxlength="30"
- show-word-limit
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="12">
- <el-form-item label="" prop="createtemplateid">
- <!-- :disabled="dialogTitle == '修改成本核定模板'" -->
- <template slot="label">
- <el-radio
- v-model="contentEditForm.createmode"
- label="1"
- :disabled="
- dialogTitle == '查看成本核定模板' ||
- dialogTitle == '修改成本核定模板' ||
- contentEditForm.surveyTemplateId != ''
- "
- @change="handleCreateModeChange"
- >
- 根据调查表生成:
- </el-radio>
- </template>
- <el-select
- v-model="contentEditForm.createtemplateid"
- placeholder="请选择"
- :disabled="
- dialogTitle == '查看成本核定模板' ||
- dialogTitle == '修改成本核定模板' ||
- contentEditForm.surveyTemplateId != ''
- "
- >
- <el-option
- v-for="item in surveyFormList"
- :key="item.id"
- :label="item.surveyTemplateName"
- :value="item.surveyTemplateId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="" prop="">
- <template slot="label">
- <el-radio
- v-model="contentEditForm.createmode"
- label="2"
- :disabled="
- dialogTitle == '查看成本核定模板' ||
- dialogTitle == '修改成本核定模板' ||
- contentEditForm.surveyTemplateId != ''
- "
- @change="handleCreateModeChange"
- >
- 根据历史核定模板生成:
- </el-radio>
- </template>
- <el-select
- v-model="contentEditForm.createtemplateid1"
- placeholder="请选择"
- :disabled="
- dialogTitle == '查看成本核定模板' ||
- dialogTitle == '修改成本核定模板' ||
- contentEditForm.surveyTemplateId != '' ||
- contentEditForm.catalogId == ''
- "
- >
- <el-option
- v-for="item in contentEditFormList"
- :key="item.id"
- :label="item.surveyTemplateName"
- :value="item.surveyTemplateId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div>
- <div class="mb20">
- <el-button
- v-if="!contentEditForm.surveyTemplateId"
- type="primary"
- class="mr20"
- @click="handleGenerateTemplate"
- >
- 生成模版
- </el-button>
- </div>
- <div
- v-if="contentEditForm.surveyTemplateId"
- class="table-edit-container"
- >
- <div class="mb20">
- <el-button
- v-if="dialogTitle != '查看成本核定模板'"
- type="primary"
- @click="handleAddTableHeader('固定表表头')"
- >
- 添加表头
- </el-button>
- <el-button
- v-if="dialogTitle != '查看成本核定模板'"
- type="primary"
- @click="handleSaveContent('固定表表头')"
- >
- 下一步
- </el-button>
- </div>
- <div class="table-edit-container">
- <el-table
- :data="contentEditForm.fixedTable.tableHeaders"
- border
- style="width: 100%"
- >
- <el-table-column label="序号" width="80" align="center">
- <template slot-scope="scope">
- <span>{{ scope.$index + 1 }}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="fieldName"
- label="字段名称"
- min-width="150"
- align="center"
- >
- <template slot-scope="scope">
- <el-input
- v-model="scope.row.fieldName"
- placeholder="请输入字段名称"
- size="small"
- :disabled="
- scope.row.isReadOnly || dialogTitle == '查看成本核定模板'
- "
- @change="handleFieldNameChange(scope.row)"
- ></el-input>
- </template>
- </el-table-column>
- <el-table-column
- prop="fieldType"
- label="字段类型"
- width="120"
- align="center"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.fieldType"
- placeholder="请选择字段类型"
- size="small"
- :disabled="
- scope.row.isReadOnly || dialogTitle == '查看成本核定模板'
- "
- @change="handleFieldTypeChange(scope.row)"
- >
- <el-option label="字符串" value="string"></el-option>
- <el-option label="整数" value="integer"></el-option>
- <el-option label="小数" value="double"></el-option>
- <el-option label="日期" value="datetime"></el-option>
- <el-option label="布尔值" value="boolean"></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column
- prop="format"
- label="格式"
- width="220"
- align="center"
- >
- <template slot-scope="scope">
- <!-- 字符串类型格式 -->
- <div
- v-if="scope.row.fieldType === 'string'"
- class="format-input"
- >
- <span class="format-prefix">长度</span>
- <el-input
- v-model="scope.row.format"
- placeholder="请输入长度"
- size="small"
- style="width: calc(100% - 80px); margin-left: 5px"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- ></el-input>
- </div>
- <!-- 整数类型格式 -->
- <div
- v-else-if="scope.row.fieldType === 'integer'"
- class="format-input"
- >
- <span class="format-prefix">整数</span>
- <el-input
- v-model="scope.row.fieldTypelen"
- placeholder="整数位数"
- size="small"
- style="width: calc(100% - 80px); margin: 0 5px"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- ></el-input>
- </div>
- <!-- 小数类型格式 -->
- <div
- v-else-if="scope.row.fieldType === 'double'"
- class="format-input"
- >
- <span class="format-prefix">小数</span>
- <el-input
- v-model="scope.row.fieldTypenointlen"
- placeholder="小数位数"
- size="small"
- style="width: calc(100% - 80px); margin-left: 5px"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- ></el-input>
- </div>
- <!-- 日期类型格式 -->
- <div
- v-else-if="scope.row.fieldType === 'datetime'"
- class="format-input"
- >
- <el-select
- v-model="scope.row.format"
- placeholder="请选择日期格式"
- size="small"
- style="width: 100%"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- >
- <el-option
- label="yyyy-MM-dd HH:mm:ss"
- value="yyyy-MM-dd HH:mm:ss"
- ></el-option>
- <el-option
- label="yyyy-MM-dd"
- value="yyyy-MM-dd"
- ></el-option>
- </el-select>
- </div>
- <!-- 布尔类型格式 -->
- <div v-else-if="scope.row.fieldType === 'boolean'">
- <el-select
- v-model="scope.row.format"
- placeholder="请选择布尔值格式"
- size="small"
- style="width: 100%"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- >
- <el-option label="true" value="true"></el-option>
- <el-option label="false" value="false"></el-option>
- </el-select>
- </div>
- <!-- 默认情况 -->
- <el-input
- v-else
- v-model="scope.row.format"
- :placeholder="getFormatPlaceholder(scope.row.fieldType)"
- size="small"
- ></el-input>
- </template>
- </el-table-column>
- <el-table-column
- prop="isRequired"
- label="是否必填"
- width="120"
- align="center"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.isRequired"
- size="small"
- :disabled="
- scope.row.isReadOnly || dialogTitle == '查看成本核定模板'
- "
- >
- <el-option label="是" value="true"></el-option>
- <el-option label="否" value="false"></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column
- prop="showVisible"
- label="是否显示"
- width="120"
- align="center"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.showVisible"
- size="small"
- :disabled="
- scope.row.isReadOnly || dialogTitle == '查看成本核定模板'
- "
- >
- <el-option label="是" value="1"></el-option>
- <el-option label="否" value="0"></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column
- prop="isAuditPeriod"
- label="是否绑定监审期间"
- width="140"
- align="center"
- >
- <template slot-scope="scope">
- <el-select
- v-model="scope.row.isAuditPeriod"
- size="small"
- :disabled="
- scope.row.isReadOnly || dialogTitle == '查看成本核定模板'
- "
- >
- <el-option label="是" value="true"></el-option>
- <el-option label="否" value="false"></el-option>
- </el-select>
- </template>
- </el-table-column>
- <el-table-column prop="isDict" label="绑定字典" min-width="150">
- <template slot-scope="scope">
- <div class="bind-dict-column">
- <el-select
- v-model="scope.row.isDict"
- size="small"
- style="width: 80px"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- @change="handleBindDictChange(scope.row)"
- >
- <el-option label="是" value="true"></el-option>
- <el-option label="否" value="false"></el-option>
- </el-select>
- <el-select
- v-if="scope.row.isDict === 'true'"
- v-model="scope.row.dictid"
- placeholder="请选择字典"
- class="dict-select"
- size="small"
- style="width: 120px; margin-top: 5px"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- >
- <el-option
- v-for="(item, index) in dictTypeList"
- :key="index"
- :label="item.name"
- :value="String(item.id)"
- ></el-option>
- </el-select>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- width="150"
- fixed="right"
- align="center"
- >
- <template slot-scope="scope">
- <div class="table-actions">
- <el-button
- v-if="dialogTitle != '查看成本核定模板'"
- type="text"
- size="mini"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- @click="
- handleDeleteHeader(
- scope.$index,
- '固定表表头',
- scope.row
- )
- "
- >
- 删除
- </el-button>
- <el-button
- v-if="
- scope.$index !== 0 || dialogTitle != '查看成本核定模板'
- "
- type="text"
- size="mini"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- @click="handleMoveUp(scope.$index)"
- >
- 上升
- </el-button>
- <el-button
- v-if="
- scope.$index !==
- contentEditForm.fixedTable.tableHeaders.length - 1 ||
- dialogTitle == '查看成本核定模板'
- "
- type="text"
- size="mini"
- :disabled="
- scope.row.isReadOnly ||
- dialogTitle == '查看成本核定模板'
- "
- @click="handleMoveDown(scope.$index)"
- >
- 下降
- </el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div>
- <div class="button-group mt20 mb20">
- <el-button
- v-if="dialogTitle != '查看成本核定模板'"
- type="primary"
- @click="handleAddTableHeader('固定表项目')"
- >
- 添加项目
- </el-button>
- <el-button
- v-if="dialogTitle != '查看成本核定模板'"
- type="primary"
- @click="handleSaveTemplate"
- >
- 保存
- </el-button>
- </div>
- <div class="table-edit-container">
- <el-table
- :data="contentEditForm.fixedTable.fixedTables"
- border
- style="width: 100%"
- row-key="rowid"
- default-expand-all
- :tree-props="{
- children: 'children',
- hasChildren: 'hasChildren',
- }"
- @selection-change="handleSelectionChange"
- >
- <el-table-column label="父子节点" align="center" width="100">
- <template slot-scope="scope">
- <el-tag
- v-if="
- scope.row.isChild ||
- scope.row.isSubItem ||
- (scope.row.parentid &&
- scope.row.parentid != -1 &&
- scope.row.parentid != '-1')
- "
- type="success"
- size="small"
- >
- 子项
- </el-tag>
- <el-tag
- v-else-if="
- scope.row.parentid === -1 ||
- scope.row.parentid === '-1' ||
- !scope.row.parentid
- "
- type="primary"
- size="small"
- >
- 父项
- </el-tag>
- <el-tag v-else type="info" size="small">无</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="序号" width="80" align="center">
- <template slot-scope="scope">
- <div
- class="row-indent-container"
- :style="getRowIndentStyle(scope.row)"
- >
- <el-input
- :value="
- scope.row.fixedValues
- ? scope.row.fixedValues['序号']
- : ''
- "
- size="small"
- placeholder="数字或中文"
- :disabled="dialogTitle == '查看成本核定模板'"
- @input="
- handleFixedValueChange(scope.row, '序号', $event)
- "
- ></el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- v-for="(item, index) in contentEditForm.fixedTable
- .fixedTableHeaders"
- :key="index"
- :label="item.rkey"
- width="120"
- align="center"
- >
- <template slot-scope="scope">
- <div class="row-indent-container">
- <el-input
- :value="
- scope.row.fixedValues
- ? scope.row.fixedValues[item.rkey]
- : ''
- "
- size="small"
- :disabled="dialogTitle == '查看成本核定模板'"
- @input="
- handleFixedValueChange(scope.row, item.rkey, $event)
- "
- ></el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="指标编号" width="100" align="center">
- <template slot-scope="scope">
- <div class="row-indent-container">
- <el-input
- :value="scope.row.cellCode"
- size="small"
- :disabled="dialogTitle == '查看成本核定模板'"
- @input="(val) => $set(scope.row, 'cellCode', val)"
- ></el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="计算公式"
- width="150"
- align="center"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <div class="row-indent-container">
- <el-input
- :value="scope.row.calculationFormula"
- size="small"
- readonly
- :disabled="dialogTitle == '查看成本核定模板'"
- @click.native="
- openCalculationFormulaDialogVisible(
- scope.row,
- scope.$index
- )
- "
- ></el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column label="单位" width="80" align="center">
- <template slot-scope="scope">
- <div class="row-indent-container">
- <el-input
- :value="scope.row.unit"
- size="small"
- :disabled="dialogTitle == '查看成本核定模板'"
- @input="(val) => $set(scope.row, 'unit', val)"
- ></el-input>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- align="center"
- fixed="right"
- width="200"
- >
- <template slot-scope="scope">
- <div class="table-actions">
- <el-button
- v-if="!scope.row.isChild"
- type="text"
- size="mini"
- :disabled="dialogTitle == '查看成本核定模板'"
- @click="
- handleAddChildItem(
- scope.$index,
- '固定表项目',
- scope.row
- )
- "
- >
- 添加子项
- </el-button>
- <el-button
- type="text"
- size="mini"
- :disabled="dialogTitle == '查看成本核定模板'"
- @click="
- handleDeleteHeader(
- scope.$index,
- '固定表项目',
- scope.row
- )
- "
- >
- 删除
- </el-button>
- <el-button
- v-if="scope.$index !== 0"
- type="text"
- size="mini"
- :disabled="dialogTitle == '查看成本核定模板'"
- @click="handleMoveUp(scope.$index, '固定表', scope.row)"
- >
- 上升
- </el-button>
- <el-button
- v-if="
- scope.$index !==
- contentEditForm.fixedTable.fixedTables.length - 1
- "
- type="text"
- size="mini"
- :disabled="dialogTitle == '查看成本核定模板'"
- @click="handleMoveDown(scope.$index, '固定表')"
- >
- 下降
- </el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- </div>
- </div>
- <!-- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="handleSaveTemplate">确 认</el-button>
- <el-button @click="dialogVisible = false">取 消</el-button>
- </div> -->
- </el-dialog>
- <el-dialog
- title="计算公式"
- :visible.sync="calculationFormulaDialogVisible"
- width="500px"
- :before-close="handleDialogClose"
- :close-on-click-modal="false"
- >
- <!-- 单选按钮组:切换“当前指标项”/“其他模板指标项” -->
- <el-radio-group
- v-model="radioType"
- class="mb20"
- @change="handleRadioChange"
- >
- <el-radio label="current">当前指标项</el-radio>
- <el-radio label="other">其他模板指标项</el-radio>
- </el-radio-group>
- <!-- 「当前指标项」内容区域 -->
- <div v-if="radioType === 'current'" class="current-panel">
- <el-input
- v-model="formulaText"
- type="textarea"
- rows="4"
- placeholder="请输入公式(如 C1+C2+C3)"
- />
- </div>
- <!-- 「其他模板指标项」内容区域 -->
- <div v-else class="other-panel">
- <span>模板名称:</span>
- <el-select
- v-model="selectedTemplateId"
- style="width: 80%"
- placeholder="请选择模板"
- @change="handleTemplateChange"
- >
- <el-option
- v-for="(item, index) in templateList"
- :key="index"
- :label="item.surveyTemplateName"
- :value="item.pkVal"
- ></el-option>
- </el-select>
- <!-- 指标表格 -->
- <el-table
- ref="indicatorTable"
- :data="indicatorTableData"
- border
- style="width: 100%; margin-top: 10px"
- class="mb20"
- @row-click="handleRowClick"
- >
- <!-- @selection-change="selectionIndicatorChange" -->
- <el-table-column type="selection" label="选择" width="60">
- <template #default="scope">
- <el-checkbox
- v-model="scope.row.checked"
- @change="handleCheckboxChange(scope.row)"
- ></el-checkbox>
- </template>
- </el-table-column>
- <el-table-column
- prop="cellCode"
- label="指标编号"
- align="center"
- ></el-table-column>
- <!--循环表头 -->
- <el-table-column
- v-for="(item, index) in indicatorTableHeaders"
- :key="index"
- :label="item.rkey"
- align="center"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{
- scope.row.fixedValues ? scope.row.fixedValues[item.rkey] : ''
- }}
- </template>
- </el-table-column>
- </el-table>
- <el-input
- v-model="formulaText"
- type="textarea"
- rows="4"
- placeholder="请输入公式(如 C1+C2+C3)"
- @input="handleFormulaTextChange"
- />
- </div>
- <!-- 弹窗底部按钮 -->
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="handleConfirm">确定</el-button>
- <el-button @click="calculationFormulaDialogVisible = false">
- 取消
- </el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- getCostFormDataStorageTables,
- deleteCostVerifyForm,
- getActiveCostVerifyFormList,
- getActiveCostVerifyFormListByType,
- generateCostVerifyFormData,
- generateCostVerifyForm,
- addCostVerifyForm,
- getCostFormVersionsByTemplateId,
- batchSaveOrUpdate,
- } from '@/api/costFormManage'
- import {
- getlistBySurveyTemplateId,
- batchDeleteCostVerifyForm,
- getlistBySurveyTemplateIdcurrentversion,
- batchSave,
- enable,
- getListFixedEnabled,
- listByVerifyTemplateId,
- } from '@/api/costVerifyManage'
- import { getCatalogDetail } from '@/api/catalogManage'
- import { listByCurrentTemplateId } from '@/api/catalogManage.js'
- import { catalogMixin, commonMixin } from '@/mixins/useDict'
- import { getDictTypList } from '@/api/dictionaryManage.js'
- export default {
- name: 'SupervisionContent',
- // 使用混入
- mixins: [catalogMixin, commonMixin],
- data() {
- return {
- loading: false,
- searchForm: {
- type: '',
- catalogId: '',
- keyword: '',
- page: 1,
- pageSize: 50,
- },
- props: {
- filterable: true,
- placeholder: '请选择监审类别',
- style: 'width: 100%',
- showAllLevels: false,
- props: {
- multiple: false,
- children: 'children',
- checkStrictly: false,
- label: 'catalogName',
- value: 'id',
- emitPath: false,
- },
- },
- tableData: [],
- selectedRows: [],
- pagination: {
- currentPage: 1,
- pageSize: 50,
- total: 0,
- },
- dialogVisible: false,
- detailDialogVisible: false,
- dialogTitle: '',
- contentEditForm: {
- areaCode: '',
- areaLevel: '',
- catalogId: '',
- contentType: '',
- createBy: '',
- createTime: '',
- createmode: '',
- createtemplateid: '',
- createtemplateid1: '',
- isDelete: '',
- pkVal: '',
- remarks: '',
- status: '',
- storageTable: '',
- surveyTemplateId: '',
- surveyTemplateName: '',
- surveyTemplateNameYw: '',
- templateType: '2',
- type: '',
- updateBy: '',
- updateTime: '',
- versionNo: '',
- // 固定表列表
- fixedTable: {
- tableHeaders: [],
- fixedTables: [],
- fixedTablesTitle: [],
- fixedTableHeaders: [],
- },
- },
- dynamicTable: [],
- contentEditFormRules: {
- catalogId: [
- { required: true, message: '请选择监审类别', trigger: 'change' },
- ],
- surveyTemplateName: [
- { required: true, message: '请输入核定模板名称', trigger: 'blur' },
- {
- min: 1,
- max: 30,
- message: '核定模板名称长度应在1-30个字符之间',
- trigger: 'blur',
- },
- ],
- // createtemplateid: [
- // { required: true, message: '请选择模板类型', trigger: 'change' },
- // ],
- },
- // 成本核定表模板列表
- contentEditFormList: [],
- // 成本调查表模板列表
- surveyFormList: [],
- CatalogNameMap: {},
- calculationFormulaDialogVisible: false,
- currentEditingRow: null,
- currentEditingRowIndex: -1,
- radioType: 'current',
- formulaText: 'C1+C2+C3',
- templateName: '',
- templateList: [],
- indicatorTableData: [],
- indicatorTableHeaders: [],
- selectedIndicatorsPerTemplate: {},
- selectedIndicatorCodes: [],
- isAutoGeneratedFormula: false,
- dictTypeList: [],
- }
- },
- watch: {
- // 监听目录数据变化,数据加载完成后处理回显
- catalogListOptions: {
- handler(newVal) {
- if (newVal && newVal.length > 0) {
- // 数据加载完成后,重新处理value
- this.batchGetCatalogNames()
- }
- },
- immediate: true,
- },
- indicatorTableData: {
- handler(newVal) {
- if (this.radioType === 'other' && this.selectedTemplateId) {
- this.$set(
- this.selectedIndicatorsPerTemplate,
- this.selectedTemplateId,
- newVal.filter((item) => item.checked)
- )
- }
- this.updateSelectedIndicatorCodes()
- },
- deep: true,
- },
- selectedIndicatorCodes: {
- handler(newVal) {
- if (this.radioType === 'other') {
- const allSelectedTemplateIds = [
- ...new Set([
- this.selectedTemplateId,
- ...Object.keys(this.selectedIndicatorsPerTemplate).filter(
- (id) =>
- id !== this.selectedTemplateId &&
- this.selectedIndicatorsPerTemplate[id].some(
- (item) => item.checked
- )
- ),
- ]),
- ].filter((id) => id)
- const isSingleTemplate = allSelectedTemplateIds.length === 1
- if (isSingleTemplate && allSelectedTemplateIds[0]) {
- const selectedTemplate = this.templateList.find(
- (item) => item.pkVal === allSelectedTemplateIds[0]
- )
- const templateNameYw = selectedTemplate
- ? selectedTemplate.surveyTemplateNameYw ||
- selectedTemplate.surveyTemplateName ||
- ''
- : ''
- let selectedItems = []
- if (allSelectedTemplateIds[0] === this.selectedTemplateId) {
- selectedItems = newVal
- } else {
- selectedItems = this.selectedIndicatorsPerTemplate[
- allSelectedTemplateIds[0]
- ]
- .filter((item) => item.checked)
- .map(
- (item) => `${templateNameYw}.${item.code || item.cellCode}`
- )
- }
- if (selectedItems.length > 0) {
- this.formulaText = selectedItems.join('+')
- this.isAutoGeneratedFormula = true
- } else if (this.isAutoGeneratedFormula) {
- this.formulaText = ''
- }
- } else {
- let allSelectedCodes = []
- if (newVal.length > 0 && this.selectedTemplateId) {
- allSelectedCodes = [...newVal]
- }
- Object.keys(this.selectedIndicatorsPerTemplate).forEach(
- (templateId) => {
- if (templateId !== this.selectedTemplateId) {
- const items = this.selectedIndicatorsPerTemplate[templateId]
- const selectedTemplate = this.templateList.find(
- (item) => item.pkVal === templateId
- )
- const templateName = selectedTemplate
- ? selectedTemplate.surveyTemplateNameYw ||
- selectedTemplate.surveyTemplateName ||
- ''
- : ''
- items
- .filter((item) => item.checked)
- .forEach((item) => {
- allSelectedCodes.push(
- `${templateName}.${item.code || item.cellCode}`
- )
- })
- }
- }
- )
- if (allSelectedCodes.length > 0) {
- this.formulaText = allSelectedCodes.join('+')
- this.isAutoGeneratedFormula = true
- } else if (this.isAutoGeneratedFormula) {
- this.formulaText = ''
- }
- }
- } else if (newVal.length > 0 && this.radioType === 'current') {
- if (
- !this.formulaText ||
- this.formulaText === 'C1+C2+C3' ||
- this.isAutoGeneratedFormula
- ) {
- this.formulaText = newVal.join('+')
- this.isAutoGeneratedFormula = true
- }
- } else if (newVal.length === 0 && this.radioType === 'current') {
- if (this.isAutoGeneratedFormula) {
- this.formulaText = ''
- }
- }
- },
- deep: true,
- },
- },
- mounted() {
- this.handleSearch()
- this.loadDictTypeList()
- },
- methods: {
- async loadDictTypeList() {
- try {
- const res = await getDictTypList()
- this.dictTypeList = res || []
- } catch (error) {
- console.error('加载字典类型失败:', error)
- }
- },
- // 获取监审类别名称
- batchGetCatalogNames() {
- // 递归查找名称
- this.CatalogNameMap = {}
- this._recursiveCatalogMap(this.catalogListOptions)
- },
- // 递归遍历目录树并构建ID到名称的映射
- _recursiveCatalogMap(catalogs) {
- if (!Array.isArray(catalogs) || catalogs.length === 0) {
- return
- }
- catalogs.forEach((item) => {
- // 为当前目录项添加映射
- this.CatalogNameMap[item.id] = item.catalogName
- // 递归处理子目录
- if (item.children && Array.isArray(item.children)) {
- this._recursiveCatalogMap(item.children)
- }
- })
- },
- // 获取所有状态为启用的成本核定表模板数据
- getActiveCostVerifyFormList() {
- getActiveCostVerifyFormList({
- catalogId: this.contentEditForm.catalogId,
- }).then((res) => {
- if (res.code === 200) {
- this.contentEditFormList = res.value
- }
- })
- },
- // 获取所有模板类型为固定表的所有启用成本调查表数据
- getActiveCostVerifyFormListByType() {
- getActiveCostVerifyFormListByType().then((res) => {
- if (res.code === 200) {
- this.surveyFormList = res.value
- }
- })
- },
- getCatalogNames(row) {
- if (!row.catalogId) return ''
- return row.catalogId
- .split(',')
- .map((id) => {
- const trimId = id.trim()
- return this.CatalogNameMap[trimId] || '未知名称'
- })
- .join(',')
- },
- // 删除成本核定表模板
- handleDeleteRow(row) {
- this.$confirm('确定删除该成本核定表模板吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(() => {
- deleteCostVerifyForm(row.pkVal).then((res) => {
- if (res.code === 200) {
- this.$message({
- type: 'success',
- message: '删除成功',
- })
- this.handleSearch()
- } else {
- this.$message({
- type: 'error',
- message: res.msg || '删除失败',
- })
- }
- })
- })
- },
- // 状态转换
- handleStatusChange(row) {
- enable({
- id: row.surveyTemplateId,
- }).then((res) => {
- if (res.code === 200) {
- this.$message.success(`${res.message}`)
- this.handleSearch()
- }
- })
- },
- // 搜索
- handleSearch() {
- this.loading = true
- getCostFormDataStorageTables(this.searchForm).then((res) => {
- this.loading = false
- if (res.rows.length > 0) {
- this.tableData = res.rows || []
- this.pagination.total = res.total || 0
- }
- })
- },
- // 重置
- handleReset() {
- this.searchForm = {
- catalogId: '',
- keyword: '',
- page: 1,
- pageSize: 50,
- }
- this.handleSearch()
- },
- // 添加
- handleAdd() {
- this.dialogTitle = '添加成本核定模板'
- this.contentEditForm = {
- areaCode: '',
- areaLevel: '',
- catalogId: '',
- contentType: '',
- createBy: '',
- createTime: '',
- createmode: '1',
- createtemplateid: '',
- createtemplateid1: '',
- isDelete: '',
- pkVal: '',
- remarks: '',
- status: '',
- storageTable: '',
- surveyTemplateId: '',
- surveyTemplateName: '',
- surveyTemplateNameYw: '',
- templateType: '2',
- type: '',
- updateBy: '',
- updateTime: '',
- versionNo: '',
- // 固定表列表
- fixedTable: {
- tableHeaders: [],
- fixedTables: [],
- fixedTablesTitle: [],
- },
- }
- // 成本调查表模板列表
- this.getActiveCostVerifyFormListByType()
- this.dialogVisible = true
- // 清除表单校验
- this.$nextTick(() => {
- if (this.$refs.contentEditForm) {
- this.$refs.contentEditForm.clearValidate()
- }
- })
- },
- // 级联选择器改变时触发
- handleCatalogChange(val) {
- // 成本核定表模板列表
- this.getActiveCostVerifyFormList()
- },
- // 修改
- handleEdit(row) {
- this.dialogTitle = '修改成本核定模板'
- this.contentEditForm = {
- ...row,
- // 固定表列表
- fixedTable: {
- tableHeaders: [],
- fixedTables: [],
- fixedTablesTitle: [],
- },
- }
- if (row.createmode == '1') {
- this.contentEditFormcreatetemplateid = row.createtemplateid || ''
- this.contentEditForm.createtemplateid1 = ''
- } else if (row.createmode == '2') {
- this.contentEditForm.createtemplateid1 = row.createtemplateid || ''
- this.contentEditForm.createtemplateid = ''
- }
- // 成本核定表模板列表
- this.getActiveCostVerifyFormList()
- // 成本调查表模板列表
- this.getActiveCostVerifyFormListByType()
- this.loadTemplateDataForEdit(this.contentEditForm.surveyTemplateId)
- this.dialogVisible = true
- },
- // 查看详情
- handleViewDetail(row) {
- this.dialogTitle = '查看成本核定模板'
- this.contentEditForm = {
- ...row,
- // 固定表列表
- fixedTable: {
- tableHeaders: [],
- fixedTables: [],
- fixedTablesTitle: [],
- },
- }
- if (row.createmode == '1') {
- this.contentEditFormcreatetemplateid = row.createtemplateid || ''
- this.contentEditFormcreatetemplateid1 = ''
- } else if (row.createmode == '2') {
- this.contentEditForm.createtemplateid1 = row.createtemplateid1 || ''
- this.contentEditFormcreatetemplateid = ''
- }
- // 成本核定表模板列表
- this.getActiveCostVerifyFormList()
- // 成本调查表模板列表
- this.getActiveCostVerifyFormListByType()
- this.loadTemplateDataForEdit(this.contentEditForm.surveyTemplateId)
- this.dialogVisible = true
- },
- // 生成模板
- handleGenerateTemplate() {
- // 提示生成后不能修改
- this.$confirm(
- '生成后不能修改根据调查表生成还是根据历史核定模板生成,确定生成模板吗?',
- '提示',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }
- ).then(() => {
- // 校验表单
- this.$refs['contentEditForm'].validate((valid) => {
- if (valid) {
- if (this.contentEditForm.createmode == '1') {
- if (!this.contentEditForm.createtemplateid) {
- this.$message.error('请选择成本调查表模板')
- return
- }
- this.generateFromSurveyTemplate()
- } else if (this.contentEditForm.createmode == '2') {
- if (!this.contentEditForm.createtemplateid1) {
- this.$message.error('请选择历史核定模板')
- return
- }
- this.generateFromHistoryTemplate()
- }
- } else {
- this.$message.error('请填写表单数据')
- return
- }
- })
- })
- },
- async loadTemplateDataForEdit(surveyTemplateId) {
- // 并行获取表头和表格数据
- const [tableHeadersRes, tableDataRes] = await Promise.all([
- getlistBySurveyTemplateId({
- surveyTemplateId,
- }),
- getCostFormVersionsByTemplateId({
- surveyTemplateId,
- }),
- ])
- // 处理表头数据
- if (tableHeadersRes.code == 200) {
- this.contentEditForm.fixedTable.tableHeaders = Array.isArray(
- tableHeadersRes.value
- )
- ? tableHeadersRes.value
- : []
- // 表头按照orderNum重新排序
- this.contentEditForm.fixedTable.tableHeaders.sort(
- (a, b) => a.orderNum - b.orderNum
- )
- // 检查是否有fieldName为"序号"的数据
- const hasSerialNumber =
- this.contentEditForm.fixedTable.tableHeaders.some(
- (header) => header.fieldName === '序号'
- )
- // 如果没有序号数据,则添加一条默认的序号数据,并标记为不可编辑
- if (!hasSerialNumber) {
- this.contentEditForm.fixedTable.tableHeaders.unshift({
- fieldName: '序号',
- fieldType: 'string',
- format: '30',
- fieldTypelen: '',
- fieldTypenointlen: '',
- isRequired: 'false',
- showVisible: '1',
- isAuditPeriod: 'false',
- tabtype: '2',
- surveyTemplateId: this.contentEditForm.surveyTemplateId,
- versionId: this.versionId,
- isFixed: '1',
- isReadOnly: true, // 标记为不可编辑
- orderNum: 1,
- })
- } else {
- this.contentEditForm.fixedTable.tableHeaders.forEach((item) => {
- if (item.fieldName === '序号') {
- item.isReadOnly = true // 确保序号字段不可编辑
- }
- })
- }
- }
- // 处理表格数据
- if (tableDataRes.code == 200) {
- this.parseAndDisplayFixedTableData(tableDataRes)
- }
- },
- // 根据调查表生成模板
- async generateFromSurveyTemplate() {
- try {
- // 显示加载状态
- this.loading = true
- // 保存模板基本信息
- let data = await generateCostVerifyForm({
- catalogId: this.contentEditForm.catalogId,
- templatename: this.contentEditForm.surveyTemplateName,
- templateId: this.contentEditForm.createtemplateid,
- })
- this.contentEditForm.surveyTemplateId = data.value
- ? data.value.surveyTemplateId
- : ''
- this.loadTemplateDataForEdit(this.contentEditForm.surveyTemplateId)
- // // 并行获取表头和表格数据
- // const [tableHeadersRes, tableDataRes] = await Promise.all([
- // getlistBySurveyTemplateIdcurrentversion({
- // surveyTemplateId: this.contentEditForm.createtemplateid,
- // }),
- // listByCurrentTemplateId({
- // surveyTemplateId: this.contentEditForm.createtemplateid,
- // }),
- // ])
- // // 处理表头数据
- // if (tableHeadersRes.code == 200) {
- // this.contentEditForm.fixedTable.tableHeaders = Array.isArray(
- // tableHeadersRes.value
- // )
- // ? tableHeadersRes.value
- // : []
- // }
- // // 处理表格数据
- // if (tableDataRes.code == 200) {
- // const fieldNamesString =
- // this.contentEditForm.fixedTable.tableHeaders
- // .map((header) => header.fieldName)
- // .join(', ')
- // this.contentEditForm.fixedTable.fixedTablesTitle = fieldNamesString
- // this.parseAndDisplayFixedTableData(tableDataRes)
- // // this.$message.success('生成模板成功')
- // }
- } catch (error) {
- console.error('生成模板失败:', error)
- } finally {
- this.loading = false
- }
- },
- // 根据历史核定模板生成
- async generateFromHistoryTemplate() {
- // 保存模板基本信息
- let data = await generateCostVerifyFormData({
- catalogId: this.contentEditForm.catalogId,
- templatename: this.contentEditForm.surveyTemplateName,
- templateId: this.contentEditForm.createtemplateid1,
- })
- this.contentEditForm.surveyTemplateId = data.value
- ? data.value.surveyTemplateId
- : ''
- this.loadTemplateDataForEdit(this.contentEditForm.surveyTemplateId)
- },
- // 添加表头
- handleAddTableHeader(type) {
- switch (type) {
- case '固定表表头':
- this.contentEditForm.fixedTable.tableHeaders.push({
- fieldName: '',
- fieldType: 'string',
- format: '255',
- fieldTypelen: '',
- fieldTypenointlen: '',
- isRequired: 'false',
- showVisible: '1',
- isAuditPeriod: 'false',
- tabtype: '2',
- surveyTemplateId: this.contentEditForm.surveyTemplateId,
- versionId: this.versionId,
- orderNum: this.contentEditForm.fixedTable.tableHeaders.length + 1,
- })
- break
- case '固定表项目':
- let maxFixedOrderNum = 0
- if (this.contentEditForm.fixedTable.fixedTables.length > 0) {
- maxFixedOrderNum = Math.max(
- ...this.contentEditForm.fixedTable.fixedTables.map(
- (item) => item.orderNum || 0
- )
- )
- }
- const newRow = {
- orderText: maxFixedOrderNum + 1,
- orderNum: maxFixedOrderNum + 1,
- cellCode: '',
- calculationFormula: '',
- unit: '',
- tabtype: this.contentEditForm.templateType,
- surveyTemplateId: this.contentEditForm.surveyTemplateId,
- versionId: this.versionId,
- fixedValues: {},
- parentid: -1,
- rowid: this.generateUUID(),
- }
- this.contentEditForm.fixedTable.fixedTablesTitle.forEach(
- (title) => {
- newRow.fixedValues[title.rkey] = ''
- }
- )
- this.contentEditForm.fixedTable.fixedTables.push(newRow)
- break
- default:
- break
- }
- },
- // 字段名称改变
- handleFieldNameChange(row) {
- console.log(row)
- if (row.fieldName) {
- // 检查是否已存在相同的fieldName
- const existsInTableHeaders =
- this.contentEditForm.fixedTable.tableHeaders.some(
- (item) => item.fieldName === row.fieldName
- )
- // 跳过"序号"列
- if (row.fieldName !== '序号' && !existsInTableHeaders) {
- // 更新tableHeaders数组,这是关键的数据源
- this.contentEditForm.fixedTable.tableHeaders.push({
- fieldName: row.fieldName,
- fieldType: 'string',
- format: '255',
- fieldTypelen: '',
- fieldTypenointlen: '',
- isRequired: 'false',
- showVisible: '1',
- isAuditPeriod: 'false',
- tabtype: '2',
- surveyTemplateId: this.contentEditForm.surveyTemplateId,
- versionId: this.versionId || null,
- orderNum: this.contentEditForm.fixedTable.tableHeaders.length + 1,
- id: null,
- })
- // 同时更新fixedTablesTitle(这是源头数据)
- const newTitle = {
- rkey: row.fieldName,
- rvalue: '',
- }
- this.contentEditForm.fixedTable.fixedTablesTitle.push(newTitle)
- // 同时更新fixedTableHeaders
- this.contentEditForm.fixedTable.fixedTableHeaders.push(newTitle)
- // 为现有表格数据行添加对应的fixedValues属性
- if (
- this.contentEditForm.fixedTable.fixedTables &&
- this.contentEditForm.fixedTable.fixedTables.length > 0
- ) {
- this.contentEditForm.fixedTable.fixedTables.forEach(
- (tableRow) => {
- // 确保fixedValues对象存在
- if (!tableRow.fixedValues) {
- tableRow.fixedValues = {}
- }
- // 为新字段设置默认值为空字符串
- tableRow.fixedValues[row.fieldName] = ''
- }
- )
- }
- }
- }
- },
- // 保存内容
- handleSaveContent(type) {
- try {
- if (type === '固定表表头') {
- var data = {
- headersList: this.contentEditForm.fixedTable.tableHeaders,
- }
- batchSaveOrUpdate(data)
- .then((res) => {
- if (res.code === 200) {
- // 如果后端返回了保存后的数据,更新本地数据
- if (res.value && Array.isArray(res.value)) {
- this.contentEditForm.fixedTable.tableHeaders =
- res.value.map((item) => ({
- ...item,
- }))
- }
- this.loadTemplateDataForEdit(
- this.contentEditForm.surveyTemplateId
- )
- this.contentEditForm.fixedTable.fixedTables.forEach((row) => {
- this.initFixedTableRow(row)
- })
- }
- })
- .catch((error) => {
- console.error('保存接口异常:', error)
- })
- .finally(() => {
- this.loading = false
- })
- }
- } catch (error) {
- console.error('保存处理异常:', error)
- }
- },
- initFixedTableRow(row) {
- if (row.cellCode === undefined) {
- this.$set(row, 'cellCode', '')
- }
- if (row.calculationFormula === undefined) {
- this.$set(row, 'calculationFormula', '')
- }
- if (row.unit === undefined) {
- this.$set(row, 'unit', '')
- }
- if (!row.fixedValues) {
- this.$set(row, 'fixedValues', {})
- }
- // 初始化children数组,支持树形结构
- if (!row.children) {
- this.$set(row, 'children', [])
- }
- this.contentEditForm.fixedTable.fixedTablesTitle.forEach(
- (title, index) => {
- if (!(title.rkey in row.fixedValues)) {
- this.$set(row.fixedValues, title.rkey, '')
- }
- }
- )
- return row
- },
- // 删除表头
- handleDeleteHeader(index, type, row) {
- // 提取重复的删除逻辑为内部函数
- const handleDelete = () => {
- const data = {
- deleteheadersList: [row],
- }
- batchSaveOrUpdate(data)
- .then((res) => {
- if (res.code === 200) {
- this.$message.success('删除成功')
- } else {
- this.$message.error(`删除失败:${res.message || '未知错误'}`)
- }
- })
- .catch((error) => {
- console.error('删除接口异常:', error)
- // this.$message.error('删除接口异常,请重试')
- })
- .finally(() => {})
- }
- switch (type) {
- case '固定表表头':
- if (this.contentEditForm.fixedTable.tableHeaders.length <= 1) {
- this.$message.warning('至少保留一个表头')
- return
- }
- this.contentEditForm.fixedTable.tableHeaders.splice(index, 1)
- let fixedFields = this.contentEditForm.fixedTable.tableHeaders
- .map((item) => item.fieldName)
- .join(',')
- this.contentEditForm.fixedTable.fixedTablesTitle =
- this.stringToObjects(fixedFields || '')
- this.contentEditForm.fixedTable.fixedTableHeaders =
- this.contentEditForm.fixedTable.fixedTablesTitle.filter(
- (title) => title.rkey !== '序号'
- )
- handleDelete()
- // 重新排序
- this.updateTableHeadersOrderNumbers()
- break
- case '固定表项目':
- this.$confirm(
- '确定要删除此行数据吗?如果删除的是父项,将同时删除其所有子项。',
- '确认删除',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }
- )
- .then(() => {
- // 检查是否是删除子项
- const isChildItem = row.isChild || row.isSubItem || false
- if (isChildItem) {
- // 查找父项
- const parentItem =
- this.contentEditForm.fixedTable.fixedTables.find(
- (item) =>
- item.children &&
- item.children.some((child) => child.rowid === row.rowid)
- )
- if (parentItem && parentItem.children) {
- // 从父项的children数组中删除子项
- const childIndex = parentItem.children.findIndex(
- (child) => child.rowid === row.rowid
- )
- if (childIndex > -1) {
- parentItem.children.splice(childIndex, 1)
- // 如果children数组为空,将hasChildren设为false
- if (parentItem.children.length === 0) {
- this.$set(parentItem, 'hasChildren', false)
- } else {
- // 重新计算子项序号
- parentItem.children.forEach((child, idx) => {
- child.orderText = idx + 1
- child.orderNum = idx + 1
- })
- }
- // 确保Vue响应式系统检测到变化
- const children = [...parentItem.children]
- this.$set(parentItem, 'children', children)
- this.handleSaveContent('固定表项目', 'delete') // 保存数据
- }
- }
- } else {
- // 处理删除父项的情况
- if (this.contentEditForm.fixedTable.fixedTables.length <= 1) {
- this.$message.warning('至少保留一个项目')
- return
- }
- // 获取要删除的行
- index =
- this.contentEditForm.fixedTable.fixedTables.indexOf(row)
- const rowToDelete =
- this.contentEditForm.fixedTable.fixedTables[index]
- // 先删除所有子项(parentid等于当前行的rowid或itemId的项)
- // 从后往前删除,避免索引偏移
- const rowsToDelete = []
- // 找出所有需要删除的行(包括父项和子项)
- for (
- let i = 0;
- i < this.contentEditForm.fixedTable.fixedTables.length;
- i++
- ) {
- const currentRow =
- this.contentEditForm.fixedTable.fixedTables[i]
- // 是当前行或其子项(子项的parentid等于当前行的rowid或itemId)
- if (
- i === index ||
- (currentRow.parentid &&
- (currentRow.parentid === rowToDelete.rowid ||
- currentRow.parentid === rowToDelete.itemId))
- ) {
- rowsToDelete.push(i)
- }
- }
- // 从后往前删除,避免索引偏移
- for (let i = rowsToDelete.length - 1; i >= 0; i--) {
- this.contentEditForm.fixedTable.fixedTables.splice(
- rowsToDelete[i],
- 1
- )
- }
- this.handleSaveContent('固定表项目', 'delete') // 保存数据
- }
- })
- .catch(() => {})
- break
- default:
- break
- }
- },
- /**
- * 处理固定表项目字段值变化
- */
- handleFixedValueChange(row, rkey, value) {
- if (!row.fixedValues) {
- this.$set(row, 'fixedValues', {})
- }
- this.$set(row.fixedValues, rkey, value)
- },
- // 上升
- handleMoveUp(index, tableType, row) {
- if (tableType === '固定表') {
- const fixedTableData = this.contentEditForm.fixedTable.fixedTables
- const newFixedTableData = [...fixedTableData]
- this.swamTableArr(newFixedTableData, row, true)
- this.contentEditForm.fixedTable.fixedTables = newFixedTableData
- } else {
- // const tableHeaders = this.contentEditForm.fixedTable.tableHeaders
- // const newTableHeaders = [...tableHeaders]
- // this.swamTableArr(newTableHeaders, row, true, true)
- // this.contentEditForm.tableHeaders = newTableHeaders
- if (index > 0) {
- const temp = this.contentEditForm.fixedTable.tableHeaders[index]
- this.contentEditForm.fixedTable.tableHeaders.splice(index, 1)
- this.contentEditForm.fixedTable.tableHeaders.splice(
- index - 1,
- 0,
- temp
- )
- // 更新表头的序号
- this.updateTableHeadersOrderNumbers()
- }
- }
- },
- // 下降
- handleMoveDown(index, tableType, row) {
- if (tableType === '固定表') {
- const fixedTableData = this.contentEditForm.fixedTable.fixedTables
- const newFixedTableData = [...fixedTableData]
- this.swamTableArr(newFixedTableData, row, false)
- this.contentEditForm.fixedTable.fixedTables = newFixedTableData
- } else {
- // const tableHeaders = this.contentEditForm.tableHeaders
- // const newTableHeaders = [...tableHeaders]
- // this.swamTableArr(newTableHeaders, row, false)
- // this.contentEditForm.tableHeaders = newTableHeaders
- if (index < this.contentEditForm.fixedTable.tableHeaders.length - 1) {
- const temp = this.contentEditForm.fixedTable.tableHeaders[index]
- this.contentEditForm.fixedTable.tableHeaders.splice(index, 1)
- this.contentEditForm.fixedTable.tableHeaders.splice(
- index + 1,
- 0,
- temp
- )
- // 更新表头的序号
- this.updateTableHeadersOrderNumbers()
- }
- }
- },
- swamTableArr(arr, row, asc, isHeader) {
- const isChild = row.isChild || row.isSubItem || false
- if (isChild) {
- // 子节点处理逻辑后续实现 parentid rowid
- let child = arr.find((item) => item.rowid === row.parentid)
- // const rowIndex = arr.indexOf(row);
- // newFixedTableData[rowIndex]
- this.doSwamTableArr(child.children, row, asc, isHeader)
- } else {
- // 创建数组副本以确保Vue能检测到变化
- // 直接替换整个数组,确保Vue能检测到变化
- this.doSwamTableArr(arr, row, asc, isHeader)
- }
- },
- doSwamTableArr(arr, row, asc, isHeader) {
- const rowIndex = arr.indexOf(row)
- let swamIndex = 0
- if (asc) {
- // 正序
- if (rowIndex < 1) {
- return
- }
- swamIndex = rowIndex - 1
- } else {
- // 倒序
- if (rowIndex >= arr.length - 1) {
- return
- }
- swamIndex = rowIndex + 1
- }
- const curr = arr[rowIndex]
- const swam = arr[swamIndex]
- // 交换orderNum
- const tempOrderNum = curr.orderNum
- curr.orderNum = swam.orderNum
- swam.orderNum = tempOrderNum
- // row.isChild &&
- if (!isHeader) {
- // 获取当前项的序号值
- let currIndex = curr.fixedValues
- ? curr.fixedValues['序号']
- : curr.dynamicValues['序号']
- // 获取交换项的序号值
- let swamIndex = swam.fixedValues
- ? swam.fixedValues['序号']
- : swam.dynamicValues['序号']
- // 先保存交换项的值,再进行赋值,避免值被覆盖
- if (curr.fixedValues) {
- curr.fixedValues['序号'] = swamIndex
- } else {
- curr.dynamicValues['序号'] = swamIndex
- }
- if (swam.fixedValues) {
- swam.fixedValues['序号'] = currIndex
- } else {
- swam.dynamicValues['序号'] = currIndex
- }
- }
- // 交换数组中的位置
- arr[rowIndex] = swam
- arr[swamIndex] = curr
- },
- // 更新表头序号
- updateTableHeadersOrderNumbers() {
- // 更新固定表的表头序号
- if (
- this.contentEditForm.fixedTable &&
- this.contentEditForm.fixedTable.tableHeaders
- ) {
- this.contentEditForm.fixedTable.tableHeaders.forEach(
- (header, index) => {
- header.orderNum = index + 1
- }
- )
- }
- },
- // 添加子项方法
- handleAddChildItem(index, type, parentRow) {
- if (!parentRow.rowid) {
- this.$set(parentRow, 'rowid', this.generateUUID())
- }
- switch (type) {
- case '固定表项目':
- let parentIndex1 =
- this.contentEditForm.fixedTable.fixedTables.findIndex(
- (item) => item.rowid == parentRow.rowid
- )
- if (
- !this.contentEditForm.fixedTable.fixedTables[parentIndex1]
- .children
- ) {
- this.$set(
- this.contentEditForm.fixedTable.fixedTables[parentIndex1],
- 'children',
- []
- )
- }
- let childOrderNum =
- this.contentEditForm.fixedTable.fixedTables[parentIndex1].children
- .length + 1
- let fixedValues = {
- ...parentRow.fixedValues,
- }
- for (const key in fixedValues) {
- if (key == '序号') {
- fixedValues[key] = childOrderNum
- } else {
- fixedValues[key] = ''
- }
- }
- const fixedNewRow = {
- orderText: this.contentEditForm.fixedTable.fixedTables.length + 1,
- orderNum: this.contentEditForm.fixedTable.fixedTables.length + 1,
- cellCode: '',
- calculationFormula: '',
- unit: '',
- tabtype: this.contentEditForm.templateType,
- surveyTemplateId: this.contentEditForm.surveyTemplateId,
- versionId: this.versionId,
- fixedValues: fixedValues,
- parentid: parentRow.rowid,
- isChild: true,
- isSubItem: true,
- rowid: this.generateUUID(),
- }
- this.contentEditForm.fixedTable.fixedTablesTitle.forEach(
- (title) => {
- if (!(title.rkey in fixedNewRow.fixedValues)) {
- fixedNewRow.fixedValues[title.rkey] = ''
- }
- }
- )
- this.contentEditForm.fixedTable.fixedTables[
- parentIndex1
- ].children.push(fixedNewRow)
- // this.contentEditForm.fixedTable.fixedTables.splice(
- // index + 1,
- // 0,
- // fixedNewRow
- // )
- break
- }
- this.$nextTick(() => {
- const tableBody = document.querySelector('.el-table__body-wrapper')
- if (tableBody) {
- tableBody.scrollTop = tableBody.scrollHeight
- }
- })
- },
- handleCreateModeChange() {
- if (this.contentEditForm.createmode == 1) {
- this.contentEditForm.createtemplateid1 = ''
- } else if (this.contentEditForm.createmode == 2) {
- this.contentEditForm.createtemplateid = ''
- }
- },
- openCalculationFormulaDialogVisible(row, index) {
- this.currentEditingRow = row
- this.currentEditingRowIndex = index
- this.calculationFormulaDialogVisible = true
- this.formulaText = row.calculationFormula || ''
- this.selectedTemplateId = '' // 重置选中的模板
- this.indicatorTableData = [] // 清空指标数据
- this.getListFixedEnabled()
- },
- getListFixedEnabled() {
- getListFixedEnabled({
- surveyTemplateId: this.contentEditForm.surveyTemplateId,
- }).then((res) => {
- this.templateList = res.value
- })
- },
- // 处理模板选择变化
- handleTemplateChange(templateId) {
- if (templateId) {
- // 根据选中的模板ID查找对应的surveyTemplateId
- const selectedTemplate = this.templateList.find(
- (item) => item.pkVal === templateId
- )
- if (selectedTemplate && selectedTemplate.surveyTemplateId) {
- this.getCellCodesByTemplateId(selectedTemplate.surveyTemplateId)
- } else {
- this.indicatorTableData = []
- }
- } else {
- this.indicatorTableData = []
- }
- // 恢复该模板之前选中的指标项
- this.$nextTick(() => {
- if (this.selectedIndicatorsPerTemplate[templateId]) {
- this.indicatorTableData.forEach((item) => {
- const isSelected = this.selectedIndicatorsPerTemplate[
- templateId
- ].some((selectedItem) => selectedItem.code === item.code)
- this.$set(item, 'checked', isSelected)
- if (isSelected) {
- this.formatRowCode(item)
- }
- })
- }
- // 更新选中的指标代码列表
- this.updateSelectedIndicatorCodes()
- })
- },
- getCellCodesByTemplateId(surveyTemplateId) {
- listByVerifyTemplateId({
- surveyTemplateId: surveyTemplateId,
- })
- .then((res) => {
- // 将返回的数据转换为表格需要的格式
- if (res.value && Array.isArray(res.value.itemlist)) {
- let fixedTablesTitle = this.stringToObjects(
- res.value.fixedFields || ''
- )
- this.indicatorTableHeaders = fixedTablesTitle
- this.indicatorTableData = res.value.itemlist.map((item) => ({
- ...item,
- checked: false,
- cellCode: item.cellCode || '',
- name: res.value.fixedFields.split(',')[0] || '',
- formattedCode: '', // 添加格式化代码字段
- }))
- } else {
- this.indicatorTableData = []
- }
- })
- .catch((error) => {
- console.error('获取指标数据失败:', error)
- this.indicatorTableData = []
- })
- },
- updateSelectedIndicatorCodes() {
- // 获取当前选中的行
- const selectedRows = this.indicatorTableData.filter(
- (item) => item.checked
- )
- // 更新选中的指标代码列表
- this.selectedIndicatorCodes = selectedRows.map((item) => {
- // 获取选中的模板信息
- const selectedTemplate = this.templateList.find(
- (template) => template.pkVal === this.selectedTemplateId
- )
- // 获取模板的 surveyTemplateNameYw
- const templateName = selectedTemplate
- ? selectedTemplate.surveyTemplateNameYw ||
- selectedTemplate.surveyTemplateName ||
- ''
- : ''
- return templateName
- ? `${templateName}.${item.code || item.cellCode || ''}`
- : item.code || item.cellCode || ''
- })
- },
- formatRowCode(row) {
- const selectedTemplate = this.templateList.find(
- (item) => item.pkVal === this.selectedTemplateId
- )
- const surveyTemplateNameYw = selectedTemplate
- ? selectedTemplate.surveyTemplateNameYw ||
- selectedTemplate.surveyTemplateName ||
- ''
- : ''
- const formattedCode = surveyTemplateNameYw
- ? `${surveyTemplateNameYw}.${row.code || row.cellCode || ''}`
- : row.code || row.cellCode || ''
- this.$set(row, 'formattedCode', formattedCode)
- const templateCode = surveyTemplateNameYw
- ? `${surveyTemplateNameYw}_${row.code || row.cellCode || ''}`
- : row.code || row.cellCode || ''
- this.$set(
- row,
- 'jsonStr',
- JSON.stringify([
- {
- [templateCode]: this.selectedTemplateId,
- },
- ])
- )
- },
- handleRowClick(row, column, event) {
- // 只有点击非 checkbox 列才触发
- if (column && column.property !== 'checked') {
- // 如果没有 cellCode,则不允许选中
- if (!row.cellCode) {
- // this.$message.warning('该数据没有指标编号,无法选择')
- return
- }
- // 切换选中状态
- this.toggleRowSelection(row)
- }
- },
- toggleRowSelection(row) {
- // 切换选中状态
- this.$set(row, 'checked', !row.checked)
- // 格式化代码并存储在行数据中
- if (row.checked) {
- this.formatRowCode(row)
- }
- // 触发选中状态更新
- this.$forceUpdate()
- },
- selectionIndicatorChange(val) {
- this.indicatorTableData.forEach((item) => {
- item.checked = val.includes(item)
- })
- },
- handleCheckboxChange(row) {
- // 如果没有 cellCode,则不允许选中
- if (!row.cellCode) {
- this.$message.warning('该数据没有指标编号,无法选择')
- this.$set(row, 'checked', false)
- return
- }
- this.$set(row, 'checked', !row.checked)
- if (row.checked) {
- this.formatRowCode(row)
- }
- this.updateSelectedIndicatorCodes()
- this.$forceUpdate()
- },
- handleFormulaTextChange(value) {
- // 当用户手动修改公式文本时,标记为非自动生成
- this.isAutoGeneratedFormula = false
- },
- handleDialogClose(done) {
- this.selectedIndicatorsPerTemplate = {}
- done()
- },
- handleRadioChange(value) {
- this.formulaText = ''
- },
- handleConfirm() {
- const result = {
- type: this.radioType,
- formula: this.formulaText,
- selectedTemplate: this.selectedTemplateId,
- selectedItems: this.indicatorTableData.filter((item) => item.checked),
- }
- let _data = []
- if (this.radioType == 'current') {
- // 使用递归函数扁平化树形结构
- const flattenTree = (nodes) => {
- let result = []
- nodes.forEach((node) => {
- result.push(node)
- if (node.children && node.children.length > 0) {
- result = result.concat(flattenTree(node.children))
- }
- })
- return result
- }
- // 扁平化数据并提取cellCode
- _data = flattenTree(this.contentEditForm.fixedTable.fixedTables)
- .filter((item) => item.cellCode)
- .map((item) => item.cellCode)
- } else if (this.radioType == 'other') {
- if (!result.selectedTemplate) {
- this.$message.error('请选择指标编号')
- return
- }
- _data = this.indicatorTableData
- .filter((item) => item.cellCode)
- .map((item) => item.cellCode)
- }
- if (!this.validateFormula(this.formulaText, _data).valid) {
- this.$message.error(
- this.validateFormula(this.formulaText, _data).errorMsg
- )
- return
- }
- // 生成 jsonstr 字段
- const jsonStrArray = this.indicatorTableData
- .filter((item) => item.checked)
- .map((item) => {
- if (item.jsonStr) {
- try {
- return JSON.parse(item.jsonStr)[0]
- } catch (e) {
- console.error('解析 jsonStr 失败:', e)
- return {}
- }
- }
- return {}
- })
- .filter((item) => Object.keys(item).length > 0)
- const jsonstr = JSON.stringify(jsonStrArray)
- // 更新当前编辑行的计算公式值
- if (this.currentEditingRow) {
- this.$set(
- this.currentEditingRow,
- 'calculationFormula',
- this.formulaText
- )
- this.$set(this.currentEditingRow, 'jsonstr', jsonstr)
- }
- console.log('点击了确定,获取到的数据:', {
- ...result,
- jsonstr: jsonstr,
- })
- // 清空当前操作的状态
- this.calculationFormulaDialogVisible = false
- this.currentEditingRow = null
- this.currentEditingRowIndex = -1
- this.isAutoGeneratedFormula = false
- this.selectedTemplateId = ''
- this.indicatorTableData = []
- this.selectedIndicatorsPerTemplate = {} // 清空模板选中记录
- },
- /**
- * 解析并回显固定表项目数据
- * @param {Object} responseData - listByCurrentTemplateId接口返回的数据
- */
- parseAndDisplayFixedTableData(responseData) {
- // if (responseData.value.fixedFields) {
- // this.contentEditForm.fixedTable.fixedTablesTitle =
- // this.stringToObjects(responseData.value.fixedFields || '')
- // } else {
- // let fixedFields = this.contentEditForm.fixedTable.tableHeaders
- // .map((item) => item.fieldName)
- // .join(',')
- // this.contentEditForm.fixedTable.fixedTablesTitle =
- // this.stringToObjects(fixedFields || '')
- // }
- let fixedFields = this.contentEditForm.fixedTable.tableHeaders
- .map((item) => item.fieldName)
- .join(',')
- this.contentEditForm.fixedTable.fixedTablesTitle = this.stringToObjects(
- fixedFields || ''
- )
- const fixedTitles = this.contentEditForm.fixedTable.fixedTablesTitle
- this.contentEditForm.fixedTable.fixedTableHeaders = fixedTitles.filter(
- (title) => title.rkey !== '序号'
- )
- if (
- !responseData ||
- !responseData.value ||
- !responseData.value.itemlist
- ) {
- return
- }
- const itemList = responseData.value.itemlist
- const allRows = []
- const rowMap = new Map()
- // 清空现有数据
- this.contentEditForm.fixedTable.fixedTables = []
- // 遍历itemList,为每个项目创建一行数据
- itemList.forEach((item, index) => {
- // 判断是否为子项(parentid不为-1且不为"-1")
- const isSubItem =
- item.parentid && item.parentid !== -1 && item.parentid !== '-1'
- const newRow = {
- orderText: item.orderNum || '', // 显示用序号
- orderNum: item.orderNum || '', // 保留原始序号用于发送后端
- surveyTemplateId: item.surveyTemplateId,
- versionId: item.versionId,
- cellCode: item.cellCode || '',
- calculationFormula: item.calculationFormula || '',
- unit: item.unit || '',
- fixedValues: {},
- itemId: item.id || null,
- parentid: item.parentid || -1,
- isChild: isSubItem,
- isSubItem: isSubItem,
- rowid: item.rowid || this.generateUUID(),
- jsonstr: item.jsonstr || null,
- children: [], // 添加children数组用于树形结构
- }
- // 确保orderNum是数字类型
- if (item.orderNum) {
- newRow.orderNum = parseInt(item.orderNum, 10) || 0
- }
- // 初始化fixedValues并填充实际值
- fixedTitles.forEach((title) => {
- newRow.fixedValues[title.rkey] = item[title.rkey] || ''
- })
- allRows.push(newRow)
- // 构建rowMap用于快速查找
- if (newRow.rowid) rowMap.set(String(newRow.rowid), newRow)
- if (newRow.itemId) rowMap.set(String(newRow.itemId), newRow)
- })
- // 构建树形结构
- const treeData = []
- const parentItems = allRows.filter((item) => !item.isChild)
- // 父级按orderNum正序排序
- parentItems.sort((a, b) => (a.orderNum || 0) - (b.orderNum || 0))
- // 将子项添加到对应的父项的children中
- allRows.forEach((item) => {
- if (item.isChild) {
- const parentId = String(item.parentid)
- const parent = rowMap.get(parentId)
- if (parent) {
- parent.children.push(item)
- }
- }
- })
- // 对子项进行排序
- parentItems.forEach((parent) => {
- parent.children.sort(
- (a, b) =>
- (a.fixedValues['序号'] || 0) - (b.fixedValues['序号'] || 0)
- )
- treeData.push(parent)
- })
- this.contentEditForm.fixedTable.fixedTables = treeData
- },
- /**
- * 将固定表项目的数据根据固定列拆分成对应的数据结构
- * @returns {Array} 拆分后的数据数组,每个固定列对应一行数据
- */
- splitFixedTableDataForSave() {
- const fixedTables = this.contentEditForm.fixedTable.fixedTables
- const fixedTitles = this.contentEditForm.fixedTable.fixedTablesTitle
- const fixedHeaders = this.contentEditForm.fixedTable.tableHeaders
- // 结果数组
- const result = []
- // 递归处理树形结构中的所有节点
- const processNode = (node, parentRowIndex = 0) => {
- // 确保node和fixedValues存在
- if (!node) {
- console.warn('遇到空节点,跳过处理')
- return
- }
- // 确保fixedValues属性存在,如果不存在则初始化为空对象
- if (!node.fixedValues) {
- node.fixedValues = {}
- }
- // 为每个固定列创建一条记录
- fixedTitles.forEach((title) => {
- // 找到对应的表头信息
- const correspondingHeader = fixedHeaders.find(
- (header) => header.fieldName === title.rkey
- )
- const newItem = {
- rkey: title.rkey,
- rvalue: node.fixedValues[title.rkey] || '',
- surveyTemplateId: node.surveyTemplateId || this.surveyTemplateId,
- versionId: node.versionId || this.versionId,
- tabtype: node.tabtype || this.templateType,
- // 添加 headersId 字段(表头的id)
- headersId: correspondingHeader ? correspondingHeader.id : null,
- // 添加记录的id(itemlist中每条记录的id)
- id: node.itemId || null,
- // 添加父子关系字段
- parentid: node.parentid || -1, // 父项ID,默认为-1表示无父项
- isChild: node.isChild || false, // 是否为子项
- // 添加 rowid 字段
- rowid: node.rowid || null,
- // 添加计算公式相关字段
- calculationFormula: node.calculationFormula || null,
- jsonstr: node.jsonstr || null,
- orderNum:
- typeof node.orderNum === 'number'
- ? node.orderNum
- : parseInt(node.orderNum, 10) || 0,
- }
- // 添加其他固定表特有的字段
- if (!node.isSubItem) {
- newItem.cellCode = node.cellCode || ''
- newItem.unit = node.unit || ''
- }
- // 添加其他可能需要的字段,但排除特定字段
- Object.keys(node).forEach((key) => {
- if (
- !(key in newItem) &&
- key !== 'fixedValues' &&
- key !== 'itemId' &&
- key !== 'id' &&
- key !== 'parentid' &&
- key !== 'isChild' &&
- key !== 'isSubItem' &&
- key !== 'rowid' &&
- key !== 'jsonstr' &&
- key !== 'calculationFormula' &&
- key !== 'children' // 排除children字段
- ) {
- newItem[key] = node[key]
- }
- })
- result.push(newItem)
- })
- // 递归处理子节点
- if (node.children && node.children.length > 0) {
- node.children.forEach((childNode) => {
- processNode(childNode)
- })
- }
- }
- // 遍历所有顶级节点
- fixedTables.forEach((row) => {
- processNode(row)
- })
- // 重新给子节点赋值orderNum 保证所有元素orderNum字段不重复
- // 为所有子节点分配唯一的orderNum,但保持父节点的orderNum不变
- // 计算所有已存在的orderNum中的最大值
- let maxExistingOrderNum = 0
- // 首先遍历结果数组找出当前最大的orderNum
- result.forEach((item) => {
- const orderNum =
- typeof item.orderNum === 'number'
- ? item.orderNum
- : parseInt(item.orderNum, 10) || 0
- if (orderNum > maxExistingOrderNum) {
- maxExistingOrderNum = orderNum
- }
- })
- // 子节点orderNum从当前最大orderNum + 1开始
- let childOrderNumCounter = maxExistingOrderNum + 1
- // 创建一个映射表,用于记录每个子节点对应的新orderNum
- const childOrderMap = new Map()
- // 第一次遍历:为每个子节点分配新的orderNum并存储映射关系
- function assignChildOrderNums(nodes) {
- nodes.forEach((node) => {
- if (node.isChild || node.isSubItem) {
- // 为每个子节点分配唯一的orderNum
- childOrderMap.set(node.id || node.rowid, childOrderNumCounter++)
- }
- // 递归处理子节点
- if (node.children && node.children.length > 0) {
- assignChildOrderNums(node.children)
- }
- })
- }
- // 第二次遍历:更新结果数组中的orderNum
- assignChildOrderNums(fixedTables)
- // 应用新的orderNum到结果数组
- result.forEach((item) => {
- // 只更新子节点的orderNum
- if (item.isChild || item.isSubItem) {
- const newOrderNum =
- childOrderMap.get(item.id) || childOrderMap.get(item.rowid)
- if (newOrderNum) {
- item.orderNum = newOrderNum
- }
- }
- })
- return result
- },
- //分割字符串
- stringToObjects(str) {
- const items = str.split(',')
- return items.map((item) => ({
- rkey: item,
- rvalue: '',
- }))
- },
- /**
- * 获取行缩进样式,用于树形结构展示
- * @param {Object} row - 表格行数据
- * @returns {Object} 样式对象
- */
- getRowIndentStyle(row) {
- // 为子项添加缩进
- if (row.isChild) {
- return {
- marginLeft: '30px',
- }
- }
- return {}
- },
- handleSaveTemplate() {
- // 校验表单
- this.$refs['contentEditForm'].validate((valid) => {
- if (valid) {
- // 显示加载状态
- this.$loading({
- lock: true,
- text: '保存数据中...',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)',
- })
- if (this.dialogTitle == '修改成本核定模板') {
- let data = {
- ...this.contentEditForm,
- }
- delete data.fixedTable
- // 修改表单数据
- addCostVerifyForm(data).then((res) => {})
- }
- // 获取拆分后的数据
- const splitData = this.splitFixedTableDataForSave()
- const headersList =
- this.contentEditForm.fixedTable.tableHeaders.map(
- (header, index) => ({
- ...header,
- orderNum: header.orderNum || index + 1,
- })
- )
- let data = {
- costVerifyTemplateId: this.contentEditForm.surveyTemplateId,
- headersList: headersList,
- itemsList: splitData,
- }
- batchSaveOrUpdate(data)
- .then((data) => {
- // 关闭加载状态
- this.$loading().close()
- this.dialogVisible = false
- this.$message.success('保存成功')
- this.handleSearch()
- })
- .catch((err) => {
- // 关闭加载状态
- this.$loading().close()
- console.log(err)
- })
- } else {
- this.$message.error('请填写表单数据')
- return
- }
- })
- },
- // 批量删除
- handleBatchDelete() {
- if (this.selectedRows.length === 0) {
- this.$message.warning('请先选择要删除的数据')
- return
- }
- this.$confirm(
- `确定要删除选中的${this.selectedRows.length}条数据吗?`,
- '提示',
- {
- type: 'warning',
- }
- )
- .then(() => {
- const ids = this.selectedRows.map((row) => row.surveyTemplateId)
- batchDeleteCostVerifyForm(ids).then((res) => {
- if (res.code === 200) {
- this.selectedRows = []
- this.$message.success('批量删除成功')
- this.handleSearch()
- }
- })
- })
- .catch(() => {})
- },
- // 表格选择
- handleSelectionChange(selection) {
- this.selectedRows = selection
- },
- // 分页相关
- handleSizeChange(val) {
- this.searchForm.pageSize = val
- this.handleSearch()
- },
- handleCurrentChange(val) {
- this.searchForm.page = val
- this.handleSearch()
- },
- // 获取或设置序号字段
- getOrSetOrder(row, value) {
- // 如果提供了value参数,则设置值
- if (value !== undefined) {
- // 使用this.$set确保响应式更新
- if (row['序号'] === undefined) {
- this.$set(row, '序号', value)
- } else {
- row['序号'] = value
- }
- }
- // 如果没有提供value参数,则获取值
- return row['序号'] !== undefined && row['序号'] !== null
- ? row['序号']
- : row.orderNum || ''
- },
- // 公式验证函数
- validateFormula(formula, data) {
- if (!formula || typeof formula !== 'string') {
- return { valid: false, errorMsg: '公式不能为空' }
- }
- // 定义有效的操作符
- const operators = ['+', '-', '*', '/', '(', ')']
- // 检查是否包含至少一个操作符
- const hasOperator = operators.some((operator) =>
- formula.includes(operator)
- )
- if (!hasOperator) {
- return { valid: false, errorMsg: '公式必须包含操作符' }
- }
- // 检查值是否在data中存在
- function checkValueInData(value, data) {
- if (!data) return false
- if (Array.isArray(data)) {
- return data.includes(value)
- } else if (typeof data === 'object') {
- return Object.values(data).includes(value)
- }
- return data === value
- }
- // 提取公式中的变量/值
- function extractValues(formulaStr) {
- // 改进实现:支持形如"CeShi3.C2"的格式,提取点后面的部分作为变量,同时保留普通变量
- const result = new Set()
- // 1. 首先提取带点格式中的变量部分(如CeShi3.C2中的C2)
- const dotRegex = /[A-Za-z0-9]+\.([A-Za-z0-9]+)/g
- let dotMatch
- while ((dotMatch = dotRegex.exec(formulaStr)) !== null) {
- result.add(dotMatch[1]) // 提取点后面的部分作为变量
- }
- // 2. 然后提取普通变量(C3等),但排除已经从带点格式中提取的部分
- // 移除所有带点的部分,然后提取剩余的变量
- const remainingFormula = formulaStr.replace(
- /[A-Za-z0-9]+\.[A-Za-z0-9]+/g,
- ''
- )
- const normalRegex = /[A-Za-z0-9]+/g
- let normalMatch
- while ((normalMatch = normalRegex.exec(remainingFormula)) !== null) {
- // 跳过纯数字
- if (
- !isNaN(Number(normalMatch[0])) &&
- Number(normalMatch[0]).toString() === normalMatch[0]
- ) {
- continue
- }
- result.add(normalMatch[0])
- }
- return Array.from(result)
- }
- function checkOperatorContext(formulaStr, data) {
- for (let i = 0; i < formulaStr.length; i++) {
- const char = formulaStr[i]
- // 跳过括号
- if (char === '(' || char === ')') continue
- // 检查操作符
- if (operators.includes(char)) {
- // 检查操作符前是否有值(开头或不是操作符和左括号)
- if (
- i === 0 ||
- (operators.includes(formulaStr[i - 1]) &&
- formulaStr[i - 1] !== ')') ||
- formulaStr[i - 1] === '('
- ) {
- return {
- valid: false,
- errorMsg: `位置 ${i + 1} 的操作符 '${char}' 前缺少值`,
- }
- }
- // 检查操作符后是否有值(结尾或不是操作符和右括号)
- if (
- i === formulaStr.length - 1 ||
- (operators.includes(formulaStr[i + 1]) &&
- formulaStr[i + 1] !== '(') ||
- formulaStr[i + 1] === ')'
- ) {
- return {
- valid: false,
- errorMsg: `位置 ${i + 1} 的操作符 '${char}' 后缺少值`,
- }
- }
- }
- }
- // 验证通过后,检查公式中的值是否都在data中存在
- if (data.length > 0) {
- const values = extractValues(formulaStr)
- for (const value of values) {
- // 跳过纯数字(假设有值不在data中)
- if (!isNaN(Number(value)) && Number(value).toString() === value) {
- continue
- }
- if (!checkValueInData(value, data)) {
- return {
- valid: false,
- errorMsg: `变量 '${value}' 在数据中不存在`,
- }
- }
- }
- }
- return { valid: true }
- }
- // 执行验证
- return checkOperatorContext(formula, data)
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .row-indent-container {
- display: flex;
- align-items: center;
- position: relative;
- }
- .child-item {
- padding-left: 30px; /* 增加子项缩进,为'子项'文字留出空间 */
- }
- .child-item-indicator {
- position: absolute;
- left: 0;
- color: $base-color-default; /* 使用主题色,更醒目 */
- font-size: 12px;
- width: 30px;
- text-align: left;
- font-weight: 500;
- }
- @import '@/styles/costAudit.scss';
- .supervision-content-container {
- padding: 20px;
- .operation-bar {
- margin-bottom: 20px;
- }
- .table-container {
- .table-name-link {
- color: #409eff;
- cursor: pointer;
- &:hover {
- color: #66b1ff;
- text-decoration: underline;
- }
- }
- .pagination-container {
- margin-top: 20px;
- text-align: right;
- }
- }
- .content-form,
- .detail-form {
- ::v-deep .el-select {
- width: 100%;
- }
- }
- }
- </style>
|