selectTargetValueDia.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <div v-dialogDrag v-show="isShow" >
  3. <div class="select-target-value-dia el-dialog" >
  4. <div class="header el-dialog__header">
  5. <span>{{$t('OnlineExcelPage.select_criteria_btn')}}</span>
  6. <i class="el-icon-close" @click="cancelHandle"/>
  7. </div>
  8. <div class="main">
  9. <selectTarget
  10. ref="selectRef"
  11. :selectStyleType="3"
  12. @select="chooseEdb"
  13. />
  14. <ul class="data-cont">
  15. <template v-if="result.List&&result.List.length">
  16. <li
  17. v-for="(item,index) in result.List"
  18. :key="index"
  19. :class="[{'choose': item.DataTime===chooseItem.date || (!chooseItem.date&&index===0)},'data-li']"
  20. >
  21. <span>{{item.DataTime}}</span>
  22. <span style="min-width:150px">{{item.Value}}</span>
  23. </li>
  24. </template>
  25. <tableNoData size="mini" v-else/>
  26. </ul>
  27. <div class="dia-bot">
  28. <el-button type="primary" style="margin-right: 20px" @click="insertData"
  29. >{{$t('OnlineExcelPage.insert_value_btn')}}</el-button
  30. >
  31. <el-button type="primary" plain @click="cancelHandle">{{$t('ETable.Btn.cancel_btn')}}</el-button>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. </template>
  37. <script>
  38. import * as sheetInterface from "@/api/modules/sheetApi.js";
  39. import selectTarget from '@/views/chartRelevance_manage/components/selectTarget.vue';
  40. import { resetDialogCellStyle } from "../common/customTable";
  41. export default {
  42. props: {
  43. isShow: {
  44. type: Boolean,
  45. }
  46. },
  47. components: { selectTarget },
  48. data() {
  49. return {
  50. result: {},
  51. edbInfo: null,
  52. chooseItem: {
  53. edbId: 0,
  54. value:''
  55. }
  56. }
  57. },
  58. methods:{
  59. /* 选择指标和日期获取近5期数据 */
  60. async chooseEdb(edb) {
  61. if(!edb){
  62. this.initData();
  63. return
  64. }
  65. this.edbInfo = edb;
  66. let Date = this.$parent.selectCell.DataType === 1 ? this.$parent.selectCell.ShowValue : ''
  67. const res = await sheetInterface.getDateLatelyData({
  68. EdbInfoId: edb.EdbInfoId,
  69. Date
  70. })
  71. if(res.Ret !== 200) return
  72. this.result = res.Data;
  73. // if(!this.result.Date && Date) return this.$message.warning('所选指标所选日期无值')
  74. let value = (this.result.List&&this.result.List.length)
  75. ? (this.result.List.find(_ => _.DataTime===Date) ? this.result.List.find(_ => _.DataTime===Date).Value.toString() : this.result.List[0].Value.toString())
  76. : ''
  77. this.chooseItem = {
  78. date: Date,
  79. edbId: edb.EdbInfoId,
  80. value
  81. }
  82. console.log( this.chooseItem)
  83. },
  84. insertData() {
  85. // if(this.$parent.selectCell.DataType !== 1){
  86. // this.$message.warning('请在表格中选择日期')
  87. // return
  88. // }
  89. if(!this.chooseItem.value) return this.$message.warning(this.$t('OnlineExcelPage.there_data_no_msg') )
  90. this.$emit('insert',this.chooseItem)
  91. this.cancelHandle();
  92. },
  93. initData() {
  94. this.$refs.selectRef.search_txt='';
  95. this.result = {};
  96. this.edbInfo=null;
  97. this.chooseItem = { edbId: 0,value: '',date: '' }
  98. },
  99. cancelHandle() {
  100. this.initData();
  101. this.$emit('update:isShow',false);
  102. resetDialogCellStyle();
  103. }
  104. },
  105. }
  106. </script>
  107. <style scoped lang='scss'>
  108. @import "~@/styles/theme-vars.scss";
  109. .select-target-value-dia {
  110. background: #fff;
  111. position: fixed;
  112. top: 20%;
  113. left: 55%;
  114. width: 500px;
  115. border-radius: 2px;
  116. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  117. z-index: 9999;
  118. .header {
  119. height: 50px;
  120. font-size: 16px;
  121. background: $theme-color;
  122. color: #fff;
  123. padding: 0 15px;
  124. display: flex;
  125. align-content: center;
  126. justify-content: space-between;
  127. span {
  128. line-height: 50px;
  129. }
  130. .el-icon-close {
  131. font-size: 20px;
  132. line-height: 50px;
  133. cursor: pointer;
  134. }
  135. }
  136. .main {
  137. padding: 20px 15px;
  138. .data-cont {
  139. margin: 15px 0;
  140. border: 1px solid #DCDFE6;
  141. /* padding: 20px; */
  142. .data-li {
  143. display: flex;
  144. padding: 15px;
  145. text-align: center;
  146. justify-content: space-around;
  147. &.choose {
  148. background: #ECF5FF;
  149. }
  150. }
  151. }
  152. .dia-bot {
  153. margin-top: 20px;
  154. display: flex;
  155. justify-content: center;
  156. }
  157. }
  158. }
  159. </style>