BalanceTable.vue 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748
  1. <template>
  2. <div class="table-wrapper" @keydown="handlekeyDownKeys">
  3. <template v-if="config.data.length">
  4. <!-- 工具栏 -->
  5. <toolBarSection
  6. v-if="!disabled"
  7. :cell="selectCell?selectCell:mergeSelectedCells" @cellMerge="toolCellMergeFun"
  8. @openConDialog="openConDialog"
  9. :echoParameter="{hasMergedCell}"
  10. />
  11. <!-- 公式显示区 -->
  12. <div class="formula-wrapper" v-if="!disabled">
  13. <span style="flex-shrink: 0; color: #c0c4cc">{{
  14. $t("OnlineExcelPage.formula_lable")
  15. }}</span>
  16. <el-input
  17. v-if="selectCell && selectCell.DataType === 6"
  18. v-model="selectCell.Value"
  19. @change="updateValueByFormula"
  20. />
  21. </div>
  22. <div class="table-content-wrap">
  23. <div class="left-wrap">
  24. <div style="padding:20px;background-color: #fff;" @mouseleave="endSelection">
  25. <div class="table-wrap">
  26. <table
  27. id="myTable"
  28. width="auto"
  29. border="0"
  30. class="table"
  31. ref="tableRef"
  32. :style="disabled ? 'width:100%' : ''"
  33. style="position: relative;"
  34. @mousedown="selectCellHandle"
  35. >
  36. <thead>
  37. <tr>
  38. <!-- 行头 -->
  39. <th class="th-tg sm"></th>
  40. <!-- 列头 -->
  41. <th
  42. v-for="(item, index) in columnHeader"
  43. :key="index"
  44. class="th-tg th-col"
  45. :data-cindex="item"
  46. :data-rindex="-1"
  47. @contextmenu.prevent="rightClickHandle"
  48. >
  49. {{ item }}
  50. </th>
  51. </tr>
  52. </thead>
  53. <tbody>
  54. <tr v-for="(row, index) in config.data" :key="index">
  55. <!-- 行头 -->
  56. <th
  57. class="th-tg th-row sm"
  58. @contextmenu.prevent="rightClickHandle"
  59. :data-rindex="rowHeader[index]"
  60. :data-cindex="-1"
  61. >
  62. {{ rowHeader[index] }}
  63. </th>
  64. <td
  65. v-for="(cell, cell_index) in row"
  66. :key="`${index}_${cell_index}`"
  67. :data-rindex="rowHeader[index]"
  68. :data-cindex="columnHeader[cell_index]"
  69. :data-key="cell.Uid"
  70. :data-datarindex="index"
  71. :data-datacindex="cell_index"
  72. :style="cell.ShowStyle?getShowCss(cell.ShowStyle):{}"
  73. :initIndex="initIndex(index,cell_index,rowHeader[index],columnHeader[cell_index])"
  74. v-show="!cell.merData || cell.merData.type!=='merged'"
  75. :colspan="(cell.merData && cell.merData.type=='merge' && cell.merData.mer)?cell.merData.mer.colspan || 1:1"
  76. :rowspan="(cell.merData && cell.merData.type=='merge' && cell.merData.mer)?cell.merData.mer.rowspan || 1:1"
  77. @click="clickCell($event, cell)"
  78. @dblclick="dblClickCellHandle($event, cell)"
  79. @contextmenu.prevent="rightClickHandle($event, cell)"
  80. @mouseenter="getRelationEdbInfo(cell)"
  81. @copy="copyCellHandle($event, cell)"
  82. @paste="pasteCellHandle($event, cell)"
  83. @mousedown="startSelection(index, cell_index)"
  84. @mouseover="extendSelection(index, cell_index)"
  85. @mouseup="endSelection"
  86. :class="{
  87. 'td_selected': isSelected(index, cell_index),
  88. 'text-select-disabled':startSelectTable
  89. }"
  90. >
  91. <!-- 插入单元格禁止编辑 -->
  92. <!-- [4,5,6,7,8].includes(cell.DataType)&&!cell.CanEdit -->
  93. <template
  94. v-if="
  95. !cell.CanEdit ||
  96. disabled ||
  97. (cell.DataType === 1 &&
  98. [1, 2].includes(cell.DataTimeType))
  99. "
  100. >
  101. <!-- 单元格类型5 7显示指标浮窗 -->
  102. <el-popover
  103. v-if="[5, 7].includes(cell.DataType) && !disabled"
  104. placement="top-start"
  105. width="350"
  106. trigger="hover"
  107. >
  108. <ul>
  109. <li style="display: flex; margin: 10px">
  110. <label style="min-width: 80px">{{
  111. $t("OnlineExcelPage.indicator_name_lbl")
  112. }}</label>
  113. {{ cellrelationEdbInfo.EdbName }}
  114. </li>
  115. <li style="display: flex; margin: 10px">
  116. <label style="min-width: 80px">{{
  117. $t("OnlineExcelPage.lastest_date_lab")
  118. }}</label>
  119. {{ cellrelationEdbInfo.LatestDate }}
  120. </li>
  121. <li style="display: flex; margin: 10px">
  122. <label style="min-width: 80px">{{
  123. $t("Table.edb_id")
  124. }}</label>
  125. {{ cellrelationEdbInfo.EdbCode }}
  126. </li>
  127. </ul>
  128. <span
  129. slot="reference"
  130. :data-rindex="rowHeader[index]"
  131. :data-cindex="columnHeader[cell_index]"
  132. :data-datarindex="index"
  133. :data-datacindex="cell_index"
  134. :data-key="cell.Uid"
  135. >{{
  136. cell.ShowStyle
  137. ? cell.ShowFormatValue
  138. : cell.ShowValue
  139. }}</span
  140. >
  141. </el-popover>
  142. <!-- 数字格式化显示 -->
  143. <span
  144. v-else-if="cell.ShowStyle"
  145. :data-rindex="rowHeader[index]"
  146. :data-cindex="columnHeader[cell_index]"
  147. :data-datarindex="index"
  148. :data-datacindex="cell_index"
  149. :data-key="cell.Uid"
  150. >
  151. {{isShowDecimal(cell)?showDecimalValue(cell):isShowFormat(cell.ShowStyle)?cell.ShowFormatValue:cell.DataTime?cell.ShowValue:[7,6,5].includes(cell.DataType)?cell.ShowValue:cell.Value}}
  152. </span>
  153. <span
  154. :data-rindex="rowHeader[index]"
  155. :data-cindex="columnHeader[cell_index]"
  156. :data-datarindex="index"
  157. :data-datacindex="cell_index"
  158. :data-key="cell.Uid"
  159. v-else
  160. >{{ cell.ShowValue }}</span
  161. >
  162. </template>
  163. <el-autocomplete
  164. v-else
  165. v-model="cell.Value"
  166. :ref="`inputRef${cell.Uid}`"
  167. popper-class="edb-select-popover"
  168. :data-key="cell.Uid"
  169. :data-rindex="rowHeader[index]"
  170. :data-cindex="columnHeader[cell_index]"
  171. :data-datarindex="index"
  172. :data-datacindex="cell_index"
  173. :fetch-suggestions="searchTarget"
  174. @change.native="changeVal($event, cell)"
  175. @keydown.native="keyEnterHandle($event, cell)"
  176. @blur="
  177. () => {
  178. $set(cell, 'CanEdit', false);
  179. }
  180. "
  181. >
  182. <template slot-scope="scope">
  183. <edbDetailPopover :info="scope.item">
  184. <div
  185. slot="reference"
  186. v-if="cell.DataType === 2"
  187. class="edb-item"
  188. >
  189. <span class="edb-item-name text_oneLine">{{
  190. scope.item.EdbName
  191. }}</span>
  192. <i
  193. class="el-icon-check"
  194. style="color: #0052d9; font-size: 18px"
  195. />
  196. </div>
  197. <div slot="reference" v-else>
  198. {{ scope.item.EdbName }}
  199. </div>
  200. </edbDetailPopover>
  201. </template>
  202. </el-autocomplete>
  203. </td>
  204. </tr>
  205. </tbody>
  206. <!-- 合并单元格选区 -->
  207. <div ref="selectionRef" id="selection-id"
  208. style="position: absolute;border: 2px solid #0052D9;background-color: rgba(0, 82, 217, 0.1);visibility: hidden;z-index: 1;pointer-events: none;"></div>
  209. <!-- 行列选中样式 -->
  210. <div ref="rowColSelectRef" id="row-col-select"
  211. style="position: absolute;border-color: #18ad18;border-style: solid;background-color: transparent;visibility: hidden;z-index: 1;pointer-events: none;"></div>
  212. </table>
  213. </div>
  214. </div>
  215. <!-- 底部sheet -->
  216. <div class="bot-sheet-box">
  217. <ul class="sheet-list">
  218. <div
  219. class="sheet-item"
  220. v-for="(item, index) in sheetOpts"
  221. :key="item.ExcelInfoId"
  222. @contextmenu.prevent="handleShowSheetDel(index)"
  223. @mouseleave="item.showDel=false"
  224. >
  225. <div class="del-box" v-show="item.showDel" @click="delChildSheet">
  226. <span>{{$t('Table.delete_btn')}}</span>
  227. </div>
  228. <div
  229. :class="['el-button el-button--default el-button--mini box',activeSheetId===item.ExcelInfoId?'active':'']"
  230. size="mini"
  231. @dblclick="handleDbclickSheet(item)"
  232. @click="clickChangeSheet(item)"
  233. >
  234. <span class="text" v-if="!item.isEdit">{{ item.ExcelName }}</span>
  235. <input
  236. ref="sheetInput"
  237. v-else
  238. class="input"
  239. type="text"
  240. v-model="temSheetInputVal"
  241. @blur="handleModifySheetName"
  242. @keyup.enter="handleModifySheetName"
  243. />
  244. </div>
  245. </div>
  246. <el-button
  247. size="mini"
  248. icon="el-icon-plus"
  249. @click="handleAddSheet"
  250. v-if="!disabled&&sheetOpts.length < 10"
  251. ></el-button>
  252. </ul>
  253. <el-button type="text" icon="el-icon-plus" @click="isShowAddChart=true;clearSelection()" v-if="!disabled">{{$t('Chart.add_chart_btn')}}</el-button>
  254. </div>
  255. </div>
  256. <!-- 图表模块 -->
  257. <div class="right-wrap" v-if="chartList.length>0">
  258. <div class="chart-list">
  259. <BalanceSheetChartItem
  260. :chartData="item"
  261. :disabled="disabled"
  262. :isStaticTable="isStaticTable"
  263. v-for="item in chartList"
  264. :key="item.ChartInfo.ChartInfoId"
  265. @edit="handleEditChart"
  266. @delete="handleDelChart"
  267. />
  268. </div>
  269. </div>
  270. </div>
  271. <!-- 右键菜单 -->
  272. <div
  273. class="contextMenu-wrapper"
  274. id="contextMenu-wrapper"
  275. @mouseleave="
  276. () => {
  277. activeNames = [];
  278. hideContextMenu();
  279. }
  280. "
  281. >
  282. <div
  283. :class="['item', { deletesty: menu.key === 'reset' }]"
  284. v-for="menu in config.contextMenuOption"
  285. :key="menu.key"
  286. @click="handleContext(menu.key)"
  287. >
  288. <span v-if="!menu.children">{{ menu.label }}</span>
  289. <el-collapse
  290. v-model="activeNames"
  291. @change="handleChange"
  292. v-if="menu.children"
  293. >
  294. <el-collapse-item name="1">
  295. <template slot="title">
  296. {{ menu.label }}
  297. </template>
  298. <div class="subMenu-wrapper">
  299. <div
  300. slot="reference"
  301. class="item"
  302. v-for="submenu in menu.children"
  303. :key="submenu.key"
  304. @click="edbCalculateInsertOpen(submenu)"
  305. >
  306. <el-popover width="300" trigger="hover" placement="right">
  307. <div v-html="formulaTip.get(submenu.fromEdbKey)"></div>
  308. <div slot="reference" style="width: 100%">
  309. {{ submenu.label }}
  310. </div>
  311. </el-popover>
  312. </div>
  313. </div>
  314. </el-collapse-item>
  315. </el-collapse>
  316. <!-- 二级菜单 -->
  317. <!-- <div class="subMenu-wrapper" v-if="menu.children">
  318. <div slot="reference" class="item" v-for="submenu in menu.children" :key="submenu.key" @click="edbCalculateInsertOpen(submenu)">
  319. <el-popover
  320. width="300"
  321. trigger="hover"
  322. placement="right"
  323. >
  324. <div v-html="formulaTip.get(submenu.fromEdbKey)"></div>
  325. <div slot="reference" style="width:100%">{{submenu.label}}</div>
  326. </el-popover>
  327. </div>
  328. </div> -->
  329. </div>
  330. </div>
  331. </template>
  332. <div class="nodata" v-else>
  333. <tableNoData :text="$t('Table.prompt_slogan')" />
  334. </div>
  335. <!-- 选择指标 -->
  336. <selectTargetValueDia
  337. :isShow.sync="isSelectTargetValueDialog"
  338. :info="insertTargetValueInfo"
  339. @insert="insertSelectData"
  340. ref="selectTargetValueRef"
  341. />
  342. <!-- 插入系统/指标日期弹窗 -->
  343. <insertDateDia
  344. :isShow.sync="isInsertDateDialog"
  345. :info="insertDateInfo"
  346. @insert="insertDatehandle"
  347. />
  348. <!-- 指标计算弹窗 -->
  349. <calculateEdbDia
  350. ref="calculateEdbDiaRef"
  351. :isShow.sync="isInsertCalculate"
  352. :info="insertCalculateInfo"
  353. @insert="insertCalculateData"
  354. />
  355. <!-- 日期计算弹窗 -->
  356. <calculateDateDia
  357. ref="calculateDateDiaRef"
  358. :isShow.sync="isInsertCalculateDate"
  359. :info="insertCalculateDateInfo"
  360. @insert="insertCalculateDateValue"
  361. />
  362. <!-- 添加图表 -->
  363. <BalanceAddChart
  364. ref="balanceAddChart"
  365. :isShow.sync="isShowAddChart"
  366. :ExcelInfoId="activeSheetId"
  367. @success="addChartSuccess"
  368. />
  369. <condition-dia
  370. :chooseCell="selectCell?selectCell:mergeSelectedCells"
  371. ref="conditionDia"
  372. @changeRule="getExcelRule"
  373. @deleteRule="deleteExcelRule"
  374. @editRule="editExcelRule"
  375. />
  376. </div>
  377. </template>
  378. <script>
  379. import {
  380. getRowHeaderCode,
  381. getColumnHeaderCode,
  382. selectCellStyle,
  383. selectMoreCellStyle,
  384. setRelationStyle,
  385. getRightClickMenu,
  386. checkDateFormat,
  387. setFocus,
  388. findCellByKey,
  389. resetRelationStyle,
  390. resetDialogCellStyle,
  391. extractFactorsFromFormula,
  392. findCellByFactorMixed,
  393. splitString,
  394. toUpperCase,
  395. findCellKeyByFactor,
  396. isNumberVal,
  397. transDecimalPlace,
  398. resetStyle
  399. } from "../common/customTable";
  400. import * as sheetInterface from "@/api/modules/sheetApi.js";
  401. import { dataBaseInterface } from '@/api/api.js';
  402. import md5 from '@/utils/md5.js';
  403. import selectTargetValueDia from './selectTargetValueDia.vue';
  404. import insertDateDia from './insertDateDia.vue';
  405. import calculateEdbDia from './calculateEdbDia.vue';
  406. import calculateDateDia from './calculateDateDia.vue';
  407. import toolBarSection from './toolBarSection.vue';
  408. import { formulaTip } from '@/views/dataEntry_manage/databaseComponents/util';
  409. import BalanceAddChart from './BalanceAddChart.vue';
  410. import conditionDia from './conditionDia.vue'
  411. import BalanceSheetChartItem from './BalanceSheetChartItem.vue';
  412. import conditionTableMixin from "../mixins/conditionTableMixin.js"
  413. let autoSaveInterval=null;//自动保存定时器
  414. let dblclickInterval=null;//双击事件的定时器 为了解决同一个元素双击事件重复触发单击事件的问题
  415. export default {
  416. mixins:[conditionTableMixin],
  417. props: {
  418. disabled: { //是否只预览
  419. type: Boolean,
  420. default: false,
  421. },
  422. isStaticTable:{//当前是否为静态表
  423. type: Boolean,
  424. default: false,
  425. }
  426. },
  427. components: {
  428. conditionDia,
  429. selectTargetValueDia,
  430. insertDateDia,
  431. calculateEdbDia,
  432. calculateDateDia,
  433. toolBarSection,
  434. BalanceAddChart,
  435. BalanceSheetChartItem
  436. },
  437. computed: {
  438. //列头
  439. columnHeader() {
  440. return getColumnHeaderCode(
  441. this.config.data[0] ? this.config.data[0].length : 0
  442. );
  443. },
  444. //行头
  445. rowHeader() {
  446. let total_length = this.config.data.length;
  447. // console.log(this.config.data)
  448. return getRowHeaderCode(total_length);
  449. },
  450. },
  451. data() {
  452. return {
  453. config: {
  454. /* 单元格类型
  455. 1手动日期格 DataTimeType 0 /系统日期导入格 DataTimeType 1 /指标日期导入格 DataTimeType 2
  456. 2指标格 //eta1.5.6又弃用了
  457. 3自定义输入
  458. 4插入值 表格里有关联的日期和指标格 // eta1.1.6弃用了
  459. 5弹窗里的插入值 有关联日期格
  460. 6公式计算单元格
  461. 7指标计算的插入值单元格
  462. 8日期计算值单元格
  463. */
  464. data: [],
  465. contextMenuOption: [],
  466. },
  467. selectCell: {},//选中单元格info
  468. rightClickCell: {},//右键单元格 key c r
  469. insertTargetCell: {},//选择右键插入时的单元格 可和右键单元格不一样 key c r
  470. insertRelationArr: [], //表格单元格依赖关系数组
  471. isSelectTargetValueDialog: false,//选择指标插入值弹窗
  472. insertTargetValueInfo: {},//编辑 关联info
  473. cellrelationEdbInfo: {}, //指标浮窗信息
  474. copyCellItem: {},//复制时的单元格信息 用于粘贴赋值
  475. calculateClickCell: null,//双击公式单元格时的单元格信息 用于之后选其他单元格拼接公式
  476. isInsertDateDialog: false,//导入日期弹窗
  477. insertDateInfo: {},
  478. isInsertCalculate: false,//插入指标计算值
  479. insertCalculateInfo: {},//指标计算单元格info
  480. formulaTip,
  481. hasInit: false,
  482. isInsertCalculateDate: false,//日期计算弹窗
  483. insertCalculateDateInfo: {},//日期计算info
  484. activeNames: [],
  485. sheetOpts: [
  486. // {
  487. // ...
  488. // isEdit: false,//双击后修改名称置为true
  489. // showDel: false
  490. // }
  491. ],//表格sheet
  492. temSheetInputVal: '',
  493. activeSheetId:0,//当前子表id
  494. isShowAddChart:false,//添加图表
  495. chartList:[],//当前平衡表图表数据
  496. startSelectTable:false,//开始选择单元格
  497. selectionStart: null,
  498. selectionEnd: null,
  499. selectedCells: [],
  500. // 合并单元格data
  501. isSelectionStart:false, //选区开始
  502. startCell:{// 选区时鼠标开始的单元格
  503. row:null,
  504. column:null
  505. },
  506. endCell:{// 选区时鼠标结束的单元格
  507. e:null,
  508. row:null,
  509. column:null
  510. },
  511. mergeSelectionStart:{// 选区范围的左上角单元格
  512. row:null,
  513. rowSpan:0,
  514. column:null,
  515. colSpan:0
  516. },
  517. mergeSelectionEnd:{// 选区范围的右下角角单元格
  518. row:null,
  519. rowSpan:0,
  520. column:null,
  521. colSpan:0
  522. },
  523. hasMergedCell:false,// 选区内是否有合并的单元格
  524. mergeSelectedCells:[],
  525. // 选区有'值'单元格 因为超一个单元格有值不让合并,所以记录一个就行
  526. hasValueCellItem:{
  527. cellNumber:0, //有几个
  528. row:null,
  529. column:null
  530. },
  531. // 做个缓存
  532. cacheKey:'',
  533. cacheCellDom:{},
  534. //规则列表
  535. excelRuleList:[]
  536. };
  537. },
  538. watch:{
  539. 'endCell.row':{
  540. handler(newVal){
  541. this.setSelectionStyle()
  542. }
  543. },
  544. 'endCell.column':{
  545. handler(newVal){
  546. this.setSelectionStyle()
  547. }
  548. }
  549. },
  550. mounted() {
  551. if(!this.disabled){
  552. // 每分钟自动保存一次
  553. autoSaveInterval=setInterval(() => {
  554. this.saveChildSheet()
  555. }, 60*1000);
  556. }
  557. },
  558. beforeDestroy(){
  559. // 清除自动保存定时器
  560. clearInterval(autoSaveInterval)
  561. },
  562. methods: {
  563. // 获取规则
  564. async getExcelRule(){
  565. const res = await dataBaseInterface.getRuleList({ExcelInfoId:this.activeSheetId})
  566. // console.log(res)
  567. if(res.Ret !== 200) return
  568. this.excelRuleList = res.Data.List?res.Data.List:[];
  569. this.commonInitCell()
  570. },
  571. // 打开选择条件格式弹框
  572. openConDialog({chooseItem,chooseCells}){
  573. this.$refs.conditionDia.openDialog(chooseItem,chooseCells,this.excelRuleList,this.activeSheetId)
  574. },
  575. // 获取图表数据
  576. async getChartList(){
  577. const res = await sheetInterface.getBalanceChartData({
  578. ExcelInfoId: Number(this.activeSheetId)
  579. })
  580. if(res.Ret!==200) return
  581. this.chartList=res.Data.List||[]
  582. },
  583. // 添加图表成功回调
  584. addChartSuccess(){
  585. this.isShowAddChart=false
  586. this.getChartList()
  587. },
  588. // 编辑图表
  589. handleEditChart(e){
  590. this.isShowAddChart=true
  591. this.clearSelection()
  592. this.$refs.balanceAddChart.initEditData(e)
  593. },
  594. //删除图表
  595. handleDelChart(e){
  596. sheetInterface.delBalanceChart({ChartInfoId:e.ChartInfo.ChartInfoId}).then(res=>{
  597. if(res.Ret===200){
  598. this.chartList=this.chartList.filter(item=>item.ChartInfo.ChartInfoId!==e.ChartInfo.ChartInfoId)
  599. }
  600. })
  601. },
  602. startSelection(startRow, startCol) {
  603. // 只有添加图标弹窗弹起时有效
  604. if(!this.isShowAddChart) return
  605. if(this.disabled) return
  606. console.log('开始选择');
  607. this.startSelectTable=true
  608. this.selectionStart = { row: startRow, col: startCol };
  609. this.selectionEnd = { row: startRow, col: startCol };
  610. this.selectedCells = [];
  611. },
  612. extendSelection(endRow, endCol) {
  613. if(this.disabled) return
  614. if (this.selectionStart) {
  615. const start = this.selectionStart;
  616. const end = { row: endRow, col: endCol };
  617. const minRow = Math.min(start.row, end.row);
  618. const maxRow = Math.max(start.row, end.row);
  619. const minCol = Math.min(start.col, end.col);
  620. const maxCol = Math.max(start.col, end.col);
  621. this.selectedCells = [];
  622. for (let row = minRow; row <= maxRow; row++) {
  623. for (let col = minCol; col <= maxCol; col++) {
  624. this.selectedCells.push({ row, col });
  625. }
  626. }
  627. this.selectionEnd = end;
  628. }
  629. },
  630. // 选择表格结束
  631. endSelection() {
  632. // 只有添加图标弹窗弹起时有效
  633. if(!this.isShowAddChart) return
  634. if(this.disabled) return
  635. console.log('结束选择');
  636. if(this.selectionStart){
  637. // 找到当前sheet 数据
  638. const sobj=this.sheetOpts.filter(_e=>_e.ExcelInfoId===this.activeSheetId)[0]
  639. // 如果选择的不是同行或者同列
  640. if(!(this.selectionStart.col==this.selectionEnd.col||this.selectionStart.row==this.selectionEnd.row)){
  641. this.$message.warning(this.$t('CustomAnalysisPage.only_allowed_select_msg'));
  642. return
  643. }
  644. // 判断选择的顺序如果是从后往前选择交换 start 和end
  645. if((this.selectionStart.col==this.selectionEnd.col&&this.selectionStart.row>this.selectionEnd.row)||(this.selectionStart.row==this.selectionEnd.row&&this.selectionStart.col>this.selectionEnd.col)){
  646. const temStart=JSON.parse(JSON.stringify(this.selectionStart))
  647. const temEnd=JSON.parse(JSON.stringify(this.selectionEnd))
  648. this.selectionEnd=temStart
  649. this.selectionStart=temEnd
  650. }
  651. const str=`${sobj.ExcelName}!$${this.columnHeader[this.selectionStart.col]}$${this.selectionStart.row+1}:$${this.columnHeader[this.selectionEnd.col]}$${this.selectionEnd.row+1}`
  652. this.$refs.balanceAddChart.tableSelect(this.selectionStart,this.selectionEnd,str)
  653. }
  654. this.selectionStart = null;
  655. this.startSelectTable=false
  656. this.removeTextSelection()
  657. },
  658. isSelected(row, col) {
  659. return this.selectedCells.some(cell => cell.row === row && cell.col === col);
  660. },
  661. removeTextSelection() {
  662. if (window.getSelection) {
  663. if (window.getSelection().empty) {
  664. // Chrome, Firefox, Opera
  665. window.getSelection().empty();
  666. } else if (window.getSelection().removeAllRanges) {
  667. // IE/Edge
  668. window.getSelection().removeAllRanges();
  669. }
  670. } else if (document.selection) { // for IE < 9
  671. document.selection.empty();
  672. }
  673. },
  674. // 点击添加sheet
  675. async handleAddSheet() {
  676. // 先自动保存一次
  677. const flag=await this.saveChildSheet()
  678. if(!flag) return
  679. this.sheetOpts.push({
  680. ExcelName: '',
  681. ExcelInfoId:0,
  682. isEdit: true,
  683. showDel: false
  684. })
  685. this.temSheetInputVal = ''
  686. // 自动切换到新增的sheet
  687. this.changeSheet(this.sheetOpts[this.sheetOpts.length-1])
  688. this.$nextTick(() => {
  689. this.$refs.sheetInput[0].focus()
  690. })
  691. },
  692. // 双击编辑sheet名称
  693. handleDbclickSheet(item) {
  694. if(this.disabled) return
  695. clearTimeout(dblclickInterval)//清除双击事件的定时器
  696. item.isEdit = true
  697. this.temSheetInputVal = item.ExcelName
  698. this.$nextTick(() => {
  699. this.$refs.sheetInput[0].focus()
  700. })
  701. },
  702. // 修改sheet名称
  703. handleModifySheetName() {
  704. console.log('修改名称');
  705. // 名称为空
  706. if (!this.temSheetInputVal) {
  707. this.$confirm('图表名称未填写', '提示', {
  708. confirmButtonText: '输入表名',
  709. cancelButtonText: '取消创建',
  710. type: 'warning'
  711. }).then(() => {
  712. this.$nextTick(() => {
  713. this.$refs.sheetInput[0].focus()
  714. })
  715. }).catch(() => {
  716. if(this.activeSheetId===0){//当是新增表格时
  717. this.sheetOpts = this.sheetOpts.filter(e => e.ExcelInfoId)
  718. // 自动切换sheet
  719. this.changeSheet(this.sheetOpts[this.sheetOpts.length-1])
  720. }else{// 当编辑子表名称时 重置掉好了
  721. this.sheetOpts.forEach(_e=>{
  722. _e.isEdit=false
  723. })
  724. }
  725. });
  726. return
  727. }
  728. // 如果activeSheetId=0 则是新增的子表
  729. if(this.activeSheetId===0){
  730. this.createNewChildSheet()
  731. return
  732. }
  733. // 修改sheet名称
  734. sheetInterface.balanceChildTableRename({
  735. ExcelName:this.temSheetInputVal,
  736. ExcelInfoId:this.activeSheetId
  737. }).then(res=>{
  738. if(res.Ret===200){
  739. this.sheetOpts.forEach(item => {
  740. if (item.ExcelInfoId===this.activeSheetId) {
  741. item.ExcelName = this.temSheetInputVal
  742. item.isEdit = false
  743. }
  744. })
  745. }
  746. })
  747. },
  748. // 右键显示删除sheet
  749. handleShowSheetDel(index) {
  750. if(this.disabled) return
  751. if (this.sheetOpts.length === 1) return
  752. this.sheetOpts[index].showDel = true
  753. // 切换到该子表
  754. this.changeSheet(this.sheetOpts[index])
  755. },
  756. // 初始化子表列表数据
  757. initSheetListData(data){
  758. console.log(data);
  759. this.sheetOpts=data.map(item=>{
  760. return{
  761. ...item,
  762. isEdit:false,
  763. showDel:false
  764. }
  765. })
  766. this.changeSheet(this.sheetOpts[0])
  767. },
  768. // 切换sheet
  769. changeSheet(item){
  770. this.activeSheetId=item.ExcelInfoId
  771. this.getSheetDetail()
  772. this.clearSelection()
  773. },
  774. // 点击切换子表
  775. async clickChangeSheet(item){
  776. if(this.isShowAddChart){
  777. this.$message.warning('添加图表时禁止切换')
  778. return
  779. }
  780. clearTimeout(dblclickInterval)//清除双击事件的定时器
  781. dblclickInterval=setTimeout(async () => {
  782. if(item.ExcelInfoId===this.activeSheetId) return
  783. //保存一次
  784. const flag=this.disabled?true:await this.saveChildSheet()
  785. if(!flag) return
  786. this.changeSheet(item)
  787. }, 150);
  788. },
  789. /* 获取表格详情 */
  790. async getSheetDetail(type) {
  791. // 如果是新增一个子表此时为0 直接创建一个空表
  792. if(this.activeSheetId===0) {
  793. this.initData(null);
  794. return
  795. }
  796. const res = await sheetInterface.sheetDetail({
  797. ExcelInfoId: Number(this.activeSheetId)
  798. })
  799. if(type==='refresh'){
  800. this.$parent.updating=false
  801. }
  802. if(res.Ret !== 200) return
  803. const { ExcelName,ExcelClassifyId,TableData,ModifyTime,Button } = res.Data;
  804. this.updateTime = this.$moment(ModifyTime).format('YYYY-MM-DD HH:mm:ss')
  805. this.initData(TableData);
  806. // 获取平衡表中的图表
  807. this.getChartList()
  808. type==='refresh' && this.$message.success(this.$t('OnlineExcelPage.table_data_update_msg') )
  809. },
  810. // 新增子表
  811. async createNewChildSheet(){
  812. // 判断是否重名
  813. const isDupName=this.sheetOpts.some(e=>e.ExcelName===this.temSheetInputVal)
  814. if(isDupName) {
  815. this.$confirm('此名称已被使用,请尝试其他名称', this.$t('Dialog.warn_tit'), {
  816. confirmButtonText: this.$t('Dialog.confirm_btn'),
  817. type: 'warning',
  818. showClose:false,
  819. center:true,
  820. showCancelButton:false
  821. }).then(()=>{
  822. this.$nextTick(() => {
  823. this.$refs.sheetInput[0].focus()
  824. })
  825. })
  826. return
  827. }
  828. const params={
  829. ExcelName: this.temSheetInputVal,
  830. ExcelType: 1,
  831. ExcelImage: '',
  832. ExcelClassifyId:0,//写死
  833. Source: 5,
  834. ParentId:Number(this.$route.query.id),
  835. TableData: {
  836. CellRelation:"[]",
  837. Data:[]
  838. }
  839. }
  840. const res=await sheetInterface.sheetAdd(params)
  841. if(res.Ret===200){
  842. this.changeSheet({ExcelInfoId:res.Data.ExcelInfoId})
  843. // 更新sheetOpts 内容
  844. this.sheetOpts.forEach(item=>{
  845. if(item.ExcelInfoId===0){
  846. item.ExcelInfoId=res.Data.ExcelInfoId
  847. item.ExcelName=this.temSheetInputVal
  848. item.isEdit=false
  849. }
  850. })
  851. }else{
  852. //创建子表失败 删除sheetOpts这个数据 并且切换到左边一个表
  853. const index=this.sheetOpts.findIndex(_e=>_e.ExcelInfoId===this.activeSheetId)
  854. this.changeSheet(this.sheetOpts[index-1])
  855. this.sheetOpts.splice(index,1)
  856. }
  857. },
  858. // 保存子表 type:manualSave 手动保存
  859. async saveChildSheet(type){
  860. console.log('执行保存表格操作');
  861. const item=this.sheetOpts.filter(e=>e.ExcelInfoId===this.activeSheetId)[0]
  862. // console.log(item);
  863. // console.log(this.sheetOpts,this.activeSheetId);
  864. if(!this.activeSheetId) return
  865. const params={
  866. ExcelInfoId:this.activeSheetId,
  867. ExcelName: item.ExcelName,
  868. ExcelType: 1,
  869. ExcelClassifyId: 0,
  870. ExcelImage:'',
  871. Source: 5,
  872. ParentId:Number(this.$route.query.id),
  873. TableData: this.getSaveParams()
  874. }
  875. const res = await sheetInterface.sheetEdit(params)
  876. if(res.Ret !==200) return false
  877. if(res.Data.Status==1){//有人在编辑 不允许编辑返回到列表
  878. this.$message.warning(res.Data.Msg)
  879. setTimeout(() => {
  880. this.$router.back()
  881. }, 1000);
  882. return false
  883. }
  884. // 更新保存时间
  885. this.$parent.updateTime=this.$moment().format('YYYY-MM-DD HH:mm:ss')
  886. type==='manualSave'&&this.$message.success(this.$t('MsgPrompt.saved_msg'))
  887. return true
  888. },
  889. //删除子表
  890. async delChildSheet(){
  891. await this.$confirm(this.$t('ETable.Msg.is_del_table_msg') , this.$t('Confirm.prompt') , {
  892. confirmButtonText: this.$t('Dialog.confirm_btn'),
  893. cancelButtonText: this.$t('Dialog.cancel_btn'),
  894. type: "warning",
  895. })
  896. const res=await sheetInterface.classifyDel({
  897. ExcelInfoId:this.activeSheetId
  898. })
  899. if(res.Ret!==200) return
  900. this.$message.success(res.Msg);
  901. const index=this.sheetOpts.findIndex(_e=>_e.ExcelInfoId===this.activeSheetId)
  902. if(index===0){
  903. this.changeSheet(this.sheetOpts[index+1])
  904. }else{
  905. this.changeSheet(this.sheetOpts[index-1])
  906. }
  907. this.sheetOpts.splice(index,1)
  908. },
  909. /* 输入时实时搜索 满足日期格式不搜索 有=视为输入公式不搜索 eta1.5.6弃用了*/
  910. async searchTarget(query, cb) {
  911. return cb([])
  912. //又要过滤掉2020-05-这样的奇葩其他格式 不让检索
  913. let dateOtherRegex = /^(?:(?:19|20)\d\d)([-])(0[1-9]|1[0-2])(-?)$/
  914. if (!query
  915. || checkDateFormat(query)
  916. || dateOtherRegex.test(query)
  917. || query.startsWith('=')
  918. ) return cb([])
  919. const { DataType, EdbInfoId } = this.selectCell;
  920. const res = DataType === 2
  921. ? await dataBaseInterface.targetDetail({ EdbInfoId })
  922. : await sheetInterface.searchTarget({
  923. KeyWord: query,
  924. CurrentIndex: 1,
  925. PageSize: 1000
  926. })
  927. if (res.Ret !== 200) return
  928. let arr = DataType === 2 ? [res.Data] : (res.Data.List || [])
  929. cb(arr);
  930. },
  931. /* 单击 */
  932. clickCell(e, cell) {
  933. if (this.disabled) return
  934. selectCellStyle(e);
  935. this.clearSelection()
  936. this.hasMergedCell = !!(cell && cell.merData)
  937. this.selectCell = cell;
  938. setFocus(e);
  939. //是插值单元格时寻找关联依赖的单元格 设置选框
  940. if ([4, 5, 7].includes(cell.DataType)) {
  941. const { key } = e.target.dataset;
  942. if (!this.insertRelationArr.find(_ => _.key === key)) return
  943. let { relation_date, relation_edb } = this.insertRelationArr.find(_ => _.key === key)
  944. relation_date.key && setRelationStyle(relation_date)
  945. relation_edb.key && setRelationStyle(relation_edb)
  946. }
  947. //选择指标弹窗打开时选择日期更新弹窗数据
  948. this.isSelectTargetValueDialog && this.$refs.selectTargetValueRef.changeRleationDate(this.selectCell)
  949. //计算指标弹窗打开时选择日期更新弹窗数据
  950. this.isInsertCalculate && this.$refs.calculateEdbDiaRef.changeRleationDate(this.selectCell)
  951. //日期计算弹窗打开选中日期框时且有选中item时更新选中值
  952. cell.DataType === 1 && this.isInsertCalculateDate && this.$refs.calculateDateDiaRef.selectIndex && this.$refs.calculateDateDiaRef.setSelectItemValue(this.selectCell)
  953. },
  954. /* 插入值 往左往上寻找同行同列是否有符合条件的一指标一日期 */
  955. async insertValue() {
  956. let params = this.findNearestCell();
  957. console.log(params)
  958. if (!params) {
  959. this.selectCell.DataType = 3;
  960. this.selectCell.DataTimeType = 0;
  961. this.selectCell.ShowValue = '';
  962. this.selectCell.Value = '';
  963. this.selectCell.DataTime = '';
  964. this.selectCell.EdbInfoId = 0;
  965. this.$message.warning(this.$t('OnlineExcelPage.no_here_val_msg'));
  966. return
  967. }
  968. const { EdbInfoId, Date, DataTimeType } = params
  969. const res = await sheetInterface.insertData({ EdbInfoId, Date })
  970. if (res.Ret !== 200) return
  971. res.Data ? this.$message.success(this.$t('OnlineExcelPage.insert_success_msg')) : this.$message.warning(this.$t('OnlineExcelPage.the_date_no_val_msg'))
  972. this.selectCell.DataType = 4;
  973. this.selectCell.ShowValue = res.Data;
  974. this.selectCell.Value = res.Data;
  975. this.selectCell.EdbInfoId = EdbInfoId;
  976. this.selectCell.DataTime = Date;
  977. this.setRelation(params)
  978. },
  979. // 建立插入单元格和依赖单元格关联关系
  980. setRelation(data, cellType = 4) {
  981. const { insert_cell } = data;
  982. let relation_obj = {
  983. type: cellType,
  984. key: insert_cell.key,
  985. relation_date: {
  986. type: 1,
  987. key: insert_cell.relation_date
  988. },
  989. relation_edb: {
  990. type: 2,
  991. key: insert_cell.relation_edb
  992. }
  993. }
  994. let haveIndex = this.insertRelationArr.findIndex(_ => _.key === insert_cell.key);
  995. if (haveIndex === -1) {
  996. this.insertRelationArr.push(relation_obj)
  997. } else {
  998. this.insertRelationArr.splice(haveIndex, 1, relation_obj)
  999. }
  1000. console.log(this.insertRelationArr)
  1001. },
  1002. /* 向左向上找出所有格子 找出离插入单元格最近的两个符合条件的单元格 看是否满足一指标一日期的条件
  1003. 不满足就无法插入值
  1004. */
  1005. findNearestCell() {
  1006. let { rindex, cindex, key } = this.rightClickCell;
  1007. let index_row = this.rowHeader.findIndex(_ => _ === rindex);
  1008. let index_col = this.columnHeader.findIndex(_ => _ === cindex);
  1009. //同行左侧所有格子
  1010. let row_cell_arr = this.config.data[index_row].filter((_, cell_index) => cell_index < index_col);
  1011. //同列上侧所有格子
  1012. let col_cell_arr = this.config.data.filter((row, row_index) => row_index < index_row).map(row => row[index_col]);
  1013. if (!row_cell_arr.length || !col_cell_arr.length) {
  1014. return null
  1015. }
  1016. //寻找最近的符合1 2类型的两个格子
  1017. let params = null;
  1018. for (let i = row_cell_arr.length - 1; i >= 0; i--) {
  1019. for (let j = col_cell_arr.length - 1; j >= 0; j--) {
  1020. if (!params) {
  1021. if ((row_cell_arr[i].DataType === 1 && col_cell_arr[j].DataType === 2)
  1022. || (row_cell_arr[i].DataType === 2 && col_cell_arr[j].DataType === 1)) {
  1023. params = {
  1024. DataTimeType: row_cell_arr[i].DataType === 1 ? row_cell_arr[i].DataTimeType : col_cell_arr[j].DataTimeType,
  1025. Date: row_cell_arr[i].DataType === 1 ? row_cell_arr[i].ShowValue : col_cell_arr[j].ShowValue,
  1026. EdbInfoId: row_cell_arr[i].DataType === 2 ? row_cell_arr[i].EdbInfoId : col_cell_arr[j].EdbInfoId,
  1027. insert_cell: {
  1028. key,
  1029. relation_date: row_cell_arr[i].DataType === 1 ? row_cell_arr[i].Uid : col_cell_arr[j].Uid,
  1030. relation_edb: row_cell_arr[i].DataType === 2 ? row_cell_arr[i].Uid : col_cell_arr[j].Uid,
  1031. },
  1032. }
  1033. break
  1034. }
  1035. }
  1036. }
  1037. }
  1038. return params;
  1039. },
  1040. /* 选择指标 单元格类型为2 已经是指标单元格了就重置单元格 否则就视为选择指标*/
  1041. selectTarget(e, cell) {
  1042. const { EdbName, EdbInfoId } = e;
  1043. //如果已经是指标单元格了再次点击就清空
  1044. if (cell.DataType === 2 && cell.EdbInfoId) {
  1045. this.clearCell()
  1046. } else {
  1047. cell.DataType = 2;
  1048. cell.DataTime = '';
  1049. cell.ShowValue = EdbName;
  1050. cell.Value = EdbName;
  1051. cell.EdbInfoId = EdbInfoId;
  1052. }
  1053. this.checkCellRelation(cell)
  1054. },
  1055. /* 输入框失焦 设置单元格类型 处理关联关系 */
  1056. async changeVal(e, cell) {
  1057. // 是日期格式 DataType为1
  1058. // 自定义内容 DataType 3
  1059. //有=号为输入公式 DataType 6
  1060. const { value } = e.target;
  1061. if (!value) { //无值重置单元格
  1062. cell.DataType = 3;
  1063. cell.ShowValue = value;
  1064. cell.Value = value;
  1065. cell.EdbInfoId = 0;
  1066. cell.DataTime = '';
  1067. cell.Extra = ''
  1068. } else {
  1069. //指标类型不做格式处理
  1070. if (cell.DataType === 2) return
  1071. console.log(checkDateFormat(value))
  1072. let dateFormat = checkDateFormat(value);
  1073. if (dateFormat) { //是日期格式
  1074. cell.DataType = 1;
  1075. cell.Extra = '';
  1076. cell.ShowValue = dateFormat;
  1077. cell.DataTime = dateFormat;
  1078. cell.Value = dateFormat;
  1079. } else if (value.startsWith('=')) { //公式单元格
  1080. cell.DataType = 6;
  1081. let calculateVal = await this.getValueByFormula(value);
  1082. if (!calculateVal) return
  1083. cell.ShowValue = calculateVal;
  1084. //处理公式关系
  1085. this.$set(cell, 'Extra', this.dealFormulaConstruction(value))
  1086. } else {//自定义值
  1087. cell.DataType = 3;
  1088. cell.ShowValue = value;
  1089. cell.Value = value;
  1090. cell.EdbInfoId = 0;
  1091. cell.DataTime = '';
  1092. cell.Extra = ''
  1093. }
  1094. }
  1095. /* 不是数字类型,清除原来设置的格式 */
  1096. if (!isNumberVal(value)) {
  1097. cell.ShowStyle = '';
  1098. cell.ShowStyle = '';
  1099. };
  1100. //判断是否是有插入值的依赖单元格 更新值或重置关系
  1101. this.checkCellRelation(cell)
  1102. this.commonInitCell('edit')
  1103. },
  1104. /* 当前单元格是否和插入值有关联 无就不管 */
  1105. async checkCellRelation(cell) {
  1106. if (!this.insertRelationArr.length) return
  1107. const key = cell.Uid;
  1108. //有关联的N组数组
  1109. let haveRelationArr = this.insertRelationArr.filter(_ => _.relation_date.key === key || _.relation_edb.key === key);
  1110. if (!haveRelationArr.length) return
  1111. //去处理每一组关联的情况
  1112. haveRelationArr.forEach(async (relation) => {
  1113. const { relation_date, relation_edb, type } = relation;
  1114. if ((relation_date.key === key && cell.DataType === 1) || (relation_edb.key === key && cell.DataType === 2)) { //单元格类型不变只变值仍有关联关系 更新值
  1115. // 根据关系关联数组去更新每种单元格类型的值
  1116. this.updateRelationCell(relation,cell)
  1117. } else {
  1118. // 清除插入值单元格式和关联关系
  1119. this.updateInsertCell(relation.key);
  1120. }
  1121. })
  1122. },
  1123. // 清除插入值单元格式和关联关系
  1124. updateInsertCell(key) {
  1125. this.config.data.forEach(row => {
  1126. row.forEach(cell => {
  1127. if (cell.Uid === key) {
  1128. cell.DataType = 3;
  1129. cell.EdbInfoId = 0;
  1130. cell.DataTime = '';
  1131. cell.ShowValue = '';
  1132. cell.Value = '';
  1133. cell.ShowStyle = ''
  1134. }
  1135. })
  1136. })
  1137. let relationIndex = this.insertRelationArr.findIndex(_ => _.key === key)
  1138. this.insertRelationArr.splice(relationIndex, 1)
  1139. },
  1140. // 替换关联关系
  1141. replaceCellRelation(originKey,replaceKey){
  1142. if(!this.insertRelationArr.length) return
  1143. this.insertRelationArr = JSON.parse(JSON.stringify(this.insertRelationArr).replaceAll(originKey,replaceKey))
  1144. },
  1145. /* 单元格更新时去更新有依赖关系单元格的值 目前只更4 5 7*/
  1146. updateRelationCell(relation,cell) {
  1147. const cellTypeMap = {
  1148. 4: this.refreshRelationInsertCell,
  1149. 5: this.refreshRelationByEdbInsertCell,
  1150. 7: this.refreshRelationByEdbCalculateCell,
  1151. }
  1152. cellTypeMap[relation.type]&& cellTypeMap[relation.type](relation,cell)
  1153. },
  1154. //关联类型4的单元格值刷新
  1155. async refreshRelationInsertCell({relation_date,relation_edb},cell) {
  1156. //刷新插入值结果
  1157. let params = null;
  1158. if(relation_date.key === key && cell.DataType === 1) { //修改的是依赖日期格
  1159. let { EdbInfoId } = findCellByKey(this.config.data,relation.key)
  1160. params = {
  1161. EdbInfoId,
  1162. Date: cell.ShowValue
  1163. }
  1164. } else if( relation_edb.key === key && cell.DataType === 2) { //修改的依赖指标格
  1165. let {ShowValue} = findCellByKey(this.config.data,relation_date.key)
  1166. params = {
  1167. EdbInfoId: cell.EdbInfoId,
  1168. Date: ShowValue
  1169. }
  1170. }
  1171. const res = await sheetInterface.insertData(params)
  1172. if(res.Ret !==200) return
  1173. //现在日期无值也不清除关系了
  1174. this.config.data.forEach(row => {
  1175. row.forEach(cell => {
  1176. if(cell.Uid === relation.key) {
  1177. cell.DataType = relation.type;
  1178. cell.ShowValue = res.Data;
  1179. cell.Value = res.Data;
  1180. cell.EdbInfoId = params.EdbInfoId;
  1181. cell.DataTime = params.Date;
  1182. }
  1183. })
  1184. })
  1185. },
  1186. //关联类型5的弹窗插值单元格值刷新
  1187. async refreshRelationByEdbInsertCell(relation,cell) {
  1188. let { EdbInfoId,Value } = findCellByKey(this.config.data,relation.key)
  1189. let params = {
  1190. EdbInfoId,
  1191. MoveForward: JSON.parse(Value).MoveForward,
  1192. DateChange: JSON.parse(Value).DateChange,
  1193. Date: cell.ShowValue
  1194. }
  1195. const res = await sheetInterface.getDateLatelyData(params)
  1196. if(res.Ret !== 200) return
  1197. let value = (res.Data.List&&res.Data.List.length)
  1198. ? res.Data.List.find(_ => _.DataTime===res.Data.Date)
  1199. ? res.Data.List.find(_ => _.DataTime===res.Data.Date).Value.toString()
  1200. : ''
  1201. : ''
  1202. this.config.data.forEach(row => {
  1203. row.forEach(cell => {
  1204. if(cell.Uid === relation.key) {
  1205. cell.ShowValue = value;
  1206. cell.ShowFormatValue = cell.ShowStyle ? transDecimalPlace(value,JSON.parse(cell.ShowStyle)) : '';
  1207. }
  1208. })
  1209. })
  1210. },
  1211. //关联类型7的指标计算单元格值刷新
  1212. async refreshRelationByEdbCalculateCell(relation,cell) {
  1213. console.log(relation,cell)
  1214. console.log(findCellByKey(this.config.data,relation.key))
  1215. let { Value } = findCellByKey(this.config.data,relation.key)
  1216. const {
  1217. Source,
  1218. Frequency,
  1219. Formula,
  1220. EdbInfoId,
  1221. MoveFrequency,
  1222. MoveType,
  1223. Calendar,
  1224. MoveForward,
  1225. DateChange
  1226. } = JSON.parse(Value);
  1227. let params = {
  1228. DataTime: cell.ShowValue,
  1229. Source,
  1230. Frequency,
  1231. Formula,
  1232. EdbInfoId,
  1233. MoveFrequency,
  1234. MoveType,
  1235. Calendar,
  1236. MoveForward,
  1237. DateChange,
  1238. }
  1239. const res = await sheetInterface.getMixedCalculateData(params)
  1240. if(res.Ret !== 200) return
  1241. let value = res.Data.ShowValue||"";
  1242. this.config.data.forEach(row => {
  1243. row.forEach(cell => {
  1244. if(cell.Uid === relation.key) {
  1245. cell.ShowValue = value;
  1246. cell.ShowFormatValue = cell.ShowStyle ? transDecimalPlace(value,JSON.parse(cell.ShowStyle)) : '';
  1247. }
  1248. })
  1249. })
  1250. },
  1251. /* 输入公式的计算值 */
  1252. async getValueByFormula(val) {
  1253. // 提取因数数组
  1254. let factors = extractFactorsFromFormula(val)
  1255. console.log(factors)
  1256. //根据因数找单元格
  1257. let isAllCell = factors.some(_ => findCellByFactorMixed(this.config.data, _) === null || isNaN(findCellByFactorMixed(this.config.data, _)))
  1258. if (isAllCell) {
  1259. this.$message.warning(this.$t('OnlineExcelPage.formula_val_error_msg'))
  1260. return '';
  1261. }
  1262. let TagMap = {};
  1263. factors.forEach(_ => {
  1264. if (!TagMap[_]) {
  1265. TagMap[_] = Number(findCellByFactorMixed(this.config.data, _))
  1266. }
  1267. });
  1268. const res = await sheetInterface.calculateCustomCellData({
  1269. CalculateFormula: val,
  1270. TagMap
  1271. })
  1272. if (res.Ret !== 200) return
  1273. return res.Data
  1274. },
  1275. /* 顶部公式改变 */
  1276. async updateValueByFormula(value) {
  1277. this.changeVal({ target: { value } }, this.selectCell)
  1278. },
  1279. /* 右键 */
  1280. rightClickHandle(e, cell) {
  1281. if (this.disabled) return
  1282. const { rindex, cindex, key,datacindex,datarindex } = e.target.dataset;
  1283. this.rightClickCell = {
  1284. rindex,
  1285. cindex,
  1286. datarindex,
  1287. datacindex,
  1288. key
  1289. }
  1290. this.selectCell = cell;
  1291. let pos;
  1292. if (rindex === '-1') { //列头处
  1293. pos = 'col'
  1294. } else if (cindex === '-1') { //行头
  1295. pos = 'row'
  1296. } else if( datarindex>=this.mergeSelectionStart.row && datarindex<=this.mergeSelectionEnd.row &&
  1297. datacindex>=this.mergeSelectionStart.column && datacindex<=this.mergeSelectionEnd.column &&
  1298. (this.mergeSelectionEnd.row-this.mergeSelectionStart.row>0||this.mergeSelectionEnd.column-this.mergeSelectionStart.column>0)){
  1299. // 选区
  1300. pos = 'selection'
  1301. }else {//单元格
  1302. pos = 'cell'
  1303. }
  1304. pos === 'cell' && this.clickCell(e, cell);
  1305. this.config.contextMenuOption = pos === 'cell'
  1306. ? getRightClickMenu(pos, (cell.DataType === 1 && [1, 2].includes(cell.DataTimeType)) || [5, 7, 8].includes(cell.DataType),this.isStaticTable,{cellMerged:this.hasMergedCell})
  1307. : getRightClickMenu(pos,false,false,{cellMerged:this.hasMergedCell})
  1308. this.$nextTick(() => {
  1309. let dom = $('#contextMenu-wrapper')[0];
  1310. if (e.clientY > window.innerHeight / 2) {
  1311. dom.style.left = e.clientX - 3 + 'px';
  1312. dom.style.top = e.clientY - dom.offsetHeight - 3 + 'px';
  1313. } else {
  1314. dom.style.left = e.clientX - 3 + 'px';
  1315. dom.style.top = e.clientY - 3 + 'px';
  1316. }
  1317. if(['col','row'].includes(pos)){
  1318. this.clearSelection()
  1319. selectMoreCellStyle(e);
  1320. }
  1321. })
  1322. },
  1323. /* */
  1324. hideContextMenu() {
  1325. const dom = $('#contextMenu-wrapper')[0];
  1326. dom.style.left = '-9999px';
  1327. dom.style.top = '-9999px';
  1328. },
  1329. /* 右键事件 */
  1330. async handleContext(key) {
  1331. //可右键编辑的单元格类型
  1332. let editHandlesMap = {
  1333. 1: this.insertDateOpen,
  1334. 5: this.selectTargetOpen,
  1335. 7: this.edbCalculateInsertOpen,
  1336. 8: this.insertDateCalculateOpen
  1337. }
  1338. const keyMap = {
  1339. 'del': this.delColOrRow,//删除
  1340. 'insert-col-left': this.insertCol,//向左插入列
  1341. 'insert-col-right': this.insertCol,//向右插入列
  1342. 'insert-row-up': this.insertRow,//向上插入行
  1343. 'insert-row-down': this.insertRow,//向下插入行
  1344. 'insert-value': this.insertValue,//插入值
  1345. 'choose-target': this.selectTargetOpen,//选择指标插入值
  1346. 'insert-date': this.insertDateOpen,//导入系统日期
  1347. 'insert-date-calculate': this.insertDateCalculateOpen,//日期计算弹窗
  1348. 'reset': this.clearCell, //清空
  1349. 'cell-edit': this.selectCell ? editHandlesMap[this.selectCell.DataType] : null,
  1350. 'cell-merge':this.mergeCellFun,
  1351. 'cell-unmerge':this.unmergeCellsFun
  1352. }
  1353. keyMap[key] && keyMap[key](key)
  1354. key !== 'insert-edb-calculate' && this.hideContextMenu()
  1355. },
  1356. /* 打开选择指标弹窗
  1357. 打开弹窗后仍可以在页面上点击 多存一个选择指标时的当前单元格信息 */
  1358. selectTargetOpen(type) {
  1359. this.insertTargetCell = this.selectCell;
  1360. resetDialogCellStyle();
  1361. setRelationStyle({ key: this.insertTargetCell.Uid }, 'td-choose-insert-target')
  1362. if (type === 'cell-edit') {
  1363. this.insertTargetValueInfo = {
  1364. ...this.insertTargetCell
  1365. }
  1366. } else {
  1367. this.insertTargetValueInfo = {}
  1368. }
  1369. this.isSelectTargetValueDialog = true;
  1370. this.resetDialogStatus('insertEdbVal')
  1371. },
  1372. /* 插入选择指标的值 */
  1373. insertSelectData({ edbId, value, relationDate, relationUid, str }) {
  1374. this.insertTargetCell.DataType = 5;
  1375. this.insertTargetCell.ShowValue = value;
  1376. this.insertTargetCell.Value = str;
  1377. this.insertTargetCell.EdbInfoId = edbId;
  1378. this.insertTargetCell.DataTime = relationDate;
  1379. this.insertTargetCell.ShowFormatValue = this.insertTargetCell.ShowStyle ? transDecimalPlace(value, JSON.parse(this.insertTargetCell.ShowStyle)) : '';
  1380. value ? this.$message.success(this.$t('ETable.Msg.insertion_success_msg')) : this.$message.warning(this.$t('ETable.Msg.date_no_data'))
  1381. //如果有关联表格日期就建立新的关联关系
  1382. if (relationDate && relationUid) {
  1383. let relation = {
  1384. insert_cell: {
  1385. key: this.insertTargetCell.Uid,
  1386. relation_date: relationUid,
  1387. relation_edb: '',
  1388. }
  1389. }
  1390. this.setRelation(relation, 5);
  1391. } else { //重新插值后之后原来有关联的清除关系
  1392. let haveIndex = this.insertRelationArr.findIndex(_ => _.key === this.insertTargetCell.Uid);
  1393. haveIndex !== -1 && this.insertRelationArr.splice(haveIndex, 1)
  1394. resetRelationStyle();
  1395. }
  1396. this.commonInitCell('edit')
  1397. },
  1398. /* 清除单元格内容 格式 关联关系 */
  1399. clearCell(c) {
  1400. const isCell = c && typeof(c)=='object' && c.Uid
  1401. const cell = isCell ? c: this.selectCell
  1402. if ([4, 5].includes(cell.DataType)) resetRelationStyle();
  1403. cell.DataType = 3;
  1404. cell.ShowValue = '';
  1405. cell.Value = '';
  1406. cell.DataTime = '';
  1407. cell.DataTimeType = 0;
  1408. cell.EdbInfoId = 0;
  1409. cell.ShowStyle = '';
  1410. cell.ShowFormatValue = '';
  1411. cell.Extra && (cell.Extra = '');
  1412. this.checkCellRelation(cell)
  1413. },
  1414. findDataByStartKey(key){
  1415. if(!key) return {data:{},row:-1,col:-1}
  1416. let mergeCellDom = this.$refs.tableRef.querySelector(`[data-key="${key}"]`)
  1417. let row = +mergeCellDom.dataset.datarindex
  1418. let col = +mergeCellDom.dataset.datacindex
  1419. return {data:this.config.data[row][col],row,col}
  1420. },
  1421. /* 删除行列 */
  1422. delColOrRow() {
  1423. let { rindex, cindex } = this.rightClickCell;
  1424. if (rindex === '-1') { //删除列
  1425. console.log('删除列', cindex)
  1426. if (this.columnHeader.length === 1) return this.$message.warning(this.$t('OnlineExcelPage.keep_one_column_msg'))
  1427. let index = this.columnHeader.findIndex(_ => _ === cindex);
  1428. // 处理删除列对合并单元格的影响
  1429. let startMainKey=''
  1430. this.config.data.map((row,rowInd) => {
  1431. let rowEle=row[index]
  1432. if(rowEle.merData){
  1433. let {data,row,col} = this.findDataByStartKey(rowEle.merData.mer.sKey)
  1434. let r = row
  1435. let c = col
  1436. let rs = data.merData.mer.rowspan
  1437. let cs = data.merData.mer.colspan
  1438. if(cs == 1) return //只有一列
  1439. if(rowEle.merData.type == 'merged'){
  1440. // 每个大单元格只处理一次
  1441. if(startMainKey != rowEle.merData.mer.sKey){
  1442. if(data.merData.mer.colspan==2 && data.merData.mer.rowspan==1){
  1443. //删除这一列之后,只有一个单元格了
  1444. data.merData=null
  1445. return
  1446. }
  1447. data.merData.mer.colspan--
  1448. startMainKey = rowEle.merData.mer.sKey
  1449. }
  1450. }else{
  1451. // 右一列的单元格作为新的左上角单元格
  1452. const newStartCell = this.config.data[r][c+1]
  1453. if(rowEle.merData.mer.colspan==2 && rowEle.merData.mer.rowspan==1){
  1454. //删除这一列之后,只有一个单元格了
  1455. newStartCell.merData=null
  1456. return
  1457. }
  1458. // 有值的单元格就是左上角的单元格
  1459. newStartCell.merData=rowEle.merData
  1460. newStartCell.merData.mer.sKey = newStartCell.Uid
  1461. newStartCell.merData.mer.colspan--
  1462. for (let i = r; i < (r+rs); i++) {
  1463. for (let j = c+1; j < (c+cs); j++) {
  1464. const element = this.config.data[i][j];
  1465. if(element.merData.type == 'merged'){
  1466. element.merData.mer.sKey = newStartCell.Uid
  1467. }
  1468. }
  1469. }
  1470. }
  1471. }
  1472. })
  1473. //删除时清除关系
  1474. if (this.insertRelationArr.length) {
  1475. let delCellIds = this.config.data.map(row => row[index].Uid);
  1476. this.clearRelationInsertCell(delCellIds);
  1477. }
  1478. this.config.data.forEach(row => {
  1479. row.splice(index, 1)
  1480. })
  1481. // 删除的是最后一列
  1482. if(!(index < this.config.data[0].length)){
  1483. resetStyle()
  1484. }
  1485. } else if (cindex === '-1') { //删除行
  1486. console.log('删除行', rindex)
  1487. if (this.rowHeader.length === 1) return this.$message.warning(this.$t('OnlineExcelPage.keep_one_row_msg'))
  1488. let index = this.rowHeader.findIndex(_ => _ === rindex)
  1489. // 处理删除行对合并单元格的影响
  1490. let startMainKey=''
  1491. this.config.data[index].map((rowEle,rowInd) => {
  1492. if(rowEle.merData){
  1493. let {data,row,col} = this.findDataByStartKey(rowEle.merData.mer.sKey)
  1494. let r = row
  1495. let c = col
  1496. let rs = data.merData.mer.rowspan
  1497. let cs = data.merData.mer.colspan
  1498. if(rs == 1) return //只有一行
  1499. if(rowEle.merData.type == 'merged'){
  1500. // 每个大单元格只处理一次
  1501. if(startMainKey != rowEle.merData.mer.sKey){
  1502. if(data.merData.mer.colspan==1 && data.merData.mer.rowspan==2){
  1503. //删除这一行之后,只有一个单元格了
  1504. data.merData=null
  1505. return
  1506. }
  1507. data.merData.mer.rowspan--
  1508. startMainKey = rowEle.merData.mer.sKey
  1509. }
  1510. }else{
  1511. // 下一行的单元格作为新的左上角单元格
  1512. const newStartCell = this.config.data[r+1][c]
  1513. if(rowEle.merData.mer.colspan==1 && rowEle.merData.mer.rowspan==2){
  1514. //删除这一行之后,只有一个单元格了
  1515. newStartCell.merData=null
  1516. return
  1517. }
  1518. newStartCell.merData=rowEle.merData
  1519. newStartCell.merData.mer.sKey = newStartCell.Uid
  1520. newStartCell.merData.mer.rowspan--
  1521. for (let i = r+1; i < (r+rs); i++) {
  1522. for (let j = c; j < (c+cs); j++) {
  1523. const element = this.config.data[i][j];
  1524. if(element.merData.type == 'merged'){
  1525. element.merData.mer.sKey = newStartCell.Uid
  1526. }
  1527. }
  1528. }
  1529. }
  1530. }
  1531. })
  1532. if (this.insertRelationArr.length) {
  1533. //删除时清除关系
  1534. let delCellIds = this.config.data[index].map(cell => cell.Uid);
  1535. this.clearRelationInsertCell(delCellIds);
  1536. }
  1537. this.config.data.splice(index, 1)
  1538. // 删除的是最后一行
  1539. if(!(index < this.config.data.length)){
  1540. resetStyle()
  1541. }
  1542. }
  1543. },
  1544. /* 删除时清除关联关系 和删除单元格有关联的插入值单元格和 */
  1545. clearRelationInsertCell(delCellIds) {
  1546. //清除关联插入值得单元格
  1547. let haveRelationArr = this.insertRelationArr.filter(_ => delCellIds.includes(_.relation_date.key) || delCellIds.includes(_.relation_edb.key));
  1548. // console.log(haveRelationArr)
  1549. haveRelationArr.forEach(relation => {
  1550. !delCellIds.includes(relation) && this.updateInsertCell(relation.key);
  1551. })
  1552. this.insertRelationArr = this.insertRelationArr.filter(_ => !delCellIds.includes(_.key) && !delCellIds.includes(_.relation_date.key) && !delCellIds.includes(_.relation_edb.key))
  1553. },
  1554. /* 插入列 */
  1555. insertCol(key) {
  1556. let { cindex } = this.rightClickCell;
  1557. let index = this.columnHeader.findIndex(_ => _ === cindex);
  1558. let checkIndex = key==='insert-col-left'?index-1:index+1
  1559. let startMainKey=''
  1560. this.config.data.forEach((row, rindex) => {
  1561. let isEnlargeCell = !!(row[index].merData && row[checkIndex] && row[checkIndex].merData)
  1562. if(isEnlargeCell && startMainKey != row[index].merData.mer.sKey){
  1563. const data = row[index].merData.type == 'merge'?row[index]:this.findDataByStartKey(row[index].merData.mer.sKey).data
  1564. data.merData.mer.colspan++
  1565. startMainKey = row[index].merData.mer.sKey
  1566. }
  1567. row.splice(key === 'insert-col-left' ? index : index + 1, 0, {
  1568. ShowValue: "",
  1569. Value: "",
  1570. DataType: 3,
  1571. DataTime: "",
  1572. EdbInfoId: 0,
  1573. Uid: md5.hex_md5(`${new Date().getTime()}${rindex}`),
  1574. merData:isEnlargeCell?{
  1575. type:'merged',
  1576. mer:{
  1577. sKey:row[index].merData.mer.sKey,//左上角第一个单元格的Uid
  1578. }
  1579. }:null
  1580. })
  1581. })
  1582. },
  1583. /* 插入行 */
  1584. insertRow(key) {
  1585. let { rindex } = this.rightClickCell;
  1586. let index = this.rowHeader.findIndex(_ => _ === rindex)
  1587. let checkIndex = key==='insert-row-up'?index-1:index+1
  1588. let startMainKey=''
  1589. let row = new Array(this.columnHeader.length).fill("").map((_,cindex) => {
  1590. let isEnlargeCell = !!(this.config.data[index][cindex].merData && (this.config.data[checkIndex]&&this.config.data[checkIndex][cindex]) && this.config.data[checkIndex][cindex].merData)
  1591. if(isEnlargeCell && startMainKey != this.config.data[index][cindex].merData.mer.sKey){
  1592. const data = this.config.data[index][cindex].merData.type == 'merge'?
  1593. this.config.data[index][cindex]:
  1594. this.findDataByStartKey(this.config.data[index][cindex].merData.mer.sKey).data
  1595. data.merData.mer.rowspan++
  1596. startMainKey = this.config.data[index][cindex].merData.mer.sKey
  1597. }
  1598. return {
  1599. ShowValue: "",
  1600. Value: "",
  1601. DataType: 3,
  1602. DataTime: "",
  1603. EdbInfoId: 0,
  1604. Uid: md5.hex_md5(`${new Date().getTime()}${cindex}`),
  1605. merData:isEnlargeCell?{
  1606. type:'merged',
  1607. mer:{
  1608. sKey:this.config.data[index][cindex].merData.mer.sKey,//左上角第一个单元格的Uid
  1609. }
  1610. }:null
  1611. }
  1612. });
  1613. this.config.data.splice(key === 'insert-row-up' ? index : index + 1, 0, row)
  1614. },
  1615. /* 单元格类型5 浮到上面展示指标信息浮窗 */
  1616. async getRelationEdbInfo({ EdbInfoId, DataType }) {
  1617. if (![5, 7].includes(DataType) || this.disabled) return
  1618. const res = await dataBaseInterface.targetDetail({ EdbInfoId })
  1619. if (res.Ret !== 200) return
  1620. this.cellrelationEdbInfo = res.Data;
  1621. },
  1622. /* 导入系统/指标日期弹窗 */
  1623. insertDateOpen(type) {
  1624. this.insertTargetCell = this.selectCell;
  1625. resetDialogCellStyle();
  1626. if (type === 'cell-edit') { //编辑日期
  1627. this.insertDateInfo = {
  1628. ...this.insertTargetCell
  1629. }
  1630. } else {
  1631. this.insertDateInfo = {
  1632. // key:type
  1633. }
  1634. }
  1635. this.isInsertDateDialog = true;
  1636. this.resetDialogStatus();
  1637. },
  1638. /* 弹窗都是无遮罩的 弹一个就重置其他的 */
  1639. resetDialogStatus(type = 'init') {
  1640. if (type !== 'insertEdbVal') {
  1641. this.$refs.selectTargetValueRef && this.$refs.selectTargetValueRef.initData();
  1642. this.isSelectTargetValueDialog = false;
  1643. }
  1644. if (type !== 'insertEdbCalculateVal') {
  1645. this.$refs.calculateEdbDiaRef && this.$refs.calculateEdbDiaRef.initData();
  1646. this.isInsertCalculate = false;
  1647. }
  1648. if (type !== 'insertDateCalculateVal') {
  1649. this.$refs.calculateDateDiaRef && this.$refs.calculateDateDiaRef.initData();
  1650. this.isInsertCalculateDate = false;
  1651. }
  1652. if (type !== 'balanceAddChart') {
  1653. this.$refs.balanceAddChart && this.$refs.balanceAddChart.initData();
  1654. this.isShowAddChart = false;
  1655. }
  1656. },
  1657. /* 插入系统/指标日期 */
  1658. insertDatehandle({ insertValue, dataTimeType, str }) {
  1659. this.insertTargetCell.DataType = 1;
  1660. this.insertTargetCell.DataTimeType = dataTimeType;
  1661. this.insertTargetCell.ShowValue = insertValue;
  1662. this.insertTargetCell.Value = str;
  1663. this.insertTargetCell.EdbInfoId = 0;
  1664. this.insertTargetCell.DataTime = insertValue;
  1665. this.commonInitCell('edit')
  1666. },
  1667. /* 指标计算弹窗 */
  1668. edbCalculateInsertOpen(item) {
  1669. this.insertTargetCell = this.selectCell;
  1670. resetDialogCellStyle();
  1671. setRelationStyle({ key: this.insertTargetCell.Uid }, 'td-choose-insert-target');
  1672. if (item === 'cell-edit') { //编辑
  1673. const { Value } = this.insertTargetCell;
  1674. let menuInfo = this.config.contextMenuOption
  1675. .find(_ => _.key === 'insert-edb-calculate').children
  1676. .find(menu => menu.source === JSON.parse(Value).Source);
  1677. this.insertCalculateInfo = {
  1678. ...menuInfo,
  1679. ...this.insertTargetCell
  1680. }
  1681. } else {
  1682. this.insertCalculateInfo = {
  1683. ...item
  1684. }
  1685. }
  1686. this.isInsertCalculate = true;
  1687. this.resetDialogStatus('insertEdbCalculateVal')
  1688. },
  1689. /* 导入指标计算值 */
  1690. insertCalculateData(item) {
  1691. // console.log(item)
  1692. const { InsertValue, EdbInfoId, Str, relationDate, relationUid } = item;
  1693. this.insertTargetCell.DataType = 7;
  1694. this.insertTargetCell.ShowValue = InsertValue;
  1695. this.insertTargetCell.Value = Str;
  1696. this.insertTargetCell.EdbInfoId = EdbInfoId;
  1697. this.insertTargetCell.DataTime = relationDate;
  1698. this.insertTargetCell.ShowFormatValue = this.insertTargetCell.ShowStyle ? transDecimalPlace(InsertValue, JSON.parse(this.insertTargetCell.ShowStyle)) : '';
  1699. InsertValue ? this.$message.success(this.$t('ETable.Msg.insertion_success_msg')) : this.$message.warning(this.$t('ETable.Msg.date_no_data'))
  1700. //如果有关联表格日期就建立新的关联关系
  1701. if (relationDate && relationUid) {
  1702. let relation = {
  1703. insert_cell: {
  1704. key: this.insertTargetCell.Uid,
  1705. relation_date: relationUid,
  1706. relation_edb: '',
  1707. }
  1708. }
  1709. this.setRelation(relation, 7);
  1710. } else { //重新插值后之后原来有关联的清除关系
  1711. let haveIndex = this.insertRelationArr.findIndex(_ => _.key === this.insertTargetCell.Uid);
  1712. haveIndex !== -1 && this.insertRelationArr.splice(haveIndex, 1)
  1713. resetRelationStyle();
  1714. }
  1715. this.commonInitCell('edit')
  1716. },
  1717. /* 日期计算弹窗 */
  1718. insertDateCalculateOpen(type) {
  1719. this.insertTargetCell = this.selectCell;
  1720. resetDialogCellStyle()
  1721. setRelationStyle({ key: this.insertTargetCell.Uid }, 'td-choose-insert-target')
  1722. if (type === 'cell-edit') { //编辑
  1723. this.insertCalculateDateInfo = {
  1724. ...this.insertTargetCell
  1725. }
  1726. } else {
  1727. this.insertCalculateDateInfo = {}
  1728. }
  1729. this.isInsertCalculateDate = true;
  1730. this.resetDialogStatus('insertDateCalculateVal');
  1731. },
  1732. /* 插入日期计算值 */
  1733. insertCalculateDateValue(data) {
  1734. const { insertValue, str } = data;
  1735. this.insertTargetCell.DataType = 8;
  1736. this.insertTargetCell.ShowValue = insertValue;
  1737. this.insertTargetCell.Value = str;
  1738. this.insertTargetCell.EdbInfoId = 0;
  1739. this.insertTargetCell.DataTime = '';
  1740. this.insertTargetCell.ShowFormatValue = this.insertTargetCell.ShowStyle ? transDecimalPlace(insertValue, JSON.parse(this.insertTargetCell.ShowStyle)) : '';
  1741. this.$message.success(this.$t('ETable.Msg.insertion_success_msg'))
  1742. this.commonInitCell('edit')
  1743. },
  1744. /* 初始化8行5列 */
  1745. initData(initData = null) {
  1746. console.log('initData');
  1747. this.hasInit = false
  1748. if (initData&&initData.Data.length>0) {
  1749. const { CellRelation, Data } = initData;
  1750. this.config.data = Data;
  1751. this.insertRelationArr = JSON.parse(CellRelation);
  1752. } else {
  1753. this.config.data = new Array(8).fill("").map((_, _rindex) => {
  1754. return new Array(5).fill("").map((cell, _cindex) => ({
  1755. ShowValue: "",
  1756. ShowStyle: '',
  1757. ShowFormatValue: '',
  1758. Value: "",
  1759. DataType: 3,
  1760. DataTimeType: 0,
  1761. DataTime: "",
  1762. EdbInfoId: 0,
  1763. Uid: md5.hex_md5(`${new Date().getTime()}${_rindex}${_cindex}`)
  1764. }));
  1765. });
  1766. }
  1767. this.$nextTick(() => {
  1768. this.hasInit = true
  1769. if(this.activeSheetId){
  1770. this.getExcelRule()
  1771. }
  1772. })
  1773. },
  1774. /* 处理因数结构 =a1+b1 => [{ Tag: a,Row:1,Key:'' }] */
  1775. dealFormulaConstruction(val) {
  1776. // 提取因数数组
  1777. let factors = extractFactorsFromFormula(val)
  1778. let arr = factors.map(str => ({
  1779. Tag: splitString(toUpperCase(str))[0],
  1780. Row: splitString(toUpperCase(str))[1],
  1781. Key: findCellKeyByFactor(str)
  1782. }))
  1783. return JSON.stringify(arr)
  1784. },
  1785. /* 要支持复制粘贴把公式也带过去 公式单元格类型为6 其余就正常复制文本 */
  1786. copyCellHandle(e, cell) {
  1787. this.copyCellItem = cell;
  1788. // 阻止默认的复制操作
  1789. e.preventDefault();
  1790. },
  1791. /* 要支持复制粘贴把公式也带过去 公式单元格类型为6 其余就正常复制文本 */
  1792. pasteCellHandle(e, cell) {
  1793. if (this.copyCellItem.DataType === 6) {
  1794. cell.DataType = this.copyCellItem.DataType;
  1795. cell.ShowValue = this.copyCellItem.ShowValue;
  1796. cell.Value = this.copyCellItem.Value;
  1797. cell.DataTime = this.copyCellItem.DataTime;
  1798. cell.EdbInfoId = this.copyCellItem.EdbInfoId;
  1799. cell.ShowStyle = this.copyCellItem.ShowStyle;
  1800. cell.ShowFormatValue = this.copyCellItem.ShowFormatValue;
  1801. cell.Extra = this.copyCellItem.Extra;
  1802. } else {
  1803. cell.DataType = 3;
  1804. cell.ShowValue = this.copyCellItem.ShowValue;
  1805. cell.Value = this.copyCellItem.ShowValue;
  1806. cell.ShowStyle = this.copyCellItem.ShowStyle;
  1807. cell.ShowFormatValue = this.copyCellItem.ShowFormatValue;
  1808. cell.DataTime = '';
  1809. cell.EdbInfoId = 0;
  1810. }
  1811. // 阻止默认的粘贴操作
  1812. e.preventDefault();
  1813. },
  1814. /* 单元格enter失焦 */
  1815. keyEnterHandle(e, cell) {
  1816. if (e.keyCode === 13) {
  1817. //非得搞个要回车失焦
  1818. e.target.nodeName && e.target.blur();
  1819. this.$refs[`inputRef${e.target.dataset.key}`] && this.$refs[`inputRef${e.target.dataset.key}`][0].close()
  1820. }
  1821. },
  1822. /* 双击切换状态 插值单元格不允许切换 可切换类型1,2,3,6*/
  1823. dblClickCellHandle(e, cell) {
  1824. if (this.disabled || ![1, 2, 3, 6].includes(cell.DataType) || [1, 2].includes(cell.DataTimeType)) return
  1825. this.$set(cell, 'CanEdit', true)
  1826. console.log(cell)
  1827. this.$nextTick(() => {
  1828. if (e.target.childNodes[0].childNodes[0].childNodes[1].nodeName === 'INPUT') e.target.childNodes[0].childNodes[0].childNodes[1].focus();
  1829. })
  1830. },
  1831. /* 处理保存的参数 */
  1832. getSaveParams() {
  1833. const { data } = this.config;
  1834. let params = {
  1835. CellRelation: JSON.stringify(this.insertRelationArr),
  1836. Data: data
  1837. }
  1838. return params
  1839. },
  1840. /* tab禁掉 */
  1841. handlekeyDownKeys(e) {
  1842. if (e.keyCode === 9) {
  1843. e.preventDefault();
  1844. }
  1845. },
  1846. // ==================================================合并单元格
  1847. // 选区开始
  1848. selectCellHandle(e) {
  1849. // 不是左键的mousedown事件
  1850. if(e.button!==0) return
  1851. if(this.disabled) return
  1852. if(this.isShowAddChart) return // 添加图表弹窗出现
  1853. this.isSelectionStart=true
  1854. let startTd;
  1855. if(e.target.nodeName==='TD'){
  1856. startTd = e.target
  1857. }else if(e.target.parentNode.nodeName==='TD'){
  1858. startTd = e.target.parentNode
  1859. }else if(e.target.parentNode.parentNode.nodeName==='TD'){
  1860. startTd = e.target.parentNode.parentNode
  1861. }else if(e.target.parentNode.parentNode.parentNode.nodeName==='TD'){
  1862. startTd = e.target.parentNode.parentNode.parentNode
  1863. }
  1864. if(!startTd) return
  1865. this.startCell={
  1866. row:+startTd.dataset.datarindex,
  1867. column:+startTd.dataset.datacindex
  1868. }
  1869. document.addEventListener('mousemove',this.selectZoneHandle)
  1870. document.addEventListener('mouseup',this.selectCellEndHandle)
  1871. },
  1872. // 选取
  1873. selectZoneHandle(e) {
  1874. if(!this.isSelectionStart) return
  1875. if(this.disabled) return
  1876. const selection = window.getSelection();
  1877. if (selection.rangeCount>0) {
  1878. // 清除选中的文本范围
  1879. selection.removeAllRanges();
  1880. }
  1881. let tableRect=this.$refs.tableRef.getBoundingClientRect()
  1882. const mouseX = e.pageX;
  1883. const mouseY = e.pageY;
  1884. let endTd;
  1885. if(mouseX >= tableRect.left && mouseX <= tableRect.right &&
  1886. mouseY >= tableRect.top && mouseY <= tableRect.bottom){
  1887. // 表格内
  1888. if(e.target.nodeName==='TD'){
  1889. endTd = e.target
  1890. }else if(e.target.parentNode.nodeName==='TD'){
  1891. endTd = e.target.parentNode
  1892. }else if(e.target.parentNode.parentNode.nodeName==='TD'){
  1893. endTd = e.target.parentNode.parentNode
  1894. }else if(e.target.parentNode.parentNode.parentNode.nodeName==='TD'){
  1895. endTd = e.target.parentNode.parentNode.parentNode
  1896. }
  1897. if(!endTd) return
  1898. this.endCell={
  1899. e:endTd,
  1900. row:+endTd.dataset.datarindex,
  1901. column:+endTd.dataset.datacindex
  1902. }
  1903. }
  1904. },
  1905. // 选区结束
  1906. selectCellEndHandle(){
  1907. this.isSelectionStart=false
  1908. // click事件走在mouseup事件前面,延迟下
  1909. setTimeout(()=>{
  1910. if((this.mergeSelectionStart.row || this.mergeSelectionStart.row==0)
  1911. && (this.mergeSelectionEnd.row || this.mergeSelectionEnd.row==0)
  1912. && (this.mergeSelectionStart.column || this.mergeSelectionStart.column==0)
  1913. && (this.mergeSelectionEnd.column || this.mergeSelectionEnd.column==0)){
  1914. this.mergeSelectedCells=[]
  1915. resetStyle()
  1916. this.selectCell=null
  1917. // 选区
  1918. for (let i = this.mergeSelectionStart.row; i < this.mergeSelectionEnd.row+1; i++) {
  1919. for (let j = this.mergeSelectionStart.column; j < this.mergeSelectionEnd.column+1; j++) {
  1920. this.mergeSelectedCells.push(this.config.data[i][j])
  1921. }
  1922. }
  1923. }else{
  1924. this.mergeSelectedCells=[]
  1925. }
  1926. },1)
  1927. document.removeEventListener('mousemove',this.selectZoneHandle)
  1928. document.removeEventListener('mouseup',this.selectCellEndHandle)
  1929. },
  1930. findCellDom(key){
  1931. if(!key) return null
  1932. if(key !== this.cacheKey){
  1933. // 重新找
  1934. this.cacheCellDom = this.$refs.tableRef.querySelector(`[data-key="${key}"]`)
  1935. this.cacheKey=key
  1936. }
  1937. return this.cacheCellDom
  1938. },
  1939. // 确定选区范围和设置选区样式
  1940. setSelectionStyle(){
  1941. if(!this.isSelectionStart) return
  1942. // 开始的单元格没有
  1943. if(!( (this.startCell.row || this.startCell.row==0) &&
  1944. (this.startCell.column || this.startCell.column==0))) return
  1945. // 结束的单元格没有
  1946. if(!( (this.endCell.row || this.endCell.row==0) &&
  1947. (this.endCell.column || this.endCell.column==0) && this.endCell.e)) return
  1948. // 递归确定选区范围
  1949. const findZone = ({sR,eR,sC,eC})=>{
  1950. this.hasValueCellItem.cellNumber=0
  1951. for (let i = sR; i < eR+1; i++) {
  1952. for (let j = sC; j < eC+1; j++) {
  1953. const element = this.config.data[i][j]
  1954. if(element.Value){
  1955. this.hasValueCellItem.cellNumber++
  1956. this.hasValueCellItem.row=i
  1957. this.hasValueCellItem.column=j
  1958. }
  1959. if(element.merData && element.merData.type==='merge'){
  1960. if(i+element.merData.mer.rowspan-1 > eR){
  1961. // 该单元格的行有合并 重新规定选取范围
  1962. return findZone({sR,eR:i+element.merData.mer.rowspan-1,sC,eC})
  1963. }
  1964. if(j+element.merData.mer.colspan-1 > eC){
  1965. // 该单元格的列有合并 重新规定选取范围
  1966. return findZone({sR,eR,sC,eC:j+element.merData.mer.colspan-1})
  1967. }
  1968. this.hasMergedCell=true
  1969. }
  1970. if(element.merData && element.merData.type==='merged' ){
  1971. let item = this.findCellDom(element.merData.mer.sKey)
  1972. let row = +item.dataset.datarindex
  1973. let col = +item.dataset.datacindex
  1974. if(row < sR){
  1975. // 该单元格的行有被合并 重新规定选取范围
  1976. return findZone({sR:row,eR,sC,eC})
  1977. }
  1978. if(col < sC){
  1979. // 该单元格的行有被合并 重新规定选取范围
  1980. return findZone({sR,eR,sC:col,eC})
  1981. }
  1982. this.hasMergedCell=true
  1983. }
  1984. }
  1985. }
  1986. // 防止选中的区域不是整个的单元格(合并后的),后面确定selectionRef 区域大小有问题
  1987. if(this.config.data[eR][eC].merData && this.config.data[eR][eC].merData.type==='merged'){
  1988. let item = this.findCellDom(this.config.data[eR][eC].merData.mer.sKey)
  1989. let row = +item.dataset.datarindex
  1990. let col = +item.dataset.datacindex
  1991. eR=row
  1992. eC=col
  1993. this.hasMergedCell=true
  1994. }
  1995. return {startR:sR,
  1996. endR:eR,
  1997. startC:sC,
  1998. endC:eC}
  1999. }
  2000. // 看是否是从下往上、从右往左选的
  2001. let rowReverse = this.startCell.row > this.endCell.row
  2002. let colReverse = this.startCell.column > this.endCell.column
  2003. let postion={
  2004. sR:rowReverse?this.endCell.row:this.startCell.row,
  2005. eR:rowReverse?this.startCell.row:this.endCell.row,
  2006. sC:colReverse?this.endCell.column:this.startCell.column,
  2007. eC:colReverse?this.startCell.column:this.endCell.column
  2008. }
  2009. this.hasMergedCell=false
  2010. const zone = findZone(postion)
  2011. let start = this.config.data[zone.startR][zone.startC]
  2012. let end = this.config.data[zone.endR][zone.endC]
  2013. this.mergeSelectionStart.row = zone.startR
  2014. this.mergeSelectionStart.column = zone.startC
  2015. this.mergeSelectionStart.rowSpan = start.merData?start.merData.mer.rowspan:1
  2016. this.mergeSelectionStart.colSpan = start.merData?start.merData.mer.colspan:1
  2017. this.mergeSelectionEnd.row = zone.endR
  2018. this.mergeSelectionEnd.column = zone.endC
  2019. this.mergeSelectionEnd.rowSpan = end.merData?end.merData.mer.rowspan:1
  2020. this.mergeSelectionEnd.colSpan = end.merData?end.merData.mer.colspan:1
  2021. let tableRect = this.$refs.tableRef.getBoundingClientRect()
  2022. let startTd = this.$refs.tableRef.querySelector(`[data-key="${start.Uid}"]`)
  2023. let endTd = this.$refs.tableRef.querySelector(`[data-key="${end.Uid}"]`)
  2024. if(!(startTd && endTd)) return
  2025. let startRect = startTd.getBoundingClientRect()
  2026. let endRect = endTd.getBoundingClientRect()
  2027. this.$refs.selectionRef.style.left = startRect.left-tableRect.left+'px'
  2028. this.$refs.selectionRef.style.top = startRect.top-tableRect.top+'px'
  2029. let width = Math.abs(endRect.right - startRect.right) + startRect.width
  2030. let height = Math.abs(endRect.bottom - startRect.bottom) + startRect.height
  2031. this.$refs.selectionRef.style.width = width+'px'
  2032. this.$refs.selectionRef.style.height = height + 'px'
  2033. this.$refs.selectionRef.style.visibility='visible'
  2034. },
  2035. clearSelection(){
  2036. if(this.$refs.selectionRef){
  2037. this.$refs.selectionRef.style.width = 0
  2038. this.$refs.selectionRef.style.height = 0
  2039. this.$refs.selectionRef.style.visibility='hidden'
  2040. }
  2041. this.mergeSelectionStart={
  2042. row:null,
  2043. rowSpan:0,
  2044. column:null,
  2045. colSpan:0
  2046. }
  2047. this.mergeSelectionEnd={
  2048. row:null,
  2049. rowSpan:0,
  2050. column:null,
  2051. colSpan:0
  2052. }
  2053. this.mergeSelectedCells=[]
  2054. },
  2055. mergeCellFun(){
  2056. // 无选区
  2057. if(!((this.mergeSelectionStart.row || this.mergeSelectionStart.row==0)
  2058. && (this.mergeSelectionEnd.row || this.mergeSelectionEnd.row==0)
  2059. && (this.mergeSelectionStart.column || this.mergeSelectionStart.column==0)
  2060. && (this.mergeSelectionEnd.column || this.mergeSelectionEnd.column==0))) return
  2061. if(this.hasValueCellItem.cellNumber>1 || this.hasValueCellItem.cellNumber<0){
  2062. return this.$message.warning(this.$t('ETable.Msg.merge_cell_fail_msg'))
  2063. }
  2064. const firstCell = this.config.data[this.mergeSelectionStart.row][this.mergeSelectionStart.column]
  2065. if(this.hasValueCellItem.cellNumber!=0
  2066. && (this.hasValueCellItem.row!=this.mergeSelectionStart.row
  2067. || this.hasValueCellItem.column!=this.mergeSelectionStart.column)){
  2068. const reserveCell=this.config.data[this.hasValueCellItem.row][this.hasValueCellItem.column]
  2069. // 将原本有值的单元格 移给左上角第一个单元格
  2070. firstCell.ShowValue=reserveCell.ShowValue
  2071. firstCell.ShowStyle=reserveCell.ShowStyle
  2072. firstCell.ShowFormatValue=reserveCell.ShowFormatValue
  2073. firstCell.Value=reserveCell.Value
  2074. firstCell.DataType=reserveCell.DataType
  2075. firstCell.DataTimeType=reserveCell.DataTimeType
  2076. firstCell.DataTime=reserveCell.DataTime
  2077. firstCell.EdbInfoId=reserveCell.EdbInfoId
  2078. firstCell.CanEdit && (firstCell.CanEdit=reserveCell.CanEdit)
  2079. firstCell.Extra && (firstCell.Extra=reserveCell.Extra)
  2080. // 处理合并后的依赖关系 就是替换
  2081. this.replaceCellRelation(reserveCell.Uid,firstCell.Uid)
  2082. // 清空
  2083. this.clearCell(reserveCell)
  2084. }
  2085. this.$set(firstCell,'merData',{
  2086. type:'merge',
  2087. mer:{
  2088. sKey:firstCell.Uid,//保留的单元格的Uid
  2089. rowspan: this.mergeSelectionEnd.row - this.mergeSelectionStart.row+1,
  2090. colspan: this.mergeSelectionEnd.column - this.mergeSelectionStart.column+1,
  2091. }
  2092. })
  2093. for (let i = this.mergeSelectionStart.row; i < this.mergeSelectionEnd.row+1; i++) {
  2094. for (let j = this.mergeSelectionStart.column; j < this.mergeSelectionEnd.column+1; j++) {
  2095. const element = this.config.data[i][j]
  2096. if(i == this.mergeSelectionStart.row && j == this.mergeSelectionStart.column){
  2097. continue
  2098. }
  2099. element.merData={
  2100. type:'merged',
  2101. mer:{
  2102. sKey:firstCell.Uid,//左上角第一个单元格的Uid
  2103. }
  2104. }
  2105. }
  2106. }
  2107. let startCell = this.config.data[this.mergeSelectionStart.row][this.mergeSelectionStart.column]
  2108. let target = this.$refs.tableRef.querySelector(`[data-key="${startCell && startCell.Uid}"]`)
  2109. // 触发单元格的点击事件
  2110. target.click()
  2111. },
  2112. unmergeCellsFun(){
  2113. if((this.mergeSelectionStart.row || this.mergeSelectionStart.row==0)
  2114. && (this.mergeSelectionEnd.row || this.mergeSelectionEnd.row==0)
  2115. && (this.mergeSelectionStart.column || this.mergeSelectionStart.column==0)
  2116. && (this.mergeSelectionEnd.column || this.mergeSelectionEnd.column==0)){
  2117. // 选区
  2118. for (let i = this.mergeSelectionStart.row; i < this.mergeSelectionEnd.row+1; i++) {
  2119. for (let j = this.mergeSelectionStart.column; j < this.mergeSelectionEnd.column+1; j++) {
  2120. this.unmergeCellFun(this.config.data[i][j])
  2121. }
  2122. }
  2123. }else{
  2124. // 单个单元格
  2125. this.selectCell && this.unmergeCellFun(this.selectCell)
  2126. }
  2127. this.hasMergedCell=false
  2128. // 取消合并后,调整选区(有的话)
  2129. if((this.mergeSelectionStart.row || this.mergeSelectionStart.row==0)
  2130. && (this.mergeSelectionEnd.row || this.mergeSelectionEnd.row==0)
  2131. && (this.mergeSelectionStart.column || this.mergeSelectionStart.column==0)
  2132. && (this.mergeSelectionEnd.column || this.mergeSelectionEnd.column==0)){
  2133. this.mergeSelectionStart.rowSpan=1
  2134. this.mergeSelectionStart.colSpan=1
  2135. this.mergeSelectionEnd.row += (this.mergeSelectionEnd.rowSpan-1)
  2136. this.mergeSelectionEnd.column += (this.mergeSelectionEnd.colSpan-1)
  2137. this.mergeSelectionEnd.rowSpan=1
  2138. this.mergeSelectionEnd.colSpan=1
  2139. }
  2140. },
  2141. unmergeCellFun(cell){
  2142. if(!(cell.merData && cell.merData.type=='merge')) return
  2143. let {row,col} = this.findDataByStartKey(cell.merData.mer.sKey)
  2144. const sRow = row,
  2145. sCol = col,
  2146. eRow = row+cell.merData.mer.rowspan-1,
  2147. eCol = col+cell.merData.mer.colspan-1
  2148. for (let i = sRow; i < eRow+1; i++) {
  2149. for (let j = sCol; j < eCol+1; j++) {
  2150. this.config.data[i][j].merData=null
  2151. }
  2152. }
  2153. },
  2154. toolCellMergeFun(){
  2155. if(this.hasMergedCell) this.unmergeCellsFun()
  2156. else this.mergeCellFun()
  2157. }
  2158. },
  2159. };
  2160. </script>
  2161. <style scoped lang="scss">
  2162. .nodata {
  2163. text-align: center;
  2164. font-size: 16px;
  2165. color: #666;
  2166. padding: 100px 0;
  2167. }
  2168. .table-wrapper {
  2169. width: 100%;
  2170. overflow: auto;
  2171. * { box-sizing: border-box; }
  2172. .table-content-wrap {
  2173. display: flex;
  2174. .left-wrap {
  2175. flex: 1;
  2176. overflow: hidden;
  2177. .text-select-disabled{
  2178. -webkit-user-select: none;
  2179. -moz-user-select: none;
  2180. -ms-user-select: none;
  2181. user-select: none;
  2182. }
  2183. }
  2184. .right-wrap {
  2185. width: 400px;
  2186. margin-left: 20px;
  2187. flex-shrink: 0;
  2188. .chart-list{
  2189. background-color: #fff;
  2190. height: 100%;
  2191. height: calc(100vh - 440px);
  2192. overflow-y: auto;
  2193. padding: 20px;
  2194. }
  2195. }
  2196. }
  2197. .table-wrap {
  2198. width: 100%;
  2199. background-color: #fff;
  2200. // padding: 20px;
  2201. height: calc(100vh - 480px);
  2202. overflow: auto;
  2203. }
  2204. .bot-sheet-box {
  2205. margin-top: 20px;
  2206. display: flex;
  2207. justify-content: space-between;
  2208. .sheet-list {
  2209. flex: 1;
  2210. font-size: 12px;
  2211. display: flex;
  2212. align-items: center;
  2213. flex-wrap: wrap;
  2214. gap: 10px;
  2215. .sheet-item {
  2216. position: relative;
  2217. .del-box {
  2218. position: absolute;
  2219. background-color: #fff;
  2220. padding: 5px;
  2221. top: -22px;
  2222. right: -16px;
  2223. z-index: 10;
  2224. width: 40px;
  2225. text-align: center;
  2226. cursor: pointer;
  2227. }
  2228. }
  2229. .input {
  2230. width: 75px;
  2231. background-color: transparent;
  2232. border: none;
  2233. box-sizing: border-box;
  2234. color: #0033ff;
  2235. text-align: center;
  2236. }
  2237. .box {
  2238. max-width: 120px;
  2239. min-width: 75px;
  2240. text-align: center;
  2241. background-color: #eff4ff;
  2242. .text {
  2243. display: block;
  2244. overflow: hidden;
  2245. white-space: nowrap;
  2246. text-overflow: ellipsis;
  2247. }
  2248. }
  2249. .active {
  2250. background-color: #fff;
  2251. color: #0033ff;
  2252. }
  2253. }
  2254. }
  2255. .formula-wrapper {
  2256. height: 42px;
  2257. display: flex;
  2258. align-items: center;
  2259. background: #fff;
  2260. border-radius: 4px;
  2261. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  2262. border: 1px solid #dcdfe6;
  2263. margin-bottom: 15px;
  2264. padding: 0 15px;
  2265. }
  2266. .table td,
  2267. th {
  2268. width: 104px;
  2269. min-width: 104px;
  2270. height: 35px;
  2271. max-height: 35px;
  2272. background: #fff;
  2273. text-align: center;
  2274. word-break: break-all;
  2275. border: 1px solid #dcdfe6;
  2276. overflow: hidden;
  2277. text-overflow: ellipsis;
  2278. position: relative;
  2279. color: #606266;
  2280. &.td-chose::after {
  2281. position: absolute;
  2282. top: 0;
  2283. left: 0;
  2284. right: 0;
  2285. bottom: 0;
  2286. content: "";
  2287. display: block;
  2288. outline: 0;
  2289. border: 2px solid #0033ff;
  2290. box-shadow: 0 0 5px rgba(73, 177, 249, 0.5);
  2291. }
  2292. &.td-relation::after {
  2293. position: absolute;
  2294. top: 0;
  2295. left: 0;
  2296. right: 0;
  2297. bottom: 0;
  2298. content: "";
  2299. display: block;
  2300. outline: 0;
  2301. border: 2px dashed #0033ff;
  2302. box-shadow: 0 0 5px rgba(73, 177, 249, 0.5);
  2303. }
  2304. // &.td-col-select::after {
  2305. // position: absolute;
  2306. // top: 0;
  2307. // left: 0;
  2308. // right: 0;
  2309. // bottom: 0;
  2310. // content: "";
  2311. // display: block;
  2312. // outline: 0;
  2313. // border: 1px solid rgb(24, 173, 24);
  2314. // border-bottom: none;
  2315. // border-top: none;
  2316. // }
  2317. // &.td-row-select::after {
  2318. // position: absolute;
  2319. // top: 0;
  2320. // left: 0;
  2321. // right: 0;
  2322. // bottom: 0;
  2323. // content: "";
  2324. // display: block;
  2325. // outline: 0;
  2326. // border: 1px solid rgb(24, 173, 24);
  2327. // border-left: none;
  2328. // border-right: none;
  2329. // }
  2330. &.td-choose-insert-target::after {
  2331. position: absolute;
  2332. top: 0;
  2333. left: 0;
  2334. right: 0;
  2335. bottom: 0;
  2336. content: "";
  2337. display: block;
  2338. outline: 0;
  2339. border: 2px dashed orange;
  2340. box-shadow: 0 0 5px rgba(73, 177, 249, 0.5);
  2341. }
  2342. }
  2343. .th-tg {
  2344. background: #ebeef5;
  2345. &:hover {
  2346. cursor: pointer;
  2347. background: #ddd;
  2348. /* border: 2px solid #409eff; */
  2349. }
  2350. &.sm {
  2351. width: 36px;
  2352. min-width: 36px;
  2353. max-width: 36px;
  2354. }
  2355. }
  2356. //整行选中
  2357. tr {
  2358. position: relative;
  2359. &.choose-all::after {
  2360. position: absolute;
  2361. top: 0;
  2362. left: 0;
  2363. right: 0;
  2364. bottom: 0;
  2365. content: "";
  2366. display: block;
  2367. outline: 0;
  2368. border: 2px solid #5897fb;
  2369. box-shadow: 0 0 5px rgba(73, 177, 249, 0.5);
  2370. }
  2371. }
  2372. .td_selected{
  2373. background-color: #F5F7F9!important;
  2374. }
  2375. .contextMenu-wrapper {
  2376. position: fixed;
  2377. z-index: 99;
  2378. top: -9999px;
  2379. left: -9999px;
  2380. background: #fff;
  2381. padding: 10px 0;
  2382. min-width: 180px;
  2383. max-height: 400px;
  2384. overflow-y: auto;
  2385. /* border: 1px solid #999; */
  2386. box-shadow: 0 1px 4px #999;
  2387. .item {
  2388. padding: 10px 25px;
  2389. cursor: pointer;
  2390. &:hover {
  2391. background-color: #f5f7fa;
  2392. }
  2393. &:hover .subMenu-wrapper {
  2394. display: block;
  2395. }
  2396. }
  2397. .subMenu-wrapper {
  2398. width: 180px;
  2399. /* display: none; */
  2400. padding: 10px 0;
  2401. /* box-shadow: 0 1px 4px #999; */
  2402. /* background: #fff; */
  2403. /* position: absolute;
  2404. right: -178px;
  2405. top:-205px;
  2406. max-height: 400px;
  2407. overflow-y: auto; */
  2408. .item {
  2409. &:hover {
  2410. background: #fff;
  2411. }
  2412. }
  2413. }
  2414. }
  2415. }
  2416. </style>
  2417. <style lang="scss">
  2418. .table-wrapper {
  2419. td {
  2420. .el-input__inner {
  2421. border: none;
  2422. outline: none;
  2423. text-align: center;
  2424. height: 34px;
  2425. line-height: 34px;
  2426. }
  2427. }
  2428. .el-input.is-disabled .el-input__inner {
  2429. background-color: #fff;
  2430. }
  2431. .bot-sheet-box {
  2432. .el-button + .el-button {
  2433. margin-left: 0;
  2434. }
  2435. }
  2436. }
  2437. .formula-wrapper .el-input__inner {
  2438. border: none;
  2439. outline: none;
  2440. }
  2441. .edb-select-popover {
  2442. width: 300px !important;
  2443. .edb-item {
  2444. display: flex;
  2445. justify-content: space-between;
  2446. align-items: center;
  2447. .edb-item-name {
  2448. max-width: 260px;
  2449. }
  2450. }
  2451. }
  2452. .el-collapse {
  2453. border: none !important;
  2454. .el-collapse-item__header {
  2455. padding: 0;
  2456. height: auto;
  2457. line-height: normal;
  2458. margin-bottom: 0 !important;
  2459. background: transparent !important;
  2460. }
  2461. .el-collapse-item__wrap {
  2462. background: transparent !important;
  2463. border: none !important;
  2464. }
  2465. .el-collapse-item__content {
  2466. padding: 0 !important;
  2467. }
  2468. }
  2469. </style>