123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- <template>
- <div class="bloomberg-source-wrap">
- <div class="page-header">
- <div class="header-select-box">
- <!-- 频度 -->
- <el-select v-model="selectOption.frequenceSelect"
- :placeholder="$t('Edb.InputHolderAll.input_fre')"
- @change="selectOptionChange('frequenceSelect')"
- clearable
- style="width:240px">
- <el-option v-for="i in frequencyList" :key="i.label"
- :label="i.label" :value="i.value"
- />
- </el-select>
- <!-- 指标ID/名称 -->
- <el-input
- v-model="selectOption.keywordSelect"
- prefix-icon="el-icon-search"
- :placeholder="$t('Edb.InputHolderAll.input_name_orid')"
- @input="selectOptionChange('keywordSelect')"
- clearable
- style="width:360px"></el-input>
- <!-- 列表全选 -->
- <el-checkbox
- :indeterminate="isIndeterminate"
- v-model="isCheckAll"
- @change="listCheckAllChange">{{ $t('YsDataPage.label_all_check') }}</el-checkbox>
- </div>
- <!-- 添加到指标库 -->
- <el-button v-permission="permissionBtn.dataSourcePermission.Bloomberg_add2edb" :disabled="total===0"
- type="primary" @click="handleCheckDialogShow(false,{})">{{ $t('YsDataPage.add_base_btn') }}</el-button>
- </div>
- <div class="page-table">
- <el-table :data="tableData" border
- ref="edbDataRef"
- @selection-change="selectionChange"
- @select="selectHandle"
- @select-all="selectAllHandle"
- @sort-change="handleSortChange"
- >
- <!-- 多选 -->
- <el-table-column
- align="center"
- type="selection"
- width="55">
- </el-table-column>
- <el-table-column
- v-for="column in tableColumns" :key="column.key"
- :prop="column.key"
- :label="column.label"
- :sortable="column.sortable?column.sortable:false"
- align="center">
- <template slot-scope="{row}">
- <span v-if="column.key==='Frequency'">
- {{ getFrequencyTrans(row.Frequency) }}
- </span>
- <span v-else>{{ row[column.key] }}</span>
- </template>
- </el-table-column>
- <el-table-column :label="$t('Table.column_operations')" align="center">
- <template slot-scope="{row}">
- <el-button type="text" @click="handleCheckDialogShow(true,row)"
- v-if="!row.EdbExist&&permissionBtn.isShowBtn('dataSourcePermission','Bloomberg_add2edb')">{{ $t('YsDataPage.add_base_btn') }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- :current-page="currentPage"
- :page-size="pageSize"
- :total="total"
- @current-change="handleCurrentChange"
- />
- </div>
- <!-- 操作提示弹窗 -->
- <el-dialog
- :title="$t('BloombergPage.operation_prompt')"
- :visible.sync="isHintDialogShow"
- :close-on-click-modal="false"
- :modal-append-to-body="false"
- @close="isHintDialogShow=false"
- width="578px"
- v-dialogDrag
- center>
- <div class="hint-dialog-wrap">
- <p style="margin-bottom: 20px;">{{ hintText }}</p>
- <ul>
- <li v-for="(item,index) in afterAddList" :key="index" class="hint-item" @click="gotoEdbDetail(item)">
- {{ index+1 }}、{{ item.IndexName }}({{ item.IndexCode }})
- </li>
- </ul>
- </div>
- <div style="text-align: center;margin-bottom: 30px;">
- <el-button type="primary" @click="handleCloseDialog">{{$t('Dialog.known')}}</el-button>
- </div>
- </el-dialog>
- <!-- 添加到指标库弹窗 -->
- <el-dialog
- :title="$t('YsDataPage.add_base_btn')"
- :visible.sync="isAddDialogShow"
- :close-on-click-modal="false"
- :modal-append-to-body="false"
- @close="isAddDialogShow=false"
- width="900px"
- top="5vh"
- v-dialogDrag
- center>
- <div class="add-dialog-wrap">
- <el-form :model="addForm" ref="addFormRef">
- <div class="group" v-for="(item,index) in addForm.list" :key="index">
- <div class="item-header">
- <span @click="item.expand=!item.expand">
- {{ item.IndexCode }}
- <i :class="item.expand?'el-icon-arrow-up':'el-icon-arrow-down'"></i>
- </span>
- </div>
- <div class="form-wrap" v-show="item.expand">
- <el-form-item
- :prop="`list[${index}].IndexName`"
- :rules="[
- {required:true,message:$t('Edb.InputHolderAll.input_name'),trigger: 'blur'},
- {validator:edbNameCheck}
- ]">
- <el-input v-model="item.IndexName"></el-input>
- </el-form-item>
- <el-form-item :prop="`list[${index}].Unit`" :rules="{required:true,message:$t('Edb.InputHolderAll.input_unit'),trigger: 'blur'}">
- <el-input v-model="item.Unit"
- :placeholder="$t('Edb.InputHolderAll.input_unit')">
- </el-input>
- </el-form-item>
- <el-form-item :prop="`list[${index}].Frequency`" :rules="{required:true,message:$t('Edb.InputHolderAll.input_fre'),trigger: 'blur'}">
- <el-select v-model="item.Frequency" :placeholder="$t('Edb.InputHolderAll.input_fre')" >
- <el-option v-for="i in frequencyList" :key="i.label"
- :label="i.label" :value="i.value"
- />
- </el-select>
- </el-form-item>
- <el-form-item :prop="`list[${index}].ClassifyId`" :rules="{required:true,message:$t('Edb.InputHolderAll.input_menu'),trigger: 'blur'}">
- <cascader
- v-model="item.ClassifyId"
- :placeholder="$t('Edb.InputHolderAll.input_menu')"
- :options="edbCatalogList"
- :config="{ checkStrictly: true, emitPath: false }"
- />
- </el-form-item>
- </div>
-
- </div>
- </el-form>
- </div>
- <div style="text-align: center;margin-bottom: 30px;">
- <el-button @click="isAddDialogShow=false">{{$t('Dialog.cancel_btn')}}</el-button>
- <el-button type="primary" @click="handleSaveCheck" :loading="btnLoading">{{$t('Dialog.confirm_save_btn')}}</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {bloombergInterface,dataBaseInterface} from '@/api/api.js'
- import { frequencySelectList } from '@/utils/defaultOptions';
- export default {
- data() {
- return {
- selectOption:{
- frequenceSelect:'',
- keywordSelect:'',
- sortParam:'',
- sortType:''
- },
- //frequencyList:['日度','周度','旬度','月度','季度','半年度','年度'],
- tableData:[],
- tableDataIds:[],
- currentPage:1,
- pageSize:10,
- total:2,
- isIndeterminate:false,
- isCheckAll:false,//与isIndeterminate一起表示列表全选的状态
- isSelectAll:false,//是否勾选了列表全选:为true时,selectList是剔除的指标,为false时selectList是已选择的指标
- selectList:[],//已选择/已剔除的指标id
- selectionReactCancel:false,//select-事件触发时,为true;该事件触发完成后,为false;
-
- isHintDialogShow:false,
- afterAddList:[],//已添加进指标库的指标
- beforeAddList:[],//需要添加进指标库的指标
- edbCatalogList:[],//指标库目录数据
- isAddDialogShow:false,
- addForm:{
- list:[
- /* {
- IndexName:'',
- Unit:'',
- Frequency:'',
- ClassifyId:''
- } */
- ]
- },
- checkedList:[],//重名的指标code
- btnLoading:false,
- };
- },
- computed:{
- tableColumns(){
- return [
- {key:'IndexCode',label:this.$t('Edb.Detail.e_id')}, //指标ID
- {key:'IndexName',label:this.$t('Edb.Detail.e_name')},//指标名称
- {key:'Frequency',label:this.$t('Edb.Detail.e_fre')},//频度
- {key:'StartDate',label:this.$t('DataBankPage.table_col_start_time'),sortable:true},//指标开始时间
- {key:'EndDate',label:this.$t('DataBankPage.table_col_newest_time'),sortable:true},//指标最新时间
- {key:'ModifyTime',label:this.$t('Edb.Detail.e_update_time'),sortable:true} //更新时间
- ]
- },
- frequencyList(){
- return frequencySelectList()
- },
- hintText(){
- let key = 0
- if(this.afterAddList.length) key++
- if(!this.beforeAddList.length) key++
- return {
- 0:'',
- 1:this.$t('YsDataPage.haved_all_msg'),//本次添加的指标均已在指标库中,请勿重复添加!
- 2:this.$t('YsDataPage.haved_some_msg'),//指标库中已存在以下指标,会自动过滤!
- }[key]
- }
- },
- methods: {
- getEdbCatalog() {
- dataBaseInterface.menuListV3().then(res => {
- if(res.Ret === 200) {
- this.edbCatalogList = res.Data.AllNodes || [];
- this.filterNodes(this.edbCatalogList);
- }
- })
- },
- // 递归改变目录结构
- filterNodes(arr) {
- arr.length && arr.forEach(item => {
- item.Children.length && this.filterNodes(item.Children)
- if(!item.Children.length) {
- item.Children=null
- }
- })
- },
- getTableData(type){
- const {frequenceSelect,keywordSelect,sortParam,sortType} = this.selectOption
- bloombergInterface.getTableList({
- PageSize:this.pageSize,
- CurrentIndex:this.currentPage,
- Frequency:frequenceSelect,
- Keywords:keywordSelect,
- SortField:sortParam,
- SortRule:sortType
- }).then(res=>{
- if(res.Ret!==200) return
- this.tableData = res.Data.List||[]
- this.total = res.Data.Paging.Totals
- if(this.tableData.length>0){
- this.tableDataIds = this.tableData.map(it => it.IndexCode)
- }else{
- this.tableDataIds = []
- }
- if(type==='optionChange'){
- //如果是表格筛选项改变导致重新请求数据
- //数据获取完成后,列表全选,表格全选
- this.selectList = []
- this.listCheckAllChange(true)
- }else{
- //若不是,数据获取完成后,查询列表全选的值
- //若当页有数据在selectList内,则勾选/剔除
- this.adjustSelection()
- }
- })
-
- },
- handleCurrentChange(page){
- this.currentPage = page
- this.getTableData()
- },
- handleSortChange({prop,order}){
- console.log('prop',prop,'order',order)
- const propMap={
- 'StartDate':1,
- 'EndDate':2,
- 'ModifyTime':3
- }
- this.selectOption.sortParam = order?propMap[prop]||'':''
- this.selectOption.sortType = order?order==='ascending'?1:2:''
- this.selectOptionChange()
- },
- //表格筛选项改变时触发
- selectOptionChange(type){
- //若是取消筛选,则不进行全选
- const optionValue = this.selectOption[type]
- if(!optionValue){
- this.isSelectAll = false
- this.selectList = []
- this.isIndeterminate = false
- this.isCheckAll = false
- }
- this.currentPage = 1
- this.getTableData(optionValue?'optionChange':'')
- },
- //列表全选改变
- listCheckAllChange(value){
- this.selectList = []
- this.isSelectAll = value
- this.$refs.edbDataRef && this.$refs.edbDataRef.clearSelection()
- if(value){
- this.$refs.edbDataRef && this.$refs.edbDataRef.toggleAllSelection()
- }
- },
- selectionChange(){
- if(this.selectionReactCancel) return
- // selectAllHandle的触发在selectionChange后面,将selectionChange的逻辑延迟一下
- setTimeout(()=>{
- // 去重
- let duplicateArr = Array.from(new Set(this.selectList))
- //isSelectAll为true时,selectList表示需要剔除的项
- //isSelectAll为false时,selectList表示需要勾选的项
- //全选
- if((duplicateArr.length == this.total && (!this.isSelectAll))|| (duplicateArr.length == 0 && this.isSelectAll)){
- this.isCheckAll = true
- this.isIndeterminate=false
- //全不选
- }else if((duplicateArr.length == 0 && (!this.isSelectAll))|| (duplicateArr.length == this.total && this.isSelectAll)){
- this.isCheckAll = false
- this.isIndeterminate=false
- //半选
- }else{
- this.isCheckAll = false
- this.isIndeterminate=true
- }
- },1)
- },
- selectHandle(selection,row){
- if(this.selectionReactCancel) return
- let check = false;
- if(selection.some(it => it.IndexCode == row.IndexCode)){
- // 勾选
- if(this.isSelectAll){
- check=false
- }else{
- check=true
- }
- }else{
- // 取消勾选
- if(this.isSelectAll){
- check=true
- }else{
- check=false
- }
- }
- if(check){
- this.selectList.push(row.IndexCode)
- }else{
- this.selectList=this.selectList.filter(it => it!=row.IndexCode)
- }
- },
- selectAllHandle(selection){
- if(this.selectionReactCancel) return
- let check = false;
- if(selection && selection.length>0){
- // 全选
- if(this.isSelectAll){
- check=false
- }else{
- check=true
- }
- }else{
- // 全不选
- if(this.isSelectAll){
- check=true
- }else{
- check=false
- }
- }
- if(check){
- this.selectList = [...this.selectList,...this.tableDataIds]
- }else{
- this.selectList = this.selectList.filter(it => !this.tableDataIds.includes(it))
- }
- },
- adjustSelection(){
- this.selectionReactCancel=true
- if(!this.isSelectAll){
- this.selectList.map(it =>{
- let row = this.tableData.find(da => da.IndexCode==it)
- if(row){
- setTimeout(()=>{
- this.$refs.edbDataRef.toggleRowSelection(row,true)
- },10)
- }
- })
- }else{
- this.$refs.edbDataRef && this.$refs.edbDataRef.clearSelection()
- this.$refs.edbDataRef &&this.$refs.edbDataRef.toggleAllSelection()
- this.selectList.map(it =>{
- let row = this.tableData.find(da => da.IndexCode==it)
- if(row){
- setTimeout(()=>{
- this.$refs.edbDataRef.toggleRowSelection(row,false)
- },50)
- }
- })
- }
- setTimeout(()=>{
- this.selectionReactCancel=false
- },50)
- },
- handleCheckDialogShow(isSingle=false,data={}){
- //check
- const {frequenceSelect,keywordSelect,sortParam,sortType} = this.selectOption
- bloombergInterface.edbAddCheck({
- Frequency:frequenceSelect,
- Keywords:keywordSelect,
- SortField:sortParam||0,
- SortRule:sortType||0,
- ListAll:isSingle?false:this.isSelectAll,
- IndexCodes:isSingle?[data.IndexCode]:this.selectList
- }).then(res=>{
- if(res.Ret!==200) return
- const edbList = res.Data||[]
- this.afterAddList = edbList.filter(i=>i.EdbExist===1)
- this.beforeAddList = edbList.filter(i=>i.EdbExist===0).map(i=>{return{...i,expand:true}})
- this.afterAddList.length&&(this.isHintDialogShow=true)
- !this.afterAddList.length&&this.handleCloseDialog()
- })
- },
- //操作提示弹窗关闭
- handleCloseDialog(){
- this.isHintDialogShow = false
- //判断是否要展示下一个弹窗
- if(this.beforeAddList.length){
- this.addForm.list = this.beforeAddList
- this.isAddDialogShow = true
- }
- },
- //重名校验
- edbNameCheck(rule,value,callback){
- if(this.checkedList.includes(value)){
- callback(this.$t('BloombergPage.add_edb_check_hint2'))
- }else{
- callback()
- }
- },
- //保存前校验
- async handleSaveCheck(){
- //表单校验
- try{
- await this.$refs.addFormRef.validate()
- }catch(e){
- return
- }
- //重名校验
- this.checkedList = []
- bloombergInterface.edbNameCheck(
- this.addForm.list.map(i=>{return{EdbCode:i.IndexCode,EdbName:i.IndexName}})
- ).then(res=>{
- if(res.Ret!==200) return
- this.checkedList = res.Data.filter(i=>i.Exist).map(i=>i.EdbName)
- if(this.checkedList.length){
- this.$refs.addFormRef.validate()
- }else{
- this.saveEdb()
- }
- })
- },
- //批量新增
- saveEdb(){
- this.btnLoading = true
- bloombergInterface.edbBatchAdd(
- this.addForm.list.map(i=>{
- return {
- EdbCode:i.IndexCode,
- EdbName:i.IndexName,
- Frequency:i.Frequency,
- Unit:i.Unit,
- ClassifyId:i.ClassifyId
- }
- })
- ).then(res=>{
- this.btnLoading = false
- if(res.Ret!==200) return
- this.$message.success(this.$t('MsgPrompt.add_msg2'))
- this.isAddDialogShow = false
- this.handleCurrentChange(1)
- })
- },
- //跳转至指标详情
- gotoEdbDetail(data){
- const {EdbClassifyId,EdbInfoId,EdbUniqueCode} = data||{}
- const href = this.$router.resolve({
- path:'/database',
- query:{
- code:EdbUniqueCode,
- id:EdbInfoId,
- classifyId:EdbClassifyId,
- }
- }).href
- window.open(href,"_blank")
- },
- },
- mounted(){
- this.getTableData()
- this.getEdbCatalog()
- },
- };
- </script>
- <style lang="scss">
- .bloomberg-source-wrap{
- .add-dialog-wrap{
- .el-form{
- .group{
- .item-header{
- margin-bottom: 20px;
- }
- .form-wrap{
- display: flex;
- gap:10px;
- .el-input{
- width: 100%;
- }
- }
- }
- }
- }
- }
- </style>
- <style scoped lang="scss">
- .bloomberg-source-wrap{
- min-height: calc(100vh - 120px);
- display: flex;
- flex-direction: column;
- background-color: #fff;
- border:1px solid #C8CDD9;
- border-radius: 4px;
- padding:20px;
- box-sizing: border-box;
- .page-header{
- display: flex;
- justify-content: space-between;
- .header-select-box{
- display: flex;
- gap:20px;
- align-items: center;
- }
- }
- .page-table{
- .el-table{
- margin:20px 0;
- .el-button--text{
- padding:0;
- }
- }
- .el-pagination{
- text-align: right;
- }
- }
- .hint-dialog-wrap{
- padding-bottom:30px;
- .hint-item{
- cursor: pointer;
- margin-bottom: 10px;
- &:hover{
- color:#409EFF;
- text-decoration: underline;
- }
- }
- }
- }
- </style>
|