123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <div class="icpc-container coal-similarity-container">
- <span
- class="slide-btn-icon"
- :class="{'slide-left':isLeftWrapShow,'slide-right':!isLeftWrapShow}"
- @click="isLeftWrapShow = !isLeftWrapShow"
- >
- <i :class="{'el-icon-d-arrow-left':isLeftWrapShow,'el-icon-d-arrow-right':!isLeftWrapShow}"></i>
- </span>
- <div class="left-cont minHeight" v-show="isLeftWrapShow">
- <div class="left-top">
- <el-button
- style="width: 100%;"
- type="primary"
- plain
- size="medium"
- @click="exportClick"
- :loading="btnload"
- >导出Excel</el-button
- >
- <el-autocomplete
- style="margin-top: 20px; width: 100%"
- prefix-icon="el-icon-search"
- v-model="leftSearchVal"
- :fetch-suggestions="handleLeftSearch"
- :trigger-on-focus="false"
- placeholder="指标名称/指标ID"
- @select="handleSelectLeftSearchval"
- popper-class="el-autocomplete-suggestion-data-entry"
- clearable
- >
- <template slot-scope="scope">
- <div v-if="scope.item.nodata" style="text-align: center">
- 暂无数据
- </div>
- <div v-else>
- {{ scope.item.QuotaName }}
- {{ frequencyType.get(scope.item.Frequency) }}
- </div>
- </template>
- </el-autocomplete>
- </div>
- <ul class="classify-list">
- <li
- :class="['classify-item', { act: select_classify === item.BreedId }]"
- v-for="item in classifyList"
- :key="item.BreedId"
- @click="changeClassify(item)"
- >
- {{ item.BreedName }}
- </li>
- </ul>
- </div>
- <div
- class="right-cont minHeight"
- v-loading="dataloading"
- element-loading-text="获取数据中..."
- >
- <div class="right-box" v-if="rightShow">
- <template v-if="dateArr.length">
- <div class="data-header">
- <lz-table
- :tableOption="tableOption"
- tableType="header"
- ref="table"
- source="lz"
- />
- </div>
- <div class="data-cont">
- <lz-table
- :tableOption="tableOption"
- tableType="data"
- :dateArr="dateArr"
- source="lz"
- />
- </div>
- </template>
- <tableNoData v-else text="暂无数据" class="nodata"></tableNoData>
- </div>
- </div>
- </div>
- </template>
- <script>
- import lzTable from "@/components/lzTable.vue";
- import { lzDataInterface } from "@/api/api.js";
- export default {
- name: "icpcConsumption",
- components: { lzTable },
- data() {
- return {
- isLeftWrapShow:true,
- dataloading: false,
- rightShow: false,
- exportBase: process.env.VUE_APP_API_ROOT + "/datamanage/export/lzList", //数据导出接口
- select_classify: "",
- classifyList: [],
- frequencyType: new Map([
- [1, "日度"],
- [2, "周度"],
- [3, "月度"],
- [4, "季度"],
- [5, "年度"],
- [99, "无固定频率"],
- ]),
- tableOption: [],
- dateArr: [], //最长的日期数组
- btnload: false,
- leftSearchVal: "", //左侧搜索值
- leftSearchTradeCode: "", //如果是搜索选择的 则有此code
- select_quota: "", // 选中的指标名称
- select_Unit: "", // 选中的单位
- select_ModifyTime: "", //选中的更新时间
- select_breed: "", // 选中的分类名称
- };
- },
- computed: {
- exportLzapi() {
- // 数据导出接口
- let urlStr = this.exportBase;
- // token
- urlStr += `?${localStorage.getItem("auth") || ""}`;
- // 指标名称参数
- urlStr += `&QuotaName=${this.select_quota}`;
- // 指标id
- urlStr += `&LzCode=${this.leftSearchTradeCode}`;
- // 分类名称
- urlStr += `&BreedName=${this.select_breed}`;
- // 频度
- urlStr += `&Frequency=${this.select_frequency}`;
- // 单位
- urlStr += `&UnitName=${this.select_Unit}`;
- // 修改时间
- urlStr += `&ModifyTime=${this.select_ModifyTime}`;
- return this.escapeStr(urlStr);
- },
- },
- created() {
- this.getClassify();
- },
- methods: {
- /* 获取分类 */
- getClassify() {
- lzDataInterface.classifyList().then((res) => {
- if (res.Ret !== 200) return;
- this.classifyList = res.Data || [];
- this.select_classify =
- this.select_classify || this.classifyList[0].BreedId;
- this.select_breed = this.classifyList[0].BreedName;
- this.getDataList()
- });
- },
- /* 获取数据 */
- getDataList() {
- this.dataloading = true;
- lzDataInterface.dataList({BreedId: Number(this.select_classify),Frequency:1}).then((res) => {
- this.rightShow = true;
- if (res.Ret !== 200) return;
- // 设置表格数据
- this.setDataList(res.Data);
- this.$nextTick(() => {
- this.initWidth();
- });
- }).finally(()=>{
- this.dataloading = false;
- })
- },
- /* 改变品种 */
- changeClassify(item) {
- this.select_classify = item.BreedId;
- this.select_breed = item.BreedName;
- this.leftSearchVal = ""
- this.leftSearchTradeCode = ""
- this.select_quota = ""
- this.select_Unit = ""
- this.select_ModifyTime = ""
- this.getDataList()
- },
- initWidth() {
- $(".right-box")[0].style.width =
- this.$refs.table ? this.$refs.table.$el.clientWidth + 2 + "px":'0';
- $(".right-box")[0].scrollTop = 0;
- $(".right-box")[0].scrollLeft = 0;
- },
- /* 导出 */
- exportClick() {
- this.btnload = true;
- // TODO: 导出接口对接
- const link = document.createElement("a");
- link.href = this.exportLzapi;
- link.download = "";
- link.click();
- setTimeout(() => {
- this.btnload = false;
- }, 2000);
- },
- //左侧搜索
- async handleLeftSearch(query, cb) {
- cb([]);
- if (!query) return;
- const res = await lzDataInterface.getTargetListByName({
- Keyword: query,
- });
- if (res.Ret === 200) {
- let arr = res.Data || [];
- if (!arr.length) {
- cb([{ nodata: true }]);
- } else {
- cb(arr);
- }
- }
- },
- // 选中左侧搜索值
- handleSelectLeftSearchval(e) {
- if (!e.LzCode) return;
- this.rightShow = false;
- this.leftSearchTradeCode = e.LzCode;
- this.leftSearchVal = e.QuotaName;
- this.select_quota = e.QuotaName;
- this.select_Unit = e.UnitName;
- this.select_ModifyTime = e.ModifyTime;
- this.select_classify = this.classifyList.find(
- (item) => item.BreedName === e.BreedName
- ).BreedId;
- this.select_breed = "";
- this.setDataList([e]);
- this.getDataList()
- this.$nextTick(() => {
- this.rightShow = true;
- this.handleScrollLeftWrap();
- });
- },
- // 左侧滚动
- handleScrollLeftWrap() {
- let top = $(".act")[0].offsetTop;
- $(".classify-list").animate({
- scrollTop: top - 200,
- });
- },
- // 设置表格数据
- setDataList(tableOption) {
- this.tableOption = tableOption;
- /* 不满7个追加7个空的显示一排 别问 问就是为了美观 */
- if (tableOption.length < 7)
- for (let i = 0; i < 7; i++) {
- this.tableOption.push({
- DataList: [],
- });
- if (this.tableOption.length >= 7) break;
- }
- // 合并所有日期
- let arr = tableOption.map((item) => item.DataList);
- let obj = [];
- arr.forEach((dataList) => {
- obj.push(...dataList.map((item) => item.DataTime));
- });
- // 日期去重倒序排序
- this.dateArr = [...new Set(obj)].sort().reverse();
- //数据最大长度小于13个 追加数据满13个 别问 问就是为了美观
- if (this.dateArr.length < 13)
- for (let i = 0; i < 13; i++) {
- this.dateArr.push("");
- if (this.dateArr.length >= 13) break;
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- @import "../css/coalCommon.scss";
- </style>
|