batchAddIndicsDia.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. <template>
  2. <!-- 批量添加至指标库 -->
  3. <el-dialog
  4. :visible.sync="isOpenDialog"
  5. :close-on-click-modal="false"
  6. :modal-append-to-body="false"
  7. top="5vh"
  8. :title="$t('SteelChemicalPage.batch_add_edb_btn')"
  9. @close="$emit('close')"
  10. custom-class="batch-add-edb-dia"
  11. center
  12. width="70%"
  13. v-dialogDrag
  14. >
  15. <div class="dialog-container">
  16. <div class="select-box">
  17. <el-cascader v-model="searchClassify"
  18. :options="classifyList"
  19. :props="{
  20. children:'Children',
  21. label:'ClassifyName',
  22. value:'BaseFromMysteelChemicalClassifyId',
  23. multiple:true,
  24. emitPath:false,
  25. }"
  26. :placeholder="$t('Edb.InputHolderAll.input_classify')"
  27. @change="getEdbList"
  28. ></el-cascader>
  29. <el-input style="width:240px;" v-model="searchName"
  30. :placeholder="$t('Edb.InputHolderAll.input_name_orid')"
  31. prefix-icon="el-icon-search"
  32. @input="getEdbList"
  33. />
  34. </div>
  35. <div class="select-table">
  36. <el-table :data="edbList" border
  37. :row-class-name="tableRowClassName"
  38. @selection-change="handleSelectionChange"
  39. v-loading="tableLoading">
  40. <el-table-column type="selection" width="55" align="center"></el-table-column>
  41. <el-table-column :label="$t('Edb.Detail.e_id')" align="center" width="120" prop="edbId"></el-table-column>
  42. <el-table-column :label="$t('Table.edb_name')" align="center">
  43. <template slot-scope="{row}">
  44. <el-input v-model="row.edbName" :placeholder="$t('Table.edb_name')"></el-input>
  45. </template>
  46. </el-table-column>
  47. <el-table-column :label="$t('Edb.Detail.e_fre')" align="center" width="140">
  48. <template slot-scope="{row}">
  49. <el-select
  50. v-model="row.frequency"
  51. :placeholder="$t('CustomAnalysisPage.select_frequency')"
  52. clearable>
  53. <el-option
  54. v-for="item in frequencyArr"
  55. :key="item.value"
  56. :label="item.label"
  57. :value="item.value">
  58. </el-option>
  59. </el-select>
  60. </template>
  61. </el-table-column>
  62. <el-table-column :label="$t('Edb.Detail.e_unit')" align="center" width="140">
  63. <template slot-scope="{row}">
  64. <selectUnit v-model="row.unit" />
  65. </template>
  66. </el-table-column>
  67. <!-- 操作 -->
  68. <el-table-column align="center">
  69. <template slot="header" slot-scope="{row}">
  70. <!-- <span>{{$t('EtaBasePage.catalogue_directory')}}</span> -->
  71. <el-radio-group v-model="classifyType" @change="handleClassifyTypeChange">
  72. <el-radio :label="1" style="margin-right:5px"><!-- 分目录 -->{{$t('EtaBasePage.subdirectory_radio')}}</el-radio>
  73. <el-radio :label="2"><!-- 同目录 -->{{$t('EtaBasePage.directory_radio')}}</el-radio>
  74. </el-radio-group>
  75. <el-cascader v-if="classifyType===2" v-model="selectClassify"
  76. :options="edbClassifyList"
  77. :props="{
  78. label: 'ClassifyName',
  79. value: 'ClassifyId',
  80. children: 'Children',
  81. checkStrictly: true,
  82. emitPath:false
  83. }"
  84. :placeholder="$t('SteelChemicalPage.batch_add_placeholder')"
  85. >
  86. </el-cascader>
  87. </template>
  88. <template slot-scope="{row,$index}">
  89. <el-cascader
  90. v-model="row.classify"
  91. :options="edbClassifyList"
  92. :props="{
  93. label: 'ClassifyName',
  94. value: 'ClassifyId',
  95. children: 'Children',
  96. checkStrictly: true,
  97. emitPath:false
  98. }"
  99. :placeholder="$t('SteelChemicalPage.batch_add_placeholder')"
  100. style="width:100%;"
  101. :disabled="classifyType===2"
  102. ></el-cascader>
  103. </template>
  104. </el-table-column>
  105. <div class="no-data" slot="empty">
  106. <tableNoData :text="$t('Table.prompt_slogan')"/>
  107. </div>
  108. </el-table>
  109. </div>
  110. </div>
  111. <div class="footer-container" slot="footer">
  112. <el-button type="primary" plain @click="$emit('close')">{{ $t('Dialog.cancel_btn') }}</el-button>
  113. <el-button type="primary" @click="handleAddEdb" :loading="btnloading">{{ $t('ManualEdbListPage.add_tobase_btn') }}</el-button>
  114. </div>
  115. <!-- 操作提示弹窗 -->
  116. <el-dialog
  117. :title="$t('BloombergPage.operation_prompt')"
  118. :visible.sync="isHintDiaShow"
  119. :close-on-click-modal="false"
  120. :modal-append-to-body="false"
  121. @close="handleCloseDia"
  122. width="578px"
  123. v-dialogDrag
  124. center>
  125. <div class="hint-dialog-wrap">
  126. <p style="margin-bottom: 20px;">{{ hintText }}</p>
  127. <ul>
  128. <li v-for="(item,index) in hintList" :key="index" class="hint-item" @click="gotoEdbDetail(item)">
  129. {{ index+1 }}、{{ item.IndexName }}({{ item.IndexCode }})
  130. </li>
  131. </ul>
  132. </div>
  133. <div style="text-align: center;margin-bottom: 30px;">
  134. <el-button type="primary" @click="handleCloseDia">{{$t('Dialog.known')}}</el-button>
  135. </div>
  136. </el-dialog>
  137. </el-dialog>
  138. </template>
  139. <script>
  140. import { steelInterface } from "@/api/modules/thirdBaseApi";
  141. import { dataBaseInterface } from '@/api/api.js';
  142. import selectUnit from '@/components/selectUnit.vue';
  143. import { frequencySelectList } from '@/utils/defaultOptions';
  144. export default {
  145. components:{ selectUnit },
  146. props:{
  147. isOpenDialog:{
  148. type:Boolean,
  149. default:false
  150. }
  151. },
  152. watch:{
  153. isOpenDialog(newval){
  154. if(newval){
  155. this.initDia()
  156. }
  157. }
  158. },
  159. data() {
  160. return {
  161. classifyList:[],//钢联化工数据库的目录
  162. searchName:'',
  163. searchClassify:'',
  164. classifyType:1,//1分目录 2同目录
  165. selectClassify:'',
  166. frequencyArr:frequencySelectList(),
  167. edbList:[
  168. /* {
  169. edbId:'123456',
  170. edbName:'指标名称指标名称',
  171. frequency:'日度',
  172. unit:'吨',
  173. classify:'',
  174. isHighlight:false
  175. }, */
  176. ],
  177. tableLoading:false,
  178. edbClassifyList:[],//指标库目录
  179. selectEdbList:[],//勾选的指标
  180. isHintDiaShow:false,
  181. hintList:[],
  182. hintText:'',
  183. btnloading:false,
  184. };
  185. },
  186. methods: {
  187. tableRowClassName({row}){
  188. return row.isHighlight?'highlight-row':''
  189. },
  190. initDia(){
  191. this.getClassifyList()
  192. this.getClassifyOpt()
  193. this.searchClassify = ''
  194. this.searchName = ''
  195. this.edbList = []
  196. this.selectEdbList = []
  197. this.selectClassify=''
  198. this.btnloading=false
  199. },
  200. //获取钢联化工数据库目录
  201. getClassifyList(){
  202. steelInterface.classifyList().then((res) => {
  203. if(res.Ret!==200) return
  204. this.classifyList = res.Data||[]
  205. })
  206. },
  207. filterNodes(arr) {
  208. arr.length &&
  209. arr.forEach((item) => {
  210. item.Children.length && this.filterNodes(item.Children);
  211. if (!item.Children.length) {
  212. delete item.Children;
  213. }
  214. });
  215. },
  216. // 获取指标分类列表
  217. async getClassifyOpt(){
  218. const res=await dataBaseInterface.menuListV3()
  219. if (res.Ret !== 200) return
  220. this.filterNodes(res.Data.AllNodes||[]);
  221. this.edbClassifyList = res.Data.AllNodes || [];
  222. },
  223. //获取对应目录下的钢联化工指标
  224. getEdbList(){
  225. //每一次筛选项改变清空选择框
  226. this.selectEdbList = []
  227. this.classifyType = 1
  228. //tableData
  229. this.tableLoading = true
  230. steelInterface.searchEdbBatch({
  231. BaseFromMysteelChemicalClassifyIds:Array.isArray(this.searchClassify)?this.searchClassify.join(','):'',
  232. Keyword:this.searchName||''
  233. }).then(res=>{
  234. this.tableLoading = false
  235. if(res.Ret!==200) return
  236. this.edbList = res.Data?res.Data.map(item=>{
  237. return {
  238. edbId:item.IndexCode||'',
  239. edbName:item.IndexName||'',
  240. frequency:item.FrequencyName||'',
  241. unit:item.UnitName||'',
  242. classify:'',
  243. isHighlight:false
  244. }
  245. }):[]
  246. })
  247. },
  248. handleSelectionChange(val){
  249. this.selectEdbList = val
  250. },
  251. handleAddEdb(){
  252. //校验所选指标
  253. if(!this.selectEdbList.length){
  254. return this.$message.warning(this.$t('Edb.InputHolderAll.input_select_edb'))
  255. }
  256. if(this.selectEdbList.length>30){
  257. return this.$message.warning(this.$t('SteelChemicalPage.batch_add_max_msg'))
  258. }
  259. //校验所选指标信息是否完整
  260. if(this.classifyType===2&&!this.selectClassify){
  261. return this.$message.warning(this.$t('CustomAnalysisPage.select_appropriate_category'))
  262. }
  263. //重置tableData的高亮
  264. this.edbList.forEach(i=>i.isHighlight=false)
  265. let messageList = [] //有问题的列表
  266. this.selectEdbList.forEach((item)=>{
  267. item.isHighlight=false
  268. if(!this.checkEdbData(item)){
  269. item.isHighlight = true
  270. messageList.push(item)
  271. }
  272. })
  273. //message轻提示 同时标出不完整的行
  274. if(messageList.length){
  275. return this.$message.warning(/* '部分指标信息未填写完整,请检查' */this.$t('SteelChemicalPage.batch_add_hint1'))
  276. }
  277. this.btnloading = true
  278. //添加检测
  279. steelInterface.batchAddEdbCheck({
  280. IndexCodes:this.selectEdbList.map(i=>i.edbId)
  281. }).then(res=>{
  282. if(res.Ret!==200) return (this.btnloading=false)
  283. const edbList = res.Data||[]
  284. const afterAddList = edbList.filter(i=>i.EdbExist===1) //已添加进指标库的指标
  285. const beforeAddList = edbList.filter(i=>i.EdbExist===0) //需要添加进指标库的指标
  286. //已选择的指标均添加进指标库 弹窗提示
  287. if(!beforeAddList.length){
  288. return this.showHintDialog('all',afterAddList)
  289. }
  290. //剩余指标进行重名校验
  291. this.batchNameCheck(afterAddList,beforeAddList)
  292. })
  293. },
  294. //重名检测
  295. batchNameCheck(afterAddList,beforeAddList){
  296. const indexCodeList = beforeAddList.map(i=>i.IndexCode)
  297. let checkList = []
  298. indexCodeList.forEach(i=>{
  299. const item = this.selectEdbList.find(s=>s.edbId===i)
  300. item&&checkList.push(item)
  301. })
  302. steelInterface.batchCheckEdbName(checkList.map(i=>{
  303. return {
  304. EdbCode:i.edbId,
  305. EdbName:i.edbName,
  306. Frequency:i.frequency
  307. }
  308. })).then(res=>{
  309. if(res.Ret!==200) return (this.btnloading=false)
  310. const checkedList = res.Data.filter(i=>i.Exist)
  311. if(checkedList.length){
  312. checkedList.forEach(i=>{
  313. const item = this.selectEdbList.find(s=>s.edbId===i.EdbCode)
  314. item&&(item.isHighlight = true)
  315. })
  316. return this.$message.warning(/* '部分指标名称已存在,请重新填写' */this.$t('SteelChemicalPage.batch_add_hint2'))&&(this.btnloading=false)
  317. }else{
  318. //通过重名校验后添加进指标库
  319. this.batchAddEdb(afterAddList,checkList)
  320. }
  321. })
  322. },
  323. checkEdbData(edbData){
  324. return edbData.edbName&&edbData.frequency&&edbData.unit&&(this.classifyType===1?edbData.classify:true)
  325. },
  326. //显示操作提示弹窗
  327. showHintDialog(type,list){
  328. this.btnloading = false
  329. this.isHintDiaShow = true
  330. this.hintList = list
  331. this.hintText = type==='all'
  332. ?this.$t('YsDataPage.haved_all_msg') //本次添加的指标均已在指标库中,请勿重复添加!
  333. :this.$t('YsDataPage.haved_some_msg') //指标库中已存在以下指标,会自动过滤!
  334. },
  335. //添加进指标库
  336. batchAddEdb(afterAddList=[],checkList){
  337. //checkList
  338. steelInterface.batchAddToLib(checkList.map(i=>{
  339. return {
  340. EdbCode:i.edbId,
  341. EdbName:i.edbName,
  342. Unit:i.unit,
  343. Frequency:i.frequency,
  344. ClassifyId:this.classifyType===1?Number(i.classify):Number(this.selectClassify),
  345. }
  346. })).then(res=>{
  347. if(res.Ret!==200) return (this.btnloading=false)
  348. //若afterAddList有值 弹窗提示部分指标已加入
  349. if(afterAddList.length){
  350. this.showHintDialog('',afterAddList)
  351. }else{
  352. this.$message.success(this.$t('MsgPrompt.add_msg2'))
  353. this.$emit('close')
  354. }
  355. })
  356. },
  357. //跳转至指标库
  358. gotoEdbDetail(data){
  359. const {EdbClassifyId,EdbInfoId,EdbUniqueCode} = data||{}
  360. const href = this.$router.resolve({
  361. path:'/database',
  362. query:{
  363. code:EdbUniqueCode,
  364. id:EdbInfoId,
  365. classifyId:EdbClassifyId,
  366. }
  367. }).href
  368. window.open(href,"_blank")
  369. },
  370. handleCloseDia(){
  371. //两个弹窗都关掉
  372. this.isHintDiaShow=false
  373. this.$emit('close')
  374. }
  375. },
  376. };
  377. </script>
  378. <style lang="scss">
  379. .batch-add-edb-dia{
  380. .dialog-container{
  381. .el-input{
  382. width:100%;
  383. }
  384. .el-table .highlight-row{
  385. background-color:#fef0f0 !important;
  386. }
  387. }
  388. }
  389. </style>
  390. <style scoped lang="scss">
  391. .batch-add-edb-dia{
  392. .dialog-container{
  393. .select-box{
  394. margin-bottom:20px;
  395. }
  396. .select-table{
  397. max-height:600px;
  398. overflow-y:auto;
  399. }
  400. }
  401. .hint-dialog-wrap{
  402. padding-bottom:30px;
  403. .hint-item{
  404. cursor: pointer;
  405. margin-bottom: 10px;
  406. &:hover{
  407. color:#409EFF;
  408. text-decoration: underline;
  409. }
  410. }
  411. }
  412. }
  413. </style>