lzTable.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <template>
  2. <table width="auto" border="0">
  3. <template v-if="tableType === 'header'">
  4. <tr
  5. v-for="(item, index) in headerArr"
  6. :key="index"
  7. align="center"
  8. class="header"
  9. >
  10. <th>{{ labelArr.get(item) }}</th>
  11. <td v-for="(data, sub_index) in tableOption" :key="sub_index"
  12. :style="{color:item=='IsStop' && data.IsStop?'#F56C6C':'#333333'}">
  13. <template v-if="source!=='baiinfo'">
  14. <template v-if="item=='IsStop'">
  15. {{ refreshStatusMap.get(data[item]) }}
  16. </template>
  17. <template v-else>
  18. {{
  19. (['FrequencyName','Frequency'].includes(item))
  20. ? (source === 'lz')
  21. ? frequencyType.get(data[item])
  22. : frequencyMap.get(data[item])
  23. : data[item]
  24. }}
  25. <span v-if="item==='Opt'&&$route.path==='/steelChemical'&&data['IndexCode'] ">
  26. <el-button type="text" @click.stop="$emit('addToLib',data)"
  27. v-if="!data.EdbInfoId&&permissionBtn.isShowBtn('dataSourcePermission','mysteelData_addEdb')"
  28. >{{$t('ManualEdbListPage.add_tobase_btn')}}</el-button>
  29. </span>
  30. </template>
  31. </template>
  32. <!-- 百川盈孚数据源 频度和单位需要可编辑 -->
  33. <template v-else>
  34. <span>
  35. {{ item==='Frequency'?frequencyMap.get(data[item]):data[item] }}
  36. <span v-if="data['IndexCode']&&(item==='Frequency'||item==='Unit')">
  37. <img
  38. v-permission="permissionBtn.dataSourcePermission.bcyfData_edit"
  39. src="~@/assets/img/set_m/edit.png"
  40. alt="edit"
  41. style="width: 14px; height: 14px; margin-left: 5px;cursor:pointer;"
  42. @click.stop="editTarget(data)"
  43. />
  44. </span>
  45. </span>
  46. </template>
  47. </td>
  48. </tr>
  49. </template>
  50. <template v-else>
  51. <tr
  52. v-for="(date,index) in dateArr"
  53. :key="index"
  54. align="center"
  55. >
  56. <th>{{date}}</th>
  57. <td v-for="(data, sub_index) in tableOption" :key="sub_index">
  58. {{data.DataList && data.DataList.find(item => date === item.DataTime) ?
  59. data.DataList.find(item => date === item.DataTime)[dynamic_key]
  60. : ''}}
  61. </td>
  62. </tr>
  63. </template>
  64. </table>
  65. </template>
  66. <script>
  67. export default {
  68. name: '',
  69. props: {
  70. tableOption: {
  71. type: Array,
  72. },
  73. tableType: {
  74. type: String
  75. },
  76. dateArr: {
  77. type: Array,
  78. },
  79. source: {
  80. type: String,
  81. defalut:'lz'
  82. }
  83. },
  84. computed: {
  85. headerArr(){
  86. let arr=['QuotaName','LzCode','Frequency','UnitName','ModifyTime']
  87. let sourceTypeOne = ['smm','coal','baiinfo','yyzx','icpi','coalWord','ccf']
  88. if(this.source==='gl'){
  89. arr=['IndexName','IndexCode','FrequencyName','UnitName','UpdateTime']
  90. }else if(this.source === 'glhg'){
  91. arr=['IndexName','IndexCode','FrequencyName','UnitName','UpdateTime','IsStop']
  92. if(this.$route.path==='/steelChemical'){
  93. arr.push('Opt')
  94. }
  95. }else if(sourceTypeOne.includes(this.source)){
  96. arr=['IndexName','IndexCode','Frequency','Unit','ModifyTime']
  97. }
  98. return arr
  99. },
  100. labelArr(){
  101. let temMap=new Map([
  102. ['QuotaName', /* '指标名称' */this.$t('Edb.Detail.e_name')],
  103. ['LzCode', /* '指标ID' */this.$t('Edb.Detail.e_id')],
  104. ['Frequency', /* '频度' */this.$t('Edb.Detail.e_fre')],
  105. ['UnitName', /* '单位' */this.$t('Edb.Detail.e_unit')],
  106. ['ModifyTime', /* '更新时间' */this.$t('Edb.Detail.e_update_time')],
  107. ])
  108. let sourceTypeOne = ['smm','coal','baiinfo','yyzx','icpi','coalWord','ccf']
  109. if(this.source==='gl'){
  110. temMap=new Map([
  111. ['IndexName', this.$t('Edb.Detail.e_name')],
  112. ['IndexCode', this.$t('Edb.Detail.e_id')],
  113. ['FrequencyName', this.$t('Edb.Detail.e_fre')],
  114. ['UnitName', this.$t('Edb.Detail.e_unit')],
  115. ['UpdateTime', this.$t('Edb.Detail.e_update_time')]
  116. ])
  117. }else if(this.source === 'glhg'){
  118. temMap=new Map([
  119. ['IndexName', this.$t('Edb.Detail.e_name')],
  120. ['IndexCode', this.$t('Edb.Detail.e_id')],
  121. ['FrequencyName', this.$t('Edb.Detail.e_fre')],
  122. ['UnitName', this.$t('Edb.Detail.e_unit')],
  123. ['UpdateTime', this.$t('Edb.Detail.e_update_time')],
  124. ['IsStop',this.$t('Edb.Detail.e_status')],
  125. ['Opt',this.$t('Table.column_operations')],
  126. ])
  127. }else if(sourceTypeOne.includes(this.source)){
  128. temMap=new Map([
  129. ['IndexName', this.$t('Edb.Detail.e_name')],
  130. ['IndexCode', this.$t('Edb.Detail.e_id')],
  131. ['Frequency', this.$t('Edb.Detail.e_fre')],
  132. ['Unit', this.$t('Edb.Detail.e_unit')],
  133. ['ModifyTime', this.$t('Edb.Detail.e_update_time')],
  134. ])
  135. }
  136. return temMap
  137. },
  138. dynamic_key(){
  139. let key='InputValue'
  140. if(['smm','baiinfo','coal','yyzx','icpi','ccf'].includes(this.source)){
  141. key='Value'
  142. }else if(this.source=='coalWord'){
  143. key='DealValue'
  144. }
  145. return key
  146. },
  147. //隆众原始数据库,返回频度不是string是number,分开写
  148. frequencyType(){
  149. return new Map([
  150. [1, /* 日度 */ this.$t('Edb.FreAll.day')],
  151. [2, /*周度*/ this.$t('Edb.FreAll.week')],
  152. [3, /*月度*/ this.$t('Edb.FreAll.month')],
  153. [4, /*季度*/ this.$t('Edb.FreAll.quarter')],
  154. [5, /*年度*/ this.$t('Edb.FreAll.year')],
  155. [99, /*无固定频率*/ this.$t('Edb.FreAll.unfixed')],
  156. ])
  157. },
  158. //其他数据源
  159. frequencyMap(){
  160. return new Map([
  161. ['日度',this.$t('Edb.FreAll.day')],
  162. ['周度',this.$t('Edb.FreAll.week')],
  163. ['月度',this.$t('Edb.FreAll.month')],
  164. ['旬度',this.$t('Edb.FreAll.dekad')],
  165. ['季度',this.$t('Edb.FreAll.quarter')],
  166. ['半年度',this.$t('Edb.FreAll.half_year')],
  167. ['年度',this.$t('Edb.FreAll.year')]
  168. ])
  169. },
  170. //刷新状态
  171. refreshStatusMap(){
  172. return new Map([
  173. [0,this.$t('SystemManage.DataRefresh.enabled')],
  174. [1,this.$t('SystemManage.DataRefresh.disabled')]
  175. ])
  176. }
  177. },
  178. data() {
  179. return {
  180. // dynamic_key: (this.source === 'smm'||this.source ==='baiinfo')? 'Value'
  181. // :this.source==='coal'?'Value': 'InputValue',
  182. // headerArr: this.source === 'gl'
  183. // ? ['IndexName','IndexCode','FrequencyName','UnitName','UpdateTime']
  184. // : this.source === 'smm'
  185. // ? ['IndexName','IndexCode','Frequency','Unit','ModifyTime']
  186. // : this.source==='coal'
  187. // ? ['IndexName','IndexCode','Frequency','Unit','ModifyTime']
  188. // : this.source==='baiinfo'
  189. // ? ['IndexName','IndexCode','Frequency','Unit','ModifyTime']
  190. // :['QuotaName','LzCode','Frequency','UnitName','ModifyTime'],
  191. /* frequencyType:new Map([
  192. [1,'日度'],
  193. [2,'周度'],
  194. [3,'月度'],
  195. [4,'季度'],
  196. [5,'年度'],
  197. [99,'无固定频率'],
  198. ]), */
  199. // labelArr: this.source === 'gl' ? new Map([
  200. // ['IndexName', '指标名称'],
  201. // ['IndexCode', '指标ID'],
  202. // ['FrequencyName', '频度'],
  203. // ['UnitName', '单位'],
  204. // ['UpdateTime', '更新时间'],
  205. // ]): this.source === 'smm' ? new Map([
  206. // ['IndexName', '指标名称'],
  207. // ['IndexCode', '指标ID'],
  208. // ['Frequency', '频度'],
  209. // ['Unit', '单位'],
  210. // ['ModifyTime', '更新时间'],
  211. // ]) :this.source === 'coal' ? new Map([
  212. // ['IndexName', '指标名称'],
  213. // ['IndexCode', '指标ID'],
  214. // ['Frequency', '频度'],
  215. // ['Unit', '单位'],
  216. // ['ModifyTime', '更新时间'],
  217. // ]) :this.source==='baiinfo'?new Map([
  218. // ['IndexName', '指标名称'],
  219. // ['IndexCode', '指标ID'],
  220. // ['Frequency', '频度'],
  221. // ['Unit', '单位'],
  222. // ['ModifyTime', '更新时间'],
  223. // ]):new Map([
  224. // ['QuotaName', '指标名称'],
  225. // ['LzCode', '指标ID'],
  226. // ['Frequency', '频度'],
  227. // ['UnitName', '单位'],
  228. // ['ModifyTime', '更新时间'],
  229. // ]),
  230. };
  231. },
  232. methods: {
  233. initCss() {
  234. if( this.source !== 'lz') {
  235. $('table').find('td').css({
  236. minWidth: '299px',
  237. maxWidth: '300px'
  238. })
  239. }
  240. },
  241. editTarget(data){
  242. this.$emit('editTarget',data)
  243. }
  244. },
  245. created() {},
  246. updated() {
  247. this.initCss()
  248. },
  249. mounted() {
  250. },
  251. };
  252. </script>
  253. <style lang="scss" scoped>
  254. table {
  255. font-size: 14px;
  256. color: #666;
  257. td,
  258. th {
  259. min-width: 179px;
  260. max-width: 180px;
  261. word-break: break-all;
  262. border: 1px solid #dcdfe6;
  263. height: 40px;
  264. background-color: #fff;
  265. }
  266. td {
  267. &:first-child {
  268. border-left: none;
  269. }
  270. }
  271. th {
  272. position: sticky;
  273. border-right: none;
  274. left: 0;
  275. &:before {
  276. content: " ";
  277. width: 1px;
  278. height: 100%;
  279. position: absolute;
  280. right: 0;
  281. top: 0;
  282. border-right: 1px solid #dcdfe6;
  283. }
  284. }
  285. .header {
  286. th,td {
  287. background-color: #F0F2F5;
  288. }
  289. &:last-child {
  290. th,td {
  291. border-bottom: none;
  292. }
  293. }
  294. }
  295. }
  296. </style>