batchComputedV2.vue 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098
  1. <template>
  2. <el-dialog
  3. :visible.sync="isShow"
  4. :close-on-click-modal="false"
  5. :modal-append-to-body="false"
  6. @close="handleClose"
  7. custom-class="batch-computed-dialog fit-screen-dialog"
  8. center
  9. top="2vh"
  10. v-dialogDrag
  11. :title="showSave ? $t('EtaBasePage.title_batch_save') : $t('EtaBasePage.title_batch_calc')"
  12. >
  13. <div class="batch-computed-wrap" v-if="!showSave">
  14. <el-form inline :disabled="operationForm.view">
  15. <div class="type-wrap">
  16. <div style="margin-right:50px">
  17. <span><!-- 计算公式 -->{{$t('EtaBasePage.calculate_formula')}}</span>
  18. <el-select :disabled="isEdit" v-model="computedType" @change="handleComputedTypeChange" :placeholder="$t('Edb.please_select')">
  19. <el-option
  20. v-for="opt in computedBatchTypes"
  21. :key="opt.type"
  22. :label="opt.name"
  23. :value="opt.type"
  24. />
  25. </el-select>
  26. </div>
  27. <div style="flex:1">
  28. <!-- 累计值转月/季值 -->
  29. <el-form-item v-if="computedType=='toMonthSeason'">
  30. <el-radio-group v-model="subComputedType" @change="handleComputedSubTypeChange">
  31. <el-radio :label="5">
  32. <!-- 转月值 -->
  33. {{$t('Edb.CalculatesAll.to_monthly_v2')}}
  34. </el-radio>
  35. <el-radio :label="61">
  36. <!-- 转季值 -->
  37. {{$t('Edb.CalculatesAll.to_quarterly_v2')}}
  38. </el-radio>
  39. </el-radio-group>
  40. </el-form-item>
  41. <!-- N期移动均值、N期环比值、N期环差值 -->
  42. <el-form-item required v-if="[8,12,13].includes(computedType)" :label="$t('EtaBasePage.label_n_val')" style="width:280px">
  43. <el-input v-model="formData.nNum" :placeholder="$t('Edb.InputHolderAll.input_n_value')" type="number" style="width:200px"></el-input>
  44. </el-form-item>
  45. <!-- 超级季节性 -->
  46. <template v-if="computedType==35">
  47. <el-form-item required :label="$t('EtaBasePage.label_n_val')" style="width:280px">
  48. <el-input v-model="formData.nNum" :placeholder="$t('Edb.InputHolderAll.input_n_value')" type="number" style="width:200px"></el-input>
  49. </el-form-item>
  50. <el-form-item :label="$t('EtaBasePage.label_calendar')" style="width:180px">
  51. <el-select v-model="formData.calendarType" style="width:120px">
  52. <el-option :label="$t('Chart.calendar_gre')" value="公历"></el-option>
  53. <el-option :label="$t('Chart.calendar_lunar_text')" value="农历"></el-option>
  54. </el-select>
  55. </el-form-item>
  56. </template>
  57. <!-- 降频 -->
  58. <template v-if="computedType==51">
  59. <el-form-item required :label="$t('Edb.Detail.e_fre')" style="width:180px">
  60. <el-select v-model="formData.frequency" style="width:120px">
  61. <el-option v-for="opt in frequencyArr" :key="opt.value" :label="opt.label" :value="opt.value"></el-option>
  62. </el-select>
  63. </el-form-item>
  64. <el-form-item :label="$t('EtaBasePage.label_val_type')" style="width:200px">
  65. <el-select v-model="formData.valueType" style="width:120px">
  66. <el-option key="期末值" :label="$t('EtaBasePage.val_type_end')" value="期末值"/>
  67. <el-option key="平均值" :label="$t('EtaBasePage.val_type_average')" value="平均值"/>
  68. </el-select>
  69. </el-form-item>
  70. </template>
  71. <!-- 累计值 -->
  72. <template v-if="computedType=='accumulate'">
  73. <el-form-item>
  74. <el-radio v-model="subComputedType" :label="62">
  75. <!-- 累计值 -->
  76. {{$t('Edb.CalculatesAll.cumulate')}}
  77. </el-radio>
  78. </el-form-item>
  79. <el-form-item required :label="$t('Edb.Detail.e_fre')" style="width:180px" v-if="subComputedType==62">
  80. <el-select v-model="formData.frequency" style="width:120px">
  81. <el-option v-for="opt in frequencyArr" :key="opt.value" :label="opt.label" :value="opt.value"></el-option>
  82. </el-select>
  83. </el-form-item>
  84. <el-form-item :label="$t('Edb.CalculatesAll.latest_processing')" style="width:210px" v-if="subComputedType==62">
  85. <el-select v-model="formData.newValue" style="width:120px">
  86. <el-option :label="$t('EtaBasePage.default_select_text')" :value="0"/>
  87. <el-option :label="$t('EtaBasePage.mean_imputation_select_text')" :value="1"/>
  88. </el-select>
  89. </el-form-item>
  90. <el-form-item>
  91. <el-radio v-model="subComputedType" :label="63">
  92. <!-- /* '年初至今累计值' */ -->
  93. {{$t('Edb.CalculatesAll.cumulate_oneyear')}}
  94. </el-radio>
  95. </el-form-item>
  96. </template>
  97. <!-- 指数修匀 -->
  98. <template v-if="computedType==72">
  99. <el-form-item required :label="$t('EtaBasePage.alpha_value_lable')" style="width:220px">
  100. <el-input v-model.trim="formData.alphaValue" style="width:140px" :placeholder="$t('Edb.InputHolderAll.input_alpha_val')"></el-input>
  101. </el-form-item>
  102. </template>
  103. <!-- 与常数计算 -->
  104. <template v-if="computedType=='withNum'">
  105. <el-form-item required :label="$t('EtaBasePage.formula_lable')">
  106. <el-input v-model="formData.formula" :placeholder="$t('EtaBasePage.input_formula_msg')" clearable style="width: 200px"/>
  107. <span>
  108. <!-- 公式示例:A+100,或A*2 -->
  109. {{$t('EtaBasePage.formula_example_text')}}
  110. </span>
  111. </el-form-item>
  112. </template>
  113. <!-- 与单指标计算 -->
  114. <template v-if="computedType=='withEDB'">
  115. <el-form-item required :label="$t('EtaBasePage.metric_label_b')">
  116. <el-select
  117. v-model="select_target"
  118. v-loadMore="searchLoad"
  119. :filterable="!select_target"
  120. clearable
  121. :placeholder="$t('Edb.InputHolderAll.input_name')"
  122. style="width: 250px"
  123. remote
  124. :remote-method="getTarget"
  125. @click.native="inputFocusHandle"
  126. @change="chooseTarget"
  127. @blur="search_have_more = false"
  128. >
  129. <i slot="prefix" class="el-input__icon el-icon-search"></i>
  130. <el-option
  131. v-for="item in searchOptions"
  132. :key="item.EdbInfoId"
  133. :label="$parent.currentLang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName"
  134. :value="item.EdbInfoId"
  135. :disabled="!item.HaveOperaAuth"
  136. >
  137. <div>
  138. <img
  139. :src="$icons.lock_ico2"
  140. width="18"
  141. height="18"
  142. style="vertical-align:middle"
  143. v-if="!item.HaveOperaAuth"
  144. />
  145. {{$parent.currentLang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName}}
  146. </div>
  147. </el-option>
  148. </el-select>
  149. </el-form-item>
  150. <el-form-item required :label="$t('EtaBasePage.formula_lable')">
  151. <el-input v-model="formData.formula" :placeholder="$t('EtaBasePage.input_formula_msg')" clearable style="width: 200px"/>
  152. <span>
  153. <!-- 公式示例:A+B,或A/B,A/(A+B) -->
  154. {{$t('EtaBasePage.formula_example_text_a_b')}}
  155. </span>
  156. </el-form-item>
  157. <el-form-item :label="$t('EtaBasePage.create_edb_time_index')">
  158. <el-cascader
  159. v-model="formData.timeSeriesVal"
  160. style="width:180px"
  161. :options="timeSeriesOpt"
  162. :props="{emitPath:false}"
  163. :show-all-levels="false"
  164. :placeholder="$t('Edb.please_select')"
  165. ></el-cascader>
  166. </el-form-item>
  167. <el-form-item :label="$t('EtaBasePage.null_val_deal')">
  168. <el-select
  169. v-model="formData.nullValueWay"
  170. :placeholder="$t('Edb.please_select')"
  171. style="width:180px"
  172. >
  173. <el-option
  174. v-for="item in nullWayOptions"
  175. :key="item.value"
  176. :label="item.label"
  177. :value="item.value"
  178. >
  179. </el-option>
  180. </el-select>
  181. </el-form-item>
  182. <el-form-item :label="$t('EtaBasePage.max_null_val')" v-if="showMaxNullDeal">
  183. <el-select
  184. v-model="formData.maxNullWay"
  185. :placeholder="$t('Edb.please_select')"
  186. >
  187. <el-option :label="$t('EtaBasePage.equal_zeto')" :value="1" />
  188. <el-option label="跳过空值" :value="2" />
  189. </el-select>
  190. </el-form-item>
  191. </template>
  192. <!-- 多指标求和/平均 -->
  193. <template v-if="computedType=='multipleEDB'">
  194. <el-form-item style="margin-right:30px">
  195. <el-radio-group :disabled="isEdit" v-model="subComputedType">
  196. <el-radio :label="81"><!-- -->{{$t('EtaBasePage.sum_radio_label')}}</el-radio>
  197. <el-radio :label="82"><!-- 求平均 -->{{$t('EtaBasePage.average_radio_label')}}</el-radio>
  198. </el-radio-group>
  199. </el-form-item>
  200. <el-form-item :label="$t('EtaBasePage.create_edb_time_index')">
  201. <el-cascader
  202. v-model="formData.timeSeriesVal"
  203. style="width:180px"
  204. :options="timeSeriesOpt"
  205. :props="{emitPath:false}"
  206. :show-all-levels="false"
  207. :placeholder="$t('Edb.please_select')"
  208. ></el-cascader>
  209. </el-form-item>
  210. <el-form-item :label="$t('EtaBasePage.null_val_deal')">
  211. <el-select
  212. v-model="formData.nullValueWay"
  213. :placeholder="$t('Edb.please_select')"
  214. style="width:180px"
  215. >
  216. <el-option
  217. v-for="item in nullWayOptions"
  218. :key="item.value"
  219. :label="item.label"
  220. :value="item.value"
  221. >
  222. </el-option>
  223. </el-select>
  224. </el-form-item>
  225. </template>
  226. <!-- 升频 -->
  227. <template v-if="computedType==14">
  228. <el-form-item :label="$t('EtaBasePage.null_val_deal')" prop="emptyType">
  229. <el-select
  230. v-model="formData.emptyType"
  231. :placeholder="$t('Edb.InputHolderAll.input_fre')"
  232. >
  233. <el-option :label="$t('EtaBasePage.null_val_deal_2')" :value="0"></el-option>
  234. <el-option :label="$t('EtaBasePage.null_val_deal_3')" :value="3"></el-option>
  235. </el-select>
  236. </el-form-item>
  237. </template>
  238. </div>
  239. </div>
  240. </el-form>
  241. <div class="filter-wrap" style="margin-top:20px">
  242. <p style="margin-bottom:10px">
  243. <!-- 待选指标(选择指标数量不超过{{MAXAddNUM}}) -->
  244. {{$t('EtaBasePage.pending_metrics',{num:MAXAddNUM})}}
  245. </p>
  246. <div>
  247. <cascader
  248. style="display:inline-block"
  249. v-model="filter.classify"
  250. :options="classifyOpt"
  251. clearable
  252. collapse-tags
  253. :placeholder="$t('EtaBasePage.label_classify')"
  254. cascaderWidth="width: 240px"
  255. @changeVal="handleFilter"
  256. :config="{ multiple: true, emitPath: false }"
  257. />
  258. <el-select
  259. v-model="filter.frequency"
  260. :placeholder="$t('EtaBasePage.select_frequency')"
  261. style="width: 140px"
  262. clearable
  263. multiple
  264. collapse-tags
  265. @change="handleFilter"
  266. :disabled="[5,61].includes(subComputedType)"
  267. >
  268. <el-option
  269. v-for="item in frequencyArr"
  270. :key="item.value"
  271. :label="item.label"
  272. :value="item.value"
  273. >
  274. </el-option>
  275. </el-select>
  276. <el-cascader
  277. v-model="filter.user"
  278. :placeholder="$t('EtaBasePage.table_col_creator')"
  279. :options="sysUserOpts"
  280. :props="sysUserProps"
  281. collapse-tags
  282. :show-all-levels="false"
  283. clearable
  284. filterable
  285. style="width:240px"
  286. @change="handleFilter"
  287. />
  288. <el-input
  289. :placeholder="$t('Edb.InputHolderAll.input_name_orid')"
  290. v-model="filter.keyword"
  291. style="width: 200px"
  292. @keydown.enter.native="handleFilter"
  293. >
  294. <i slot="prefix" class="el-input__icon el-icon-search"></i>
  295. </el-input>
  296. <el-checkbox
  297. :label="$t('EtaBasePage.label_all_check')"
  298. v-model="isCheckAll"
  299. :indeterminate="isCheckIndeterminate"
  300. style="margin-left:10px"
  301. @change="listCheckAllChange"
  302. :disabled="operationForm.view"
  303. />
  304. </div>
  305. </div>
  306. <div class="table-wrap">
  307. <div class="left-box">
  308. <el-table
  309. :data="list"
  310. border
  311. @sort-change="sortChange"
  312. @selection-change="selectionChange"
  313. ref="edbDataRef"
  314. @select="selectHandle"
  315. @select-all="selectAllHandle"
  316. height="500px"
  317. v-loading="listLoading"
  318. >
  319. <el-table-column type="selection" min-width="50" align="center" :selectable="filterEdbAuth"/>
  320. <el-table-column :label="$t('EtaBasePage.full_metric_name')" show-overflow-tooltip align="center" :prop="$parent.currentLang==='en'?'EdbNameEn':'EdbName'"/>
  321. <el-table-column :label="$t('Edb.Detail.e_latest_date')" align="center" prop="EndDate" width="120px" />
  322. <el-table-column :label="$t('Edb.Detail.e_latest_value')" align="center" show-overflow-tooltip prop="EndValue" width="80px"/>
  323. <el-table-column :label="$t('EtaBasePage.table_col_creator')" align="center" show-overflow-tooltip prop="SysUserRealName" width="80px"/>
  324. <el-table-column :label="$t('Edb.Detail.e_fre')" align="center" prop="Frequency" width="50px">
  325. <template slot-scope="scope">
  326. <span>{{ getFrequencyTrans(scope.row.Frequency) }}</span>
  327. </template>
  328. </el-table-column>
  329. <el-table-column :label="$t('Edb.Detail.e_unit')" show-overflow-tooltip align="center" :prop="$parent.currentLang==='en'?'UnitEn':'Unit'" width="50px">
  330. <template slot-scope="scope">
  331. <span>{{ getUnitTrans(scope.row.Unit) }}</span>
  332. </template>
  333. </el-table-column>
  334. </el-table>
  335. <m-page
  336. style="margin-top:10px"
  337. class="table-page"
  338. v-show="total"
  339. :total="total"
  340. :pageSize="pageSize"
  341. :page_no="page"
  342. :pagercount="5"
  343. @handleCurrentChange="pageNumberChange"
  344. />
  345. </div>
  346. <div style="padding-top:200px;margin:0 30px">
  347. <el-button type="primary" :disabled="operationForm.view" :loading="addLoading" @click="getAddEdbListData">
  348. <!-- 加入已选指标 -->
  349. {{$t('EtaBasePage.add_to_selections')}}
  350. </el-button>
  351. </div>
  352. <div class="right-box">
  353. <el-table
  354. :data="selectList"
  355. border
  356. height="500px"
  357. >
  358. <el-table-column :label="$t('EtaBasePage.serial_num')" width="50px" align="center" prop="No" v-if="computedType=='multipleEDB'">
  359. <template slot-scope="scope">
  360. {{scope.$index|getNoText}}
  361. </template>
  362. </el-table-column>
  363. <el-table-column :label="$t('EtaBasePage.full_metric_name')" show-overflow-tooltip align="center" :prop="$parent.currentLang==='en'?'EdbNameEn':'EdbName'"/>
  364. <el-table-column width="50px" align="center" v-if="!operationForm.view">
  365. <template slot="header" slot-scope="scope">
  366. <img @click="handleDelSelect('all')" style="width:15px;height:15px;cursor: pointer;" src="~@/assets/img/ai_m/delete.png" alt="">
  367. </template>
  368. <template slot-scope="scope">
  369. <img @click="handleDelSelect(scope)" style="width:15px;height:15px;cursor: pointer;" src="~@/assets/img/ai_m/delete.png" alt="">
  370. </template>
  371. </el-table-column>
  372. </el-table>
  373. </div>
  374. </div>
  375. <div style="text-align:center;margin:60px 0 40px 0">
  376. <el-button type="primary" plain @click="handleCloseSelf">{{$t('Dialog.cancel_btn')}}</el-button>
  377. <el-button type="primary" @click="handleNextStep">{{$t('Dialog.next_step')}}</el-button>
  378. </div>
  379. </div>
  380. <!-- 结果保存 -->
  381. <batchComputedSave
  382. :select_target="select_target"
  383. :computedType="computedType"
  384. :subComputedType="subComputedType"
  385. :selectList="selectList"
  386. :formData="formData"
  387. :isEdit="isEdit"
  388. :operationForm="operationForm"
  389. @close="showSave=false"
  390. @addCallBack="handleAddSuccess"
  391. v-else
  392. />
  393. </el-dialog>
  394. </template>
  395. <script>
  396. import mPage from '@/components/mPage.vue'
  397. import {computedBatchTypesV2,getBatchComputedTypesV2} from './util'
  398. import { dataBaseInterface,departInterence } from '@/api/api.js';
  399. import batchComputedSave from './batchComputedSave.vue';
  400. import {generateSeriesArray} from './util'
  401. const tag_arr = generateSeriesArray();
  402. export default {
  403. components:{mPage,batchComputedSave},
  404. props:{
  405. isShow:{
  406. type: Boolean
  407. },
  408. operationForm: {
  409. type: Object,
  410. },
  411. type: {
  412. type: Number
  413. },
  414. },
  415. filters:{
  416. getNoText(e){
  417. return tag_arr[e]
  418. }
  419. },
  420. computed:{
  421. // 最大添加指标的上限
  422. MAXAddNUM(){
  423. let num=50
  424. if(this.computedType=='multipleEDB'){
  425. num=100
  426. }
  427. return num
  428. },
  429. /* max空值处理显示 当输入的公式包含MAX、MIN且空值处理为0时,输入公式失焦后出现右侧选项; */
  430. showMaxNullDeal() {
  431. let haveMaxOrMin = this.formData.formula.toUpperCase().includes('MAX') || this.formData.formula.toUpperCase().includes('MIN')
  432. return haveMaxOrMin && this.formData.nullValueWay===4
  433. },
  434. timeSeriesOpt(){
  435. let arr=[
  436. {
  437. // label:`指标A`,
  438. label:this.$t('EtaBasePage.edbTagA'),
  439. value:'A'
  440. },
  441. {
  442. // label:`指标B`,
  443. label:this.$t('EtaBasePage.edbTagB'),
  444. value:'B'
  445. }
  446. ]
  447. if(this.computedType=='multipleEDB'){
  448. arr=this.selectList.map((item,index)=>{
  449. return{
  450. label:`指标${tag_arr[index]}`,
  451. value:tag_arr[index]
  452. }
  453. })
  454. }
  455. return [
  456. {
  457. // label:'指定指标时间序列',
  458. lable:this.$t('EtaBasePage.specify_series_label'),
  459. value:'0',
  460. children:arr
  461. },
  462. {
  463. // label:'所有指标时间序列并集',
  464. lable:this.$t('EtaBasePage.union_series_label'),
  465. value:'all',
  466. }
  467. ]
  468. },
  469. frequencyArr(){
  470. if(this.computedType==75){
  471. return [
  472. {
  473. value: '周度',
  474. label: /* '周度' */this.$t('Edb.FreAll.week'),
  475. },
  476. {
  477. value: '旬度',
  478. label: /* '旬度' */this.$t('Edb.FreAll.dekad'),
  479. },
  480. {
  481. value: '月度',
  482. label: /* '月度' */this.$t('Edb.FreAll.month'),
  483. },
  484. {
  485. value: '季度',
  486. label: /* '季度' */ this.$t('Edb.FreAll.quarter'),
  487. },
  488. {
  489. value: '年度',
  490. label: /* '年度' */ this.$t('Edb.FreAll.year'),
  491. }]
  492. }
  493. return [
  494. {
  495. value: '日度',
  496. label: /* '日度' */this.$t('Edb.FreAll.day'),
  497. },
  498. {
  499. value: '周度',
  500. label: /* '周度' */this.$t('Edb.FreAll.week'),
  501. },
  502. {
  503. value: '旬度',
  504. label: /* '旬度' */this.$t('Edb.FreAll.dekad'),
  505. },
  506. {
  507. value: '月度',
  508. label: /* '月度' */this.$t('Edb.FreAll.month'),
  509. },
  510. {
  511. value: '季度',
  512. label: /* '季度' */ this.$t('Edb.FreAll.quarter'),
  513. },
  514. {
  515. value: '年度',
  516. label: /* '年度' */ this.$t('Edb.FreAll.year'),
  517. }]
  518. },
  519. computedBatchTypes(){
  520. return getBatchComputedTypesV2()
  521. }
  522. },
  523. watch: {
  524. isShow(n){
  525. if(!n){
  526. this.subComputedType=''
  527. this.select_target=''
  528. this.selectList=[]
  529. this.tableDataCheckedList=[]
  530. this.tableDataIds=[]
  531. this.isCheckAll=false
  532. this.isCheckIndeterminate=false
  533. this.checkAllStatus=false
  534. this.selectionReactCancel=false
  535. this.isEdit=false
  536. this.showSave=false
  537. this.computedType=computedBatchTypesV2[0].type
  538. this.filter={
  539. classify:'',
  540. frequency:'',
  541. user:'',
  542. keyword:''
  543. }
  544. this.formData={
  545. nNum:1,
  546. calendarType:'公历',
  547. frequency:'',
  548. valueType:'期末值',
  549. newValue:0,
  550. alphaValue:'',
  551. formula:'',
  552. timeSeriesVal:'A',
  553. nullValueWay:0,
  554. maxNullWay:1,
  555. emptyType:0
  556. }
  557. }else{
  558. // 编辑多指标求和\平均
  559. if([81,82].includes(this.type)){
  560. this.initData()
  561. }
  562. this.handleFilter()
  563. this.getClassifyOpt()
  564. this.getSysUserList()
  565. }
  566. }
  567. },
  568. data() {
  569. return {
  570. showSave:false,//显示结果保存模块
  571. /* computedBatchTypes:computedBatchTypesV2,//计算类型筛选项 */
  572. computedType:computedBatchTypesV2[0].type,//当前选中的计算类型
  573. subComputedType:'',//二级计算类型
  574. formData:{
  575. nNum:1,
  576. calendarType:'公历',
  577. frequency:'',
  578. valueType:'期末值',
  579. newValue:0,
  580. alphaValue:'',
  581. formula:'',
  582. timeSeriesVal:'A',
  583. nullValueWay:0,
  584. maxNullWay:1,
  585. emptyType:0,
  586. },
  587. select_target:'',
  588. searchOptions:[],//指标列表
  589. search_have_more:false,
  590. search_page: 1,
  591. current_search: '',
  592. filter:{
  593. classify:'',
  594. frequency:'',
  595. user:'',
  596. keyword:''
  597. },
  598. classifyOpt: [],
  599. classifyProps: {
  600. label: 'ClassifyName',
  601. value: 'ClassifyId',
  602. children: 'Children',
  603. multiple: true,
  604. emitPath:false
  605. },
  606. sysUserOpts:[],
  607. sysUserProps:{
  608. value: "AdminId",
  609. label: "RealName",
  610. children: "ChildrenList",
  611. multiple: true,
  612. emitPath:false
  613. },
  614. nullWayOptions: [
  615. { label: /* '查找前后35天最近值' */ this.$t('EtaBasePage.null_val_deal_0'),value: 0 },
  616. { label: /* '不计算' */ this.$t('EtaBasePage.not_alculate_options'),value: 1 },
  617. { label: /* '前值填充' */this.$t('EtaBasePage.forward_fill_options'),value: 2 },
  618. { label: /* '后值填充' */this.$t('EtaBasePage.backward_fill_options') ,value: 3 },
  619. { label: /* '等于0' */this.$t('EtaBasePage.equal_zeto') ,value: 4 },
  620. ],
  621. isCheckAll:false,//是否全选
  622. isCheckIndeterminate:false,// 标志列表当前是全选状态还是不是全选状态和 isCheckAll不一样
  623. checkAllStatus:false,
  624. selectionReactCancel:false,// 是否不触发 selection的逻辑
  625. listLoading:false,
  626. page:1,
  627. pageSize:20,
  628. total:0,
  629. list:[],
  630. tableDataCheckedList:[],
  631. tableDataIds:[],
  632. selectList:[],//添加到右侧的数据
  633. addLoading:false,
  634. isEdit:false,//是否为多指标求和等编辑
  635. }
  636. },
  637. methods: {
  638. // 编辑时初始化数据
  639. initData(){
  640. this.isEdit=true
  641. const arr=this.operationForm.CalculateList||[]
  642. this.selectList=arr.map(item=>{
  643. return {
  644. ClassifyId:item.ClassifyId,
  645. EdbInfoId:item.FromEdbInfoId,
  646. EdbName:item.FromEdbName,
  647. Frequency:item.Frequency,
  648. Unit:item.Unit
  649. }
  650. })
  651. this.computedType='multipleEDB'
  652. this.subComputedType=this.type
  653. this.formData.timeSeriesVal=this.operationForm.EdbInfoDetail.Extra?JSON.parse(this.operationForm.EdbInfoDetail.Extra).DateTag:'A'
  654. this.formData.nullValueWay=this.operationForm.EdbInfoDetail.EmptyType||0
  655. },
  656. //批量计算成功回调
  657. handleAddSuccess(type,params){
  658. this.$emit('addCallBack',type,params)
  659. },
  660. // 跳转下一步
  661. handleNextStep(){
  662. if(this.selectList.length===0){
  663. this.$message.warning(/* "请选择指标" */this.$t('Edb.InputHolderAll.input_select_edb'))
  664. return
  665. }
  666. if([8,12,13,35].includes(this.computedType) && !this.formData.nNum){
  667. this.$message.warning(/* "请输入N数值" */ this.$t('Edb.InputHolderAll.input_n_value'))
  668. return
  669. }
  670. if([51].includes(this.computedType)&& !this.formData.frequency){
  671. this.$message.warning(/*'请选择频度'*/this.$t('Edb.InputHolderAll.input_fre'))
  672. return
  673. }
  674. if(['accumulate'].includes(this.computedType)&&this.subComputedType==62&& !this.formData.frequency){
  675. this.$message.warning(/*'请选择频度'*/this.$t('Edb.InputHolderAll.input_fre'))
  676. return
  677. }
  678. if(this.computedType==72&&!this.formData.alphaValue){
  679. this.$message.warning(/*'请输入alpha值'*/this.$t('Edb.InputHolderAll.input_alpha_val'))
  680. return
  681. }
  682. if(this.computedType==72&&(Number(this.formData.alphaValue)<=0||Number(this.formData.alphaValue)>=1)){
  683. this.$message.warning(/*''请输入>0,<1的数值的alpha值''*/ this.$t('EtaBasePage.numeric_greater_msg'))
  684. return
  685. }
  686. if(this.computedType=='withEDB'&&!this.select_target){
  687. this.$message.warning(/*'请选择指标B'*/this.$t('EtaBasePage.select_indicator_msg'))
  688. return
  689. }
  690. if(['withNum','withEDB'].includes(this.computedType)&&!this.formData.formula){
  691. this.$message.warning(/*'请输入公式'8*/this.$t('EtaBasePage.input_formula_msg'))
  692. return
  693. }
  694. this.isCheckAll=false
  695. this.isCheckIndeterminate=false
  696. this.checkAllStatus=false
  697. this.tableDataCheckedList=[]
  698. this.tableDataIds=[]
  699. this.showSave=true
  700. },
  701. // 点击加入已选指标库
  702. async getAddEdbListData(){
  703. if(!(this.isCheckAll || this.isCheckIndeterminate ) || (!(this.list && this.list.length>0))){
  704. this.$message.warning(/* "请选择指标" */this.$t('Edb.InputHolderAll.input_select_edb'))
  705. return
  706. }
  707. if(this.selectList.length>=this.MAXAddNUM){
  708. this.$message.warning(/* "已达批量添加指标数量上限" */this.$t('EtaBasePage.limit_indicators_msg'))
  709. return
  710. }
  711. const params={
  712. SysUserIds:this.filter.user?this.filter.user.join(','):'',
  713. ClassifyIds:this.filter.classify?this.filter.classify.join(','):'',
  714. Keyword:this.filter.keyword,
  715. Frequency:this.filter.frequency?this.filter.frequency.join(','):'',
  716. SelectAll:this.checkAllStatus,
  717. EdbInfoIds:this.tableDataCheckedList.join(',')
  718. }
  719. this.addLoading=true
  720. const res=await dataBaseInterface.getBatchFilterAddEdbList(params)
  721. this.addLoading=false
  722. if(res.Ret!=200) return
  723. // 加入到已选指标中 要去重
  724. const arr=res.Data.SearchItem||[]
  725. const temArr=this.mergeAndDistinct(this.selectList,arr)
  726. // 截取数组 防止数量溢出
  727. this.selectList=temArr.filter(_ =>_.HaveOperaAuth).slice(0,this.MAXAddNUM)
  728. },
  729. mergeAndDistinct(arr1, arr2) {
  730. // 合并两个数组
  731. const mergedArray = arr1.concat(arr2);
  732. // 根据 EdbInfoId 字段进行去重
  733. const distinctArray = mergedArray.filter((item, index, self) => {
  734. return index === self.findIndex(t => t.EdbInfoId === item.EdbInfoId);
  735. });
  736. return distinctArray;
  737. },
  738. // 删除已选指标库指标
  739. handleDelSelect(e){
  740. if(this.operationForm.view) return
  741. if(e==='all'){
  742. this.selectList=[]
  743. return
  744. }
  745. const index=e.$index
  746. this.selectList.splice(index,1)
  747. },
  748. // 切换计算类型
  749. handleComputedTypeChange(){
  750. this.subComputedType=''
  751. this.select_target=''
  752. this.formData={
  753. nNum:1,
  754. calendarType:'公历',
  755. frequency:'',
  756. valueType:'期末值',
  757. newValue:0,
  758. alphaValue:'',
  759. formula:'',
  760. timeSeriesVal:'A',
  761. nullValueWay:0,
  762. maxNullWay:1,
  763. emptyType:0
  764. }
  765. this.filter={
  766. classify:'',
  767. frequency:'',
  768. user:'',
  769. keyword:''
  770. }
  771. this.selectList=[]
  772. if(this.computedType=='toMonthSeason'){
  773. this.subComputedType=5
  774. this.filter.frequency=['月度']
  775. }else if(this.computedType=='accumulate'){
  776. this.subComputedType=62
  777. }else if(this.computedType=='multipleEDB'){
  778. this.subComputedType=81
  779. }
  780. this.handleFilter()
  781. },
  782. handleComputedSubTypeChange(){
  783. if(this.subComputedType==61){
  784. this.filter.frequency=['季度']
  785. }
  786. if(this.subComputedType==5){
  787. this.filter.frequency=['月度']
  788. }
  789. this.selectList=[]
  790. this.handleFilter()
  791. },
  792. /* 指标列表 */
  793. getTarget(query) {
  794. this.search_page = 1;
  795. this.current_search = query;
  796. this.searchApi(this.current_search);
  797. },
  798. /* 聚焦获取当前检索 */
  799. inputFocusHandle(e) {
  800. this.search_page = 1;
  801. this.current_search = e.target.value;
  802. this.searchApi(this.current_search);
  803. },
  804. searchApi(query,page=1) {
  805. dataBaseInterface.targetSearchByPage({
  806. KeyWord:query,
  807. CurrentIndex: page,
  808. FilterSource: 1,
  809. Frequency: ''
  810. }).then(res => {
  811. if(res.Ret !== 200) return
  812. const { List,Paging } = res.Data;
  813. this.search_have_more = page < Paging.Pages;
  814. let arr = page === 1 ? List : this.searchOptions.concat(List);
  815. this.searchOptions = arr;
  816. })
  817. },
  818. searchLoad() {
  819. if(!this.search_have_more) return;
  820. this.searchApi(this.current_search,++this.search_page)
  821. },
  822. handleClose(){
  823. this.showSave=false
  824. this.$emit('close')
  825. },
  826. handleCloseSelf(){//仅仅关闭批量计算弹窗
  827. this.$emit('closeSelf')
  828. },
  829. filterNodes(arr) {
  830. arr.length &&
  831. arr.forEach((item) => {
  832. item.Children.length && this.filterNodes(item.Children);
  833. if (!item.Children.length) {
  834. delete item.Children;
  835. }
  836. });
  837. },
  838. // 获取指标分类
  839. async getClassifyOpt(){
  840. const res=await dataBaseInterface.menuListV3({ClassifyType:-1})
  841. if (res.Ret !== 200) return
  842. this.filterNodes(res.Data.AllNodes||[]);
  843. this.classifyOpt = res.Data.AllNodes || [];
  844. },
  845. // 获取所有系统用户
  846. async getSysUserList() {
  847. const res = await departInterence.getQuestionAdminList();
  848. if (res.Ret === 200) {
  849. this.sysUserOpts = res.Data.List||[];
  850. }
  851. },
  852. // 获取指标列表
  853. async getEDBList(type){
  854. this.listLoading=true
  855. const res=await dataBaseInterface.getBatchAddEdbSearchList({
  856. CurrentIndex:this.page,
  857. PageSize: this.pageSize,
  858. SysUserIds:this.filter.user?this.filter.user.join(','):'',
  859. ClassifyIds:this.filter.classify?this.filter.classify.join(','):'',
  860. Keyword:this.filter.keyword,
  861. Frequency:this.filter.frequency?this.filter.frequency.join(','):'',
  862. NotFrequency:this.computedType==75?'日度':''
  863. })
  864. this.listLoading=false
  865. if(res.Ret===200){
  866. this.list=res.Data.SearchItem||[]
  867. this.total=res.Data.Paging.Totals||0
  868. if(this.list.length>0){
  869. this.tableDataIds = this.list.map(it => it.EdbInfoId)
  870. }else{
  871. this.tableDataIds = []
  872. }
  873. if(type == 'adjustSelection'){
  874. this.adjustSelection()
  875. }else{
  876. this.isCheckAll=false
  877. this.checkAllStatus=false
  878. this.isCheckIndeterminate=false
  879. this.listCheckAllChange(this.isCheckAll)
  880. }
  881. }
  882. },
  883. pageNumberChange(e){
  884. this.page=e
  885. this.getEDBList('adjustSelection')
  886. },
  887. handleFilter(e){
  888. this.page=1
  889. this.list=[]
  890. this.getEDBList()
  891. },
  892. // 切换列表全选按钮状态
  893. listCheckAllChange(check){
  894. this.tableDataCheckedList=[]
  895. this.checkAllStatus=check
  896. if(check){
  897. // 全选
  898. this.$refs.edbDataRef && this.$refs.edbDataRef.clearSelection()
  899. this.$refs.edbDataRef && this.$refs.edbDataRef.toggleAllSelection()
  900. }else{
  901. //全不选
  902. this.$refs.edbDataRef && this.$refs.edbDataRef.clearSelection()
  903. }
  904. },
  905. selectionChange(val){
  906. if(this.selectionReactCancel) return
  907. // selectAllHandle的触发在selectionChange后面,将selectionChange的逻辑延迟一下
  908. setTimeout(()=>{
  909. // 去重
  910. let duplicateArr = Array.from(new Set(this.tableDataCheckedList))
  911. if((duplicateArr.length == this.total && (!this.checkAllStatus))
  912. || (duplicateArr.length == 0 && this.checkAllStatus)){
  913. this.isCheckAll = true
  914. this.isCheckIndeterminate=false
  915. }else if((duplicateArr.length == 0 && (!this.checkAllStatus))
  916. || (duplicateArr.length == this.total && this.checkAllStatus)){
  917. this.isCheckAll = false
  918. this.isCheckIndeterminate=false
  919. }else{
  920. this.isCheckAll = false
  921. this.isCheckIndeterminate=true
  922. }
  923. },1)
  924. },
  925. //用户手动勾选数据行的 Checkbox 时触发的事件
  926. selectHandle(selection, row){
  927. if(this.selectionReactCancel) return
  928. let check=false
  929. if(selection.some(it => it.EdbInfoId == row.EdbInfoId)){
  930. // 勾选
  931. // 勾选
  932. if(this.checkAllStatus){
  933. check=false
  934. }else{
  935. check=true
  936. }
  937. }else{
  938. // 取消勾选
  939. if(this.checkAllStatus){
  940. check=true
  941. }else{
  942. check=false
  943. }
  944. }
  945. if(check){
  946. this.tableDataCheckedList.push(row.EdbInfoId)
  947. }else{
  948. this.tableDataCheckedList=this.tableDataCheckedList.filter(it => it!=row.EdbInfoId)
  949. }
  950. },
  951. // 用户手动勾选全选 Checkbox 时触发的事件
  952. selectAllHandle(selection){
  953. if(this.selectionReactCancel) return
  954. let check = false; // 从tableDataCheckedList 添加还是删除
  955. if(selection && selection.length>0){
  956. // 全选
  957. if(this.checkAllStatus){
  958. check=false
  959. }else{
  960. check=true
  961. }
  962. }else{
  963. // 全不选
  964. if(this.checkAllStatus){
  965. check=true
  966. }else{
  967. check=false
  968. }
  969. }
  970. if(check){
  971. this.tableDataCheckedList = [...this.tableDataCheckedList,...this.tableDataIds]
  972. }else{
  973. this.tableDataCheckedList = this.tableDataCheckedList.filter(it => !this.tableDataIds.includes(it))
  974. }
  975. },
  976. adjustSelection(){
  977. this.selectionReactCancel=true
  978. if(!this.checkAllStatus){
  979. this.tableDataCheckedList.map(it =>{
  980. let row = this.list.find(da => da.EdbInfoId==it)
  981. if(row){
  982. setTimeout(()=>{
  983. this.$refs.edbDataRef.toggleRowSelection(row,true)
  984. },10)
  985. }
  986. })
  987. }else{
  988. this.$refs.edbDataRef.toggleAllSelection()
  989. this.tableDataCheckedList.map(it =>{
  990. let row = this.list.find(da => da.EdbInfoId==it)
  991. if(row){
  992. setTimeout(()=>{
  993. this.$refs.edbDataRef.toggleRowSelection(row,false)
  994. },50)
  995. }
  996. })
  997. }
  998. setTimeout(()=>{
  999. this.selectionReactCancel=false
  1000. },50)
  1001. },
  1002. filterEdbAuth(row) {
  1003. return row.HaveOperaAuth
  1004. }
  1005. },
  1006. }
  1007. </script>
  1008. <style lang="scss">
  1009. .batch-computed-dialog{
  1010. max-width: 1200px;
  1011. width:90vw;
  1012. overflow: hidden;
  1013. }
  1014. .batch-computed-wrap{
  1015. .type-wrap{
  1016. display: flex;
  1017. }
  1018. .table-wrap{
  1019. margin-top: 20px;
  1020. display: flex;
  1021. justify-content: space-between;
  1022. .left-box{
  1023. width: 50%;
  1024. }
  1025. .right-box{
  1026. flex: 1;
  1027. flex-shrink: 0;
  1028. }
  1029. }
  1030. }
  1031. </style>