highFrequencyData.vue 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014
  1. <template>
  2. <div class="hight-frequency-data-container">
  3. <div class="top-box">
  4. <div class="select-box">
  5. <span>{{$t('SystemManage.DataRefresh.select_source')}}</span>
  6. <el-select :placeholder="$t('SystemManage.DataRefresh.select_source_pld')" v-model="Source" @change="handleSourceChange">
  7. <el-option v-for="item in SourceList" :key="item.Source"
  8. :label="$i18nt.locale==='zh'?item.SourceName:item.SourceNameEn||item.SourceName" :value="item.Source"/>
  9. </el-select>
  10. <el-select v-model="Sequence" @change="handleSequenceChange">
  11. <el-option v-for="item in SequenceList" :key="item.Sequence"
  12. :label="$i18nt.locale==='zh'?item.SequenceName:item.SequenceNameEn||item.SequenceName" :value="item.Sequence"/>
  13. </el-select>
  14. <!-- 添加高频数据 -->
  15. <el-button type="primary" @click="addHighFrequencyDiaShow" v-permission="permissionBtn.dataSourcePermission.highFrequency_adds"
  16. >{{$t('HighFrequencyData.add_high_frequency_data')}}</el-button>
  17. </div>
  18. </div>
  19. <div class="table-box">
  20. <div class="table-select">
  21. <div class="select-list">
  22. <el-cascader :placeholder="$t('HighFrequencyData.select_classify_prompt')"
  23. v-model="classifyArr" @change="searchListDelay" :options="classifyListTree"
  24. style="max-width: 160px;"
  25. key="isAssociativeSub"
  26. v-if="searchParams.isAssociativeSub"
  27. :show-all-levels="false" collapse-tags
  28. :props="classifyProps"
  29. clearable/>
  30. <el-cascader :placeholder="$t('HighFrequencyData.select_classify_prompt')"
  31. v-model="classifyArr" @change="searchListDelay" :options="classifyListTree"
  32. style="max-width: 160px;" v-else key="noIsAssociativeSub"
  33. :show-all-levels="false" collapse-tags
  34. :props="classifyProps"
  35. clearable/>
  36. <div class="associative-box">
  37. <span>{{$t('HighFrequencyData.associative_sub_classify')}}</span>
  38. <el-switch v-model="searchParams.isAssociativeSub" @change="changeAssociativeSub"></el-switch>
  39. <span class="span-button" @click="setClassify"
  40. v-permission="[permissionBtn.dataSourcePermission.highFrequency_classify_move,permissionBtn.dataSourcePermission.highFrequency_classify_delete,
  41. permissionBtn.dataSourcePermission.highFrequency_classify_editAdd,'or']"
  42. >{{$t('HighFrequencyData.classify_setting')}}</span>
  43. </div>
  44. <el-select :placeholder="$t('Edb.InputHolderAll.input_fre')" v-model="frequencyArr" @change="searchListDelay" multiple collapse-tags clearable>
  45. <el-option v-for="i in frequencyList" :key="i.value"
  46. :label="i.label" :value="i.value"
  47. />
  48. </el-select>
  49. <el-cascader
  50. :placeholder="$t('Edb.InputHolderAll.select_creator')" v-model="userArr" @change="searchListDelay"
  51. :props="{
  52. value: 'ItemId',
  53. label: 'ItemName',
  54. children: 'Children',
  55. emitPath: false,
  56. multiple:true,
  57. }"
  58. :options="userList"
  59. collapse-tags
  60. :show-all-levels="false"
  61. clearable
  62. filterable
  63. />
  64. <el-input :placeholder="$t('Edb.InputHolderAll.input_name_orid')" prefix-icon="el-icon-search" clearable
  65. v-model="searchParams.keyWord" @input="searchList"></el-input>
  66. </div>
  67. <div class="select-other">
  68. <el-checkbox :indeterminate="isIndeterminate" v-model="isCheckAll" @change="listCheckAllChange">{{$t('SystemManage.DataRefresh.all_list')}}</el-checkbox>
  69. <!-- 批量添加到指标库 -->
  70. <el-button type="primary" @click="batchAddToDatabaseOpen"
  71. :disabled="!selectedTotal>0" :loading="batchLoading"
  72. v-permission="permissionBtn.dataSourcePermission.highFrequency_addTo_database"
  73. >{{$t('HighFrequencyData.add_to_eta_indicators')}}</el-button>
  74. <!-- 批量操作 -->
  75. <el-button type="primary" @click="openBatchOperationDia"
  76. :disabled="!selectedTotal>0" :loading="batchLoading"
  77. v-permission="permissionBtn.dataSourcePermission.highFrequency_operations"
  78. >{{$t('HighFrequencyData.batch_operation')}}</el-button>
  79. </div>
  80. </div>
  81. <el-table :data="tableData" border ref="edbDataRef"
  82. @selection-change="selectionChange"
  83. @select="selectHandle"
  84. @select-all="selectAllHandle"
  85. @sort-change="handleSortChange"
  86. >
  87. <!-- 多选 -->
  88. <el-table-column
  89. align="center"
  90. type="selection"
  91. width="55">
  92. </el-table-column>
  93. <!-- 指标ID -->
  94. <el-table-column prop="IndexCode" :label="$t('Edb.Detail.e_id')" align="center" show-overflow-tooltip>
  95. <template slot-scope="{row}">
  96. <span>{{row.IndexCode}}</span>
  97. </template>
  98. </el-table-column>
  99. <!-- 指标名称 -->
  100. <el-table-column prop="IndexName" :label="$t('Edb.Detail.e_name')" align="center" show-overflow-tooltip>
  101. <template slot-scope="{row}">
  102. <span>{{row.IndexName}}</span>
  103. </template>
  104. </el-table-column>
  105. <!-- 频度 -->
  106. <el-table-column prop="Frequency" :label="$t('Edb.Detail.e_fre')" align="center">
  107. <template slot-scope="{row}">
  108. <span>{{row.Frequency}}</span>
  109. </template>
  110. </el-table-column>
  111. <!-- 单位 -->
  112. <el-table-column prop="Unit" :label="$t('Edb.Detail.e_unit')" align="center">
  113. <template slot-scope="{row}">
  114. <span>{{row.Unit}}</span>
  115. </template>
  116. </el-table-column>
  117. <!-- 指标开始时间 -->
  118. <el-table-column prop="StartDate" :label="$t('Edb.Detail.e_start_time_whole')" align="center" sortable="custom">
  119. <template slot-scope="{row}">
  120. <span>{{row.StartDate}}</span>
  121. </template>
  122. </el-table-column>
  123. <!-- 指标最新时间 -->
  124. <el-table-column prop="EndDate" :label="$t('Edb.Detail.e_latest_time_whole')" align="center" sortable="custom">
  125. <template slot-scope="{row}">
  126. <span>{{row.EndDate}}</span>
  127. </template>
  128. </el-table-column>
  129. <!-- 更新时间 -->
  130. <el-table-column prop="ModifyTime" :label="$t('Edb.Detail.e_update_time')" align="center" sortable="custom">
  131. <template slot-scope="{row}">
  132. <span>{{row.ModifyTime}}</span>
  133. </template>
  134. </el-table-column>
  135. <!-- 最新值 -->
  136. <el-table-column prop="LatestValue" :label="$t('Edb.Detail.e_latest_value')" align="center" sortable="custom">
  137. <template slot-scope="{row}">
  138. <span>{{row.LatestValue}}</span>
  139. </template>
  140. </el-table-column>
  141. <!-- 数据源分类 -->
  142. <el-table-column prop="ClassifyPath" :label="$t('HighFrequencyData.data_source_classify')" align="center" show-overflow-tooltip>
  143. <template slot-scope="{row}">
  144. <span>{{row.ClassifyPath}}</span>
  145. </template>
  146. </el-table-column>
  147. <el-table-column prop="Operation" :label="$t('Table.column_operations')" align="center">
  148. <template slot-scope="{row}">
  149. <span class="table-operation-item" @click="detailIndexHandle(row)"
  150. v-permission="permissionBtn.dataSourcePermission.highFrequency_operation_detail">{{ $t('Table.detail_btn') }}</span>
  151. <span class="table-operation-item" @click="refreshIndexHandle(row)"
  152. v-permission="permissionBtn.dataSourcePermission.highFrequency_operation_refresh">{{ $t('Table.refresh_btn') }}</span>
  153. <span class="table-operation-item del-item" @click="deleteIndexHandle(row)"
  154. v-permission="permissionBtn.dataSourcePermission.highFrequency_operation_delete">{{ $t('Table.delete_btn') }}</span>
  155. </template>
  156. </el-table-column>
  157. </el-table>
  158. <el-pagination
  159. :current-page="searchParams.currentPage"
  160. :page-size="searchParams.pageSize"
  161. :total="total"
  162. @current-change="handleCurrentChange"
  163. />
  164. </div>
  165. <!-- 数据详情 -->
  166. <el-dialog custom-class="custom-dialog"
  167. :title="$t('Edb.data_detail_tab')"
  168. :visible.sync="detailDiaShow"
  169. :close-on-click-modal="false"
  170. :modal-append-to-body="false"
  171. @close="detailDiaShow=false"
  172. width="980px"
  173. top="5vh"
  174. v-dialogDrag
  175. center
  176. >
  177. <div class="dialog-container">
  178. <div class="detail-date-select-zone">
  179. <span>{{ $t('HighFrequencyData.data_date') }}</span>
  180. <el-date-picker v-model="detailRequestParams.DataDate" type="date" :clearable="false" @change="getIndexDetailFun"
  181. :placeholder="$t('EtaBasePage.input_date_msg')" style="max-width:240px" value-format="yyyy-MM-dd"></el-date-picker>
  182. </div>
  183. <div class="detail-data-zone">
  184. <div class="detail-data-zone-header">
  185. <table border class="header-table">
  186. <tr>
  187. <td>{{ $t('Edb.Detail.e_name') }}</td>
  188. <td>
  189. <el-input v-model.trim="indexDetail.IndexName" :placeholder="$t('Edb.InputHolderAll.input_name')" size="mini"></el-input>
  190. </td>
  191. </tr>
  192. <tr>
  193. <td>{{ $t('Edb.Detail.e_stock_code') }}</td>
  194. <td>{{ indexDetail.ZqCode }}</td>
  195. </tr>
  196. <tr>
  197. <td>{{ $t('Edb.Detail.e_indicator_code') }}</td>
  198. <td>{{ indexDetail.ZbCode }}</td>
  199. </tr>
  200. </table>
  201. <table border class="header-table">
  202. <tr>
  203. <td>{{ $t('HighFrequencyData.belong_to_classify') }}</td>
  204. <td>
  205. <el-cascader :options="classifyListTree" v-model="indexDetail.ClassifyId"
  206. size="mini"
  207. :props="{label: 'ClassifyName',
  208. value: 'ClassifyId',
  209. children: 'Children',
  210. checkStrictly: true,
  211. emitPath:false}">
  212. </el-cascader>
  213. </td>
  214. </tr>
  215. <tr>
  216. <td>{{ $t('Edb.Detail.e_unit') }}</td>
  217. <td>
  218. <el-autocomplete
  219. v-model.trim="indexDetail.Unit"
  220. :fetch-suggestions="querySearchUnit"
  221. :placeholder="$t('Edb.InputHolderAll.input_unit')"
  222. suffix-icon="el-icon-arrow-down"
  223. size="mini"
  224. ></el-autocomplete>
  225. </td>
  226. </tr>
  227. <tr>
  228. <td>{{ $t('Edb.Detail.e_fre') }}</td>
  229. <td>{{indexDetail.Frequency}}</td>
  230. </tr>
  231. </table>
  232. </div>
  233. <div class="detail-data-list" ref="detailDataListRef">
  234. <table class="body-table" >
  235. <template v-if="indexDetail.DataList && indexDetail.DataList.length>0">
  236. <tr v-for="(item,index) in indexDetail.DataList" :key="index">
  237. <td>{{ item.DataTime }}</td>
  238. <td>{{ item.Value }}</td>
  239. </tr>
  240. </template>
  241. <tableNoData v-else></tableNoData>
  242. </table>
  243. </div>
  244. </div>
  245. </div>
  246. <!-- 弹窗按钮 -->
  247. <div class="dialog-btn">
  248. <el-button type="primary" plain @click="detailDiaShow=false">{{$t('Dialog.cancel_btn')}}</el-button>
  249. <el-button type="primary" @click="editDataHandle">{{$t('Dialog.confirm_btn')}}</el-button>
  250. </div>
  251. </el-dialog>
  252. <!-- 批量操作 -->
  253. <el-dialog custom-class="custom-dialog"
  254. :title="$t('HighFrequencyData.batch_operation')"
  255. :visible.sync="batchOperationDialogShow"
  256. :close-on-click-modal="false"
  257. :modal-append-to-body="false"
  258. @close="batchOperationClose"
  259. width="600px"
  260. top="5vh"
  261. v-dialogDrag
  262. >
  263. <div class="dialog-container">
  264. <div class="batch-option-row">
  265. <el-radio v-model="batchOperationData.type" :label="1">{{ $t('HighFrequencyData.move_to_new_classify') }}</el-radio>
  266. <el-cascader :options="classifyListTree" v-model="batchOperationData.newClassify"
  267. style="width: 160px;"
  268. :placeholder="$t('HighFrequencyData.select_classify_prompt')"
  269. :props="{label: 'ClassifyName',
  270. value: 'ClassifyId',
  271. children: 'Children',
  272. checkStrictly: true,
  273. emitPath:false}">
  274. </el-cascader>
  275. </div>
  276. <div class="batch-option-row">
  277. <el-radio v-model="batchOperationData.type" :label="2" style="margin-right: 10px;">{{ $t('Edb.detail_del_btn') }}</el-radio>
  278. </div>
  279. <div class="batch-option-row">
  280. <el-radio v-model="batchOperationData.type" :label="3">{{ $t('Edb.detail_refresh_btn') }}</el-radio>
  281. <div class="radio-box" v-show="batchOperationData.type==3">
  282. <el-radio v-model="batchOperationData.refreshType" :label="1">{{ $t('HighFrequencyData.last_six_hours') }}</el-radio>
  283. <el-radio v-model="batchOperationData.refreshType" :label="2">{{ $t('HighFrequencyData.refresh_all') }}</el-radio>
  284. </div>
  285. </div>
  286. </div>
  287. <!-- 弹窗按钮 -->
  288. <div class="dialog-btn">
  289. <el-button type="primary" plain @click="batchOperationDialogShow=false">{{$t('Dialog.cancel_btn')}}</el-button>
  290. <el-button type="primary" @click="batchOpeartion">{{$t('Dialog.confirm_btn')}}</el-button>
  291. </div>
  292. </el-dialog>
  293. <!-- 分类设置 -->
  294. <classifySetting :showIt.sync="classifySettingShow" @closeHandle="classifyCloseHandle" />
  295. <!-- 添加高频数据 -->
  296. <addHighFrequencyData :isAddShow.sync="addHighFrequencyShow" :unitList="unitList" :classifyList="classifyListTree" @addSuccessHandle="addHighFrequencySuccess" />
  297. <!-- 批量添加到到指标库 -->
  298. <addToIndexDatabaseBatch :isAddShow.sync="batchAddToDatabaseShow" :IndexIds="choiceIdList"/>
  299. </div>
  300. </template>
  301. <script>
  302. import {dataRefreshInterface,dataAuthInterface} from '@/api/modules/dataApi.js';
  303. import { dataInterence,highFrequencyDataInterface } from '@/api/api.js'
  304. import classifySetting from './components/highFrequency/classifySetting.vue';
  305. import addHighFrequencyData from './components/highFrequency/addHighFrequencyData.vue'
  306. import addToIndexDatabaseBatch from './components/highFrequency/addToIndexDatabaseBatch.vue';
  307. export default {
  308. name:'highFrequencyData',
  309. components:{classifySetting,addHighFrequencyData,addToIndexDatabaseBatch},
  310. data() {
  311. return {
  312. Source:'',
  313. SourceList:[],
  314. Sequence:'',
  315. SequenceList:[],
  316. classifyListTree:[],
  317. userList:[],
  318. unitList:[],
  319. searchParams:{
  320. classify:'',//分类
  321. isAssociativeSub:true,//是否关联子分类
  322. frequency:'',//频度
  323. user:'',//创建人
  324. keyWord:'',//关键字
  325. sortType:'',//升序降序
  326. sortParam:'',//排序字段
  327. pageSize:10,
  328. currentPage:1,
  329. },
  330. classifyArr:[],
  331. frequencyArr:[],
  332. userArr:[],
  333. tableData: [],
  334. tableDataIds:[],
  335. total:0,
  336. //全部全选
  337. isIndeterminate:false,
  338. isCheckAll:false,
  339. isSelectAll:false,//为true时,selectList是剔除的指标,为false时selectList是已选择的指标
  340. //已选择/已剔除的指标id
  341. selectList:[],//监听table的select-all select
  342. choiceIdList:[], //后端返回的选中的列表
  343. detailDiaShow:false,
  344. indexDetail:{},
  345. detailRequestParams:{
  346. IndexId:0,
  347. DataDate:''
  348. },
  349. classifySettingShow:false,
  350. addHighFrequencyShow:false,
  351. batchOperationDialogShow:false,
  352. batchOperationData:{
  353. type:1,
  354. newClassify:0,
  355. refreshType:1
  356. },
  357. batchAddToDatabaseShow:false,
  358. batchLoading:false
  359. };
  360. },
  361. computed:{
  362. selectedTotal(){
  363. if(this.isSelectAll){
  364. return this.total - (this.selectList ? this.selectList.length : 0)
  365. }else{
  366. return this.selectList ? this.selectList.length : 0
  367. }
  368. },
  369. frequencyList() {
  370. return [
  371. {value: "1m",label: "1m"},
  372. {value: "3m",label: '3m'},
  373. {value: "5m",label: "5m"},
  374. {value: "10m",label: "10m"},
  375. {value: "15m",label: "15m"},
  376. {value: "30m",label: "30m"},
  377. {value: "60m",label: "60m"}
  378. ];
  379. },
  380. classifyProps(){
  381. return {
  382. checkStrictly:(!this.searchParams.isAssociativeSub),
  383. value:'ClassifyId',
  384. label:'ClassifyName',
  385. children:'Children',
  386. emitPath:this.searchParams.isAssociativeSub,
  387. multiple:true
  388. }
  389. }
  390. },
  391. watch:{
  392. classifyArr(value){
  393. if(value && value.length>0){
  394. const classifyIds = [...new Set(value.join(',').split(','))]
  395. this.searchParams.classify=classifyIds.join(',')
  396. }else{
  397. this.searchParams.classify=''
  398. }
  399. },
  400. frequencyArr(value){
  401. if(value && value.length>0){
  402. this.searchParams.frequency=value.join(',')
  403. }else{
  404. this.searchParams.frequency=''
  405. }
  406. },
  407. userArr(value){
  408. if(value && value.length>0){
  409. this.searchParams.user=value.join(',')
  410. }else{
  411. this.searchParams.user=''
  412. }
  413. },
  414. },
  415. methods: {
  416. //添加高频数据
  417. addHighFrequencyDiaShow(){
  418. this.addHighFrequencyShow=true
  419. },
  420. addHighFrequencySuccess(){
  421. this.searchParams.currentPage = 1
  422. this.getTableData()
  423. },
  424. //获取数据源列表
  425. getSourceList(){
  426. this.SourceList=[{Source: 1,SourceName: "同花顺",SourceNameEn: "同花顺"}]
  427. this.Source = this.SourceList[0].Source
  428. },
  429. getSequenceList(){
  430. this.SequenceList=[{Sequence: 1,SequenceName: "高频序列",SequenceNameEn: "高频序列"}]
  431. this.Sequence = this.SequenceList[0].Sequence
  432. },
  433. //数据源改变
  434. handleSourceChange(){
  435. },
  436. // 序列改变
  437. handleSequenceChange(){
  438. },
  439. //获取分类列表
  440. async getClassifyList(){
  441. const res = await highFrequencyDataInterface.classifyListTree()
  442. if(res.Ret!==200) return
  443. this.classifyListTree = res.Data||[]
  444. },
  445. //获取用户列表
  446. getUserList() {
  447. dataAuthInterface.userSearch({
  448. KeyWord: ''
  449. }).then(res => {
  450. if(res.Ret !== 200) return
  451. this.userList = res.Data||[]
  452. })
  453. },
  454. // 获取指标单位
  455. async getUnitList(){
  456. let res=await dataInterence.getTargetUnitList()
  457. if(res.Ret===200){
  458. this.unitList=res.Data&&res.Data.map(item=>{
  459. return {value:item}
  460. })
  461. }
  462. },
  463. //搜索单位
  464. querySearchUnit(queryString, cb){
  465. let results = queryString ? this.unitList.filter(item=>item.value.indexOf(queryString) === 0) : this.unitList;
  466. // 调用 callback 返回建议列表的数据
  467. cb(results);
  468. },
  469. changeAssociativeSub(value){
  470. // 清空
  471. this.classifyArr=[]
  472. this.searchListDelay()
  473. },
  474. searchListDelay(){
  475. setTimeout(()=>{
  476. this.searchList()
  477. },0)
  478. },
  479. //表格筛选项改变时触发
  480. searchList(){
  481. this.searchParams.currentPage = 1
  482. this.getTableData('search')
  483. },
  484. handleCurrentChange(page){
  485. this.searchParams.currentPage = page
  486. this.getTableData()
  487. },
  488. async getTableData(type){
  489. const {frequency,user,classify,keyWord,sortParam,sortType,currentPage,pageSize,isAssociativeSub} = this.searchParams
  490. let params={
  491. ClassifyId:classify,
  492. IncludeChild:isAssociativeSub,
  493. SysAdminId:user,
  494. Frequency:frequency,
  495. Keywords:keyWord,
  496. SortField:sortParam,
  497. SortType:sortType,
  498. PageSize:Number(pageSize) || 1,
  499. CurrentIndex:Number(currentPage)||10
  500. }
  501. // console.log(params,'params');
  502. const res = await highFrequencyDataInterface.getTableDataApi(params)
  503. if(res.Ret!==200) return
  504. const {Paging,List} = res.Data||{}
  505. this.tableData = List||[]
  506. this.total = Paging.Totals||0
  507. if(this.tableData.length>0){
  508. this.tableDataIds = this.tableData.map(it => it.IndexId)
  509. }else{
  510. this.tableDataIds = []
  511. }
  512. if(type==='search'){
  513. //如果是表格筛选项改变导致重新请求数据
  514. //清除所选
  515. this.selectList = []
  516. this.listCheckAllChange(false)
  517. }else{
  518. //若不是,数据获取完成后,查询列表全选的值
  519. //若当页有数据在selectList内,则勾选/剔除
  520. this.adjustSelection()
  521. }
  522. },
  523. //勾选/取消勾选表格项
  524. adjustSelection(){
  525. if(!this.isSelectAll){
  526. this.tableData.map(it =>{
  527. let row = this.selectList.includes(it.IndexId)?it:''
  528. if(row){
  529. this.$nextTick(()=>{
  530. this.$refs.edbDataRef.toggleRowSelection(row,true)
  531. })
  532. }
  533. })
  534. }else{
  535. this.tableData.map(it =>{
  536. let row = this.selectList.includes(it.IndexId)?'':it
  537. if(row){
  538. this.$nextTick(()=>{
  539. this.$refs.edbDataRef.toggleRowSelection(row,true)
  540. })
  541. }
  542. })
  543. }
  544. },
  545. //列表全选改变
  546. listCheckAllChange(value){
  547. this.selectList = []
  548. this.isSelectAll = value
  549. this.$refs.edbDataRef && this.$refs.edbDataRef.clearSelection()
  550. if(value){
  551. this.$refs.edbDataRef && this.$refs.edbDataRef.toggleAllSelection()
  552. }
  553. },
  554. selectionChange(selection){
  555. // selectAllHandle的触发在selectionChange后面,将selectionChange的逻辑延迟一下
  556. setTimeout(()=>{
  557. // 去重
  558. let duplicateArr = Array.from(new Set(this.selectList))
  559. //isSelectAll为true时,selectList表示需要剔除的项
  560. //isSelectAll为false时,selectList表示需要勾选的项
  561. //全选
  562. if((duplicateArr.length == this.total && (!this.isSelectAll))|| (duplicateArr.length == 0 && this.isSelectAll)){
  563. this.isCheckAll = true
  564. this.isIndeterminate=false
  565. //全不选
  566. }else if((duplicateArr.length == 0 && (!this.isSelectAll))|| (duplicateArr.length == this.total && this.isSelectAll)){
  567. this.isCheckAll = false
  568. this.isIndeterminate=false
  569. //半选
  570. }else{
  571. this.isCheckAll = false
  572. this.isIndeterminate=true
  573. }
  574. },1)
  575. },
  576. selectHandle(selection,row){
  577. let check = false;
  578. if(selection.some(it => it.IndexId == row.IndexId)){
  579. // 勾选
  580. if(this.isSelectAll){
  581. check=false
  582. }else{
  583. check=true
  584. }
  585. }else{
  586. // 取消勾选
  587. if(this.isSelectAll){
  588. check=true
  589. }else{
  590. check=false
  591. }
  592. }
  593. if(check){
  594. this.selectList.push(row.IndexId)
  595. }else{
  596. this.selectList=this.selectList.filter(it => it!=row.IndexId)
  597. }
  598. },
  599. selectAllHandle(selection){
  600. let check = false;
  601. if(selection && selection.length>0){
  602. // 全选
  603. if(this.isSelectAll){
  604. check=false
  605. }else{
  606. check=true
  607. }
  608. }else{
  609. // 全不选
  610. if(this.isSelectAll){
  611. check=true
  612. }else{
  613. check=false
  614. }
  615. }
  616. if(check){
  617. this.selectList = [...this.selectList,...this.tableDataIds]
  618. }else{
  619. this.selectList = this.selectList.filter(it => !this.tableDataIds.includes(it))
  620. }
  621. },
  622. handleSortChange({prop,order}){
  623. let propMap = new Map([
  624. ["StartDate",1],
  625. ["EndDate",2],
  626. ["ModifyTime",3],
  627. ["LatestValue",4]
  628. ])
  629. if(order){
  630. this.searchParams.sortParam = propMap.get(prop)
  631. this.searchParams.sortType = order==='ascending'?1:2
  632. }else{
  633. this.searchParams.sortParam = ''
  634. this.searchParams.sortType = ''
  635. }
  636. this.searchList()
  637. },
  638. // 详情
  639. async detailIndexHandle(row){
  640. this.detailRequestParams.IndexId = row.IndexId
  641. this.detailRequestParams.DataDate = ''
  642. await this.getIndexDetailFun()
  643. this.detailDiaShow=true
  644. this.$nextTick(()=>{
  645. this.$refs.detailDataListRef && (this.$refs.detailDataListRef.scrollTop=0)
  646. })
  647. },
  648. async getIndexDetailFun(){
  649. await highFrequencyDataInterface.highFreDataDetail(this.detailRequestParams).then(res=>{
  650. if(res.Ret == 200){
  651. let resData = res.Data||{}
  652. let indexData = resData.Index || {}
  653. this.detailRequestParams.DataDate = resData.DataDate
  654. this.indexDetail={
  655. IndexId:indexData.IndexId,
  656. IndexName:indexData.IndexName,
  657. ZqCode:indexData.StockCode,
  658. ZbCode:indexData.Indicator,
  659. ClassifyId:indexData.ClassifyId,
  660. Unit:indexData.Unit,
  661. Frequency:indexData.Frequency,
  662. DataList:resData.DataList||[]
  663. }
  664. }
  665. })
  666. },
  667. editDataHandle(){
  668. if(!(this.indexDetail.IndexName && this.indexDetail.ClassifyId && this.indexDetail.Unit)){
  669. return this.$message.warning(this.$t('MsgPrompt.please_complete'))
  670. }
  671. let params={
  672. IndexId:this.indexDetail.IndexId,
  673. IndexName:this.indexDetail.IndexName,
  674. ClassifyId:this.indexDetail.ClassifyId,
  675. Unit:this.indexDetail.Unit,
  676. }
  677. highFrequencyDataInterface.highFreDataEdit(params).then(res=>{
  678. if(res.Ret == 200){
  679. this.$message.success(this.$t('MsgPrompt.operate_success_msg'))
  680. this.detailDiaShow=false
  681. this.getTableData()
  682. }
  683. })
  684. },
  685. // 刷新
  686. refreshIndexHandle(row){
  687. highFrequencyDataInterface.highFreDataRefresh({
  688. IndexId:row.IndexId
  689. }).then(res=>{
  690. if(res.Ret!==200) return
  691. this.$message.success(/* "刷新成功" */this.$t('MsgPrompt.refresh_success_msg'))
  692. this.getTableData()
  693. })
  694. },
  695. // 删除
  696. deleteIndexHandle(row){
  697. this.$confirm(this.$t('Edb.MsgPrompt.del_edb_confirm'),this.$t('Dialog.warn_tit'),{
  698. confirmButtonText:/* "确定" */this.$t('Dialog.confirm_btn'),
  699. cancelButtonText:/* "取消" */this.$t('Dialog.cancel_btn'),
  700. type:"warning"
  701. }).then(()=>{
  702. highFrequencyDataInterface.highFreDataDelete({
  703. IndexId:row.IndexId
  704. }).then(res=>{
  705. if(res.Ret!==200) return
  706. this.$message.success(/* "删除成功" */this.$t('MsgPrompt.delete_msg'))
  707. this.selectList=this.selectList.filter(it => it!=row.IndexId)
  708. this.getTableData()
  709. })
  710. }).catch(()=>{})
  711. },
  712. setClassify(){
  713. this.classifySettingShow=true
  714. },
  715. classifyCloseHandle({requestClassifyList,requestDataList}){
  716. if(requestDataList) this.getTableData('search')
  717. if(requestClassifyList) this.getClassifyList()
  718. this.classifySettingShow=false
  719. },
  720. async openBatchOperationDia(){
  721. if(this.selectedTotal>500){
  722. return this.$message.warning(this.$t('HighFrequencyData.batch_operation_limit'))
  723. }
  724. this.batchLoading = true
  725. let flag = await this.getHighFreDataChoiceList()
  726. this.batchLoading = false
  727. this.batchOperationDialogShow=!!flag
  728. },
  729. async getHighFreDataChoiceList(){
  730. let params={
  731. ClassifyId:this.searchParams.classify,
  732. IncludeChild:this.searchParams.isAssociativeSub,
  733. Frequency:this.searchParams.frequency,
  734. SysAdminId:this.searchParams.user,
  735. Keywords:this.searchParams.keyWord,
  736. ListIds:this.selectList.join(','),
  737. SelectAll:this.isSelectAll,
  738. }
  739. return await highFrequencyDataInterface.highFreDataChoice(params).then(res=>{
  740. if(res.Ret == 200){
  741. const choiceList = res.Data || []
  742. this.choiceIdList=choiceList.map(cl=> cl.IndexId)
  743. return true
  744. }else{
  745. return false
  746. }
  747. })
  748. },
  749. batchOperationClose(){
  750. this.batchOperationDialogShow=false
  751. this.batchOperationData={
  752. type:1,
  753. newClassify:0,
  754. refreshType:1
  755. }
  756. },
  757. batchOpeartion(){
  758. if(this.batchOperationData.type==1 && !this.batchOperationData.newClassify) return this.$message.warning(this.$t('HighFrequencyData.select_classify_prompt'))
  759. let params={
  760. IndexIds:this.choiceIdList,
  761. OptType:this.batchOperationData.type,
  762. MoveClassifyId:this.batchOperationData.newClassify,
  763. RefreshType:this.batchOperationData.refreshType
  764. }
  765. highFrequencyDataInterface.highFreDataBatchOperation(params).then(res=>{
  766. if(res.Ret == 200){
  767. if(this.batchOperationData.type==2){
  768. // 批量删除
  769. let deleteFails=res.Data.Fail || []
  770. let deleteSuccess=res.Data.Success || []
  771. if(deleteSuccess.length) this.$message.success(this.$t('MsgPrompt.operate_success_msg'))
  772. if(deleteFails){
  773. let message = '';
  774. deleteFails.forEach(item => {
  775. message+=`${item.IndexName}:${this.$t('HighFrequencyData.indicator_been_referenced_prompt')}</br>`
  776. })
  777. // 和成功提示错开
  778. this.$nextTick(()=>{
  779. this.$message({
  780. dangerouslyUseHTMLString: true,
  781. message,
  782. type: 'error'
  783. })
  784. })
  785. }
  786. // 删除之后 调整选中
  787. this.listCheckAllChange(false)
  788. }else{
  789. this.$message.success(this.$t('MsgPrompt.operate_success_msg'))
  790. }
  791. this.getTableData()
  792. this.batchOperationDialogShow=false
  793. }
  794. })
  795. },
  796. async batchAddToDatabaseOpen(){
  797. if(this.selectedTotal>500){
  798. return this.$message.warning(this.$t('HighFrequencyData.batch_operation_limit'))
  799. }
  800. this.batchLoading = true
  801. let flag = await this.getHighFreDataChoiceList()
  802. this.batchLoading = false
  803. this.batchAddToDatabaseShow=!!flag
  804. }
  805. },
  806. mounted(){
  807. this.getSourceList()
  808. this.getSequenceList()
  809. this.getClassifyList()
  810. this.getUserList()
  811. this.getUnitList()
  812. this.getTableData()
  813. }
  814. }
  815. </script>
  816. <style scoped lang="scss">
  817. .hight-frequency-data-container{
  818. min-height: calc(100vh - 120px);
  819. display: flex;
  820. flex-direction: column;
  821. .top-box{
  822. box-sizing: border-box;
  823. margin-bottom: 16px;
  824. display: flex;
  825. .select-box{
  826. span{
  827. margin-right:10px;
  828. }
  829. .el-select{
  830. margin-right:10px;
  831. width:160px;
  832. }
  833. }
  834. }
  835. .table-box{
  836. flex:1;
  837. .el-select{
  838. min-width:180px;
  839. }
  840. .table-select{
  841. display: flex;
  842. justify-content: space-between;
  843. .select-list{
  844. flex:1;
  845. display: flex;
  846. flex-wrap: wrap;
  847. gap:10px;
  848. .el-select,.el-cascader,.el-input{
  849. max-width: 210px;
  850. }
  851. .associative-box{
  852. display: flex;
  853. align-items: center;
  854. gap: 10px;
  855. color: #333333;
  856. .span-button{
  857. color:#0052D9 ;
  858. cursor: pointer;
  859. }
  860. }
  861. }
  862. .select-other{
  863. margin-left: 10px;
  864. .el-button{
  865. margin-left:10px;
  866. }
  867. }
  868. }
  869. .el-table{
  870. margin:20px 0;
  871. }
  872. .el-pagination{
  873. text-align: right;
  874. background-color: white;
  875. padding: 10px 0;
  876. }
  877. .table-operation-item{
  878. padding: 0 3px;
  879. cursor: pointer;
  880. color: #0052D9;
  881. white-space: nowrap;
  882. }
  883. .del-item{
  884. color: #D54941;
  885. }
  886. }
  887. .custom-dialog{
  888. .dialog-container{
  889. overflow: hidden;
  890. padding: 0 35px;
  891. .detail-date-select-zone{
  892. display:flex;
  893. margin-bottom: 30px;
  894. align-items:center;
  895. span{
  896. margin-right: 20px;
  897. }
  898. .el-input{
  899. width: 240px;
  900. }
  901. }
  902. .detail-data-zone{
  903. display: flex;
  904. flex-direction: column;
  905. justify-content: center;
  906. .detail-data-zone-header{
  907. display: flex;
  908. align-items: center;
  909. justify-content: space-between;
  910. .header-table{
  911. font-size: 14px;
  912. border:solid 1px #C8CDD9;
  913. box-sizing: border-box;
  914. tr{
  915. box-sizing: border-box;
  916. td{
  917. padding: 10px;
  918. width: 270px;
  919. color: #666666;
  920. box-sizing: border-box;
  921. &:first-child{
  922. width: 150px;
  923. text-align: center;
  924. font-weight: bold;
  925. color: #333333;
  926. }
  927. }
  928. }
  929. }
  930. }
  931. .detail-data-list{
  932. height: 260px;
  933. overflow: auto;
  934. margin: 40px auto 30px auto;
  935. .body-table{
  936. border-left: solid 1px #C8CDD9;
  937. border-right: solid 1px #C8CDD9;
  938. tr{
  939. box-sizing: border-box;
  940. td{
  941. min-width: 150px;
  942. text-align: center;
  943. padding: 8px 10px;
  944. color: #666666;
  945. box-sizing: border-box;
  946. &:first-child{
  947. width: 260px;
  948. border-right:solid 1px #C8CDD9;
  949. }
  950. }
  951. }
  952. }
  953. }
  954. }
  955. // 批量操作
  956. .batch-option-row{
  957. margin-bottom: 20px;
  958. .radio-box{
  959. margin-top: 20px;
  960. padding-left: 50px;
  961. .el-radio{
  962. margin-right: 20px;
  963. }
  964. }
  965. }
  966. }
  967. .dialog-btn{
  968. text-align: center;
  969. padding: 40px 0 25px;
  970. .el-button{
  971. min-width: 120px;
  972. }
  973. }
  974. }
  975. }
  976. </style>
  977. <style lang="scss">
  978. .custom-dialog{
  979. .el-input{
  980. width: 100%!important;
  981. }
  982. }
  983. .detail-data-zone-header{
  984. .el-cascader{
  985. width: 100%;
  986. }
  987. .el-autocomplete{
  988. width: 100%;
  989. }
  990. .el-select{
  991. width: 100%;
  992. }
  993. .el-input{
  994. width: 100%;
  995. input{
  996. border: none;
  997. padding: 0;
  998. font-size: 14px;
  999. }
  1000. }
  1001. }
  1002. </style>