123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- <template>
- <div class="lzTarget-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 type="primary" plain size="medium" @click="exportClick" :loading="btnload">导出Excel</el-button> -->
- <el-button
- v-permission="permissionBtn.dataSourcePermission.glData_export"
- style="width: 100%"
- type="primary"
- plain
- size="medium"
- @click="exportClick"
- :loading="btnload"
- >导出Excel</el-button
- >
- <el-autocomplete
- style="margin: 20px 0; 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.IndexName }}
- </div>
- </template>
- </el-autocomplete>
- </div>
- <ul class="classify-list">
- <li
- :class="[
- 'classify-item',
- { act: select_classify === item.BreedShortName },
- ]"
- v-for="item in classifyList"
- :key="item.BreedShortName"
- @click="changeClassify(item.BreedShortName)"
- >
- {{ item.BreedShortName }}
- </li>
- </ul>
- </div>
- <div
- class="right-cont minHeight"
- v-loading="dataloading"
- element-loading-text="获取数据中..."
- >
- <div
- class="right-box"
- v-infinite-scroll="loadNext"
- :infinite-scroll-disabled="!haveMore"
- :infinite-scroll-immediate="false"
- v-if="rightShow"
- >
- <div class="data-header">
- <lz-table
- :tableOption="tableOption"
- tableType="header"
- ref="table"
- source="gl"
- />
- </div>
- <div class="data-cont" v-if="dateArr.length">
- <lz-table
- :tableOption="tableOption"
- tableType="data"
- :dateArr="dateArr"
- source="gl"
- />
- </div>
- <div v-else class="nodata"></div>
- </div>
- <div class="frequency-list" v-if="rightShow">
- <el-button
- type="primary"
- class="frequency-btn"
- :plain="select_frequency !== item.key"
- v-for="item in frequencyList"
- :key="item.key"
- @click="changeFrequency(item.key)"
- >{{ item.key }}</el-button
- >
- </div>
- </div>
- </div>
- </template>
- <script>
- import lzTable from "@/components/lzTable.vue";
- import { glDataInterface } from "@/api/api.js";
- export default {
- name: "",
- components: { lzTable },
- watch: {
- select_classify(newval) {
- if (!this.isAuto) return;
- this.select_frequency = "";
- this.page_no = 1;
- newval && this.getFrequency();
- },
- select_frequency(newval) {
- if (!this.isAuto) return;
- this.page_no = 1;
- newval && this.getDataList();
- },
- },
- data() {
- return {
- isLeftWrapShow:true,
- dataloading: false,
- rightShow: false,
- exportBase: process.env.VUE_APP_API_ROOT + "/datamanage/export/glList", //钢联数据导出接口
- select_classify: "",
- classifyList: [],
- select_frequency: "",
- frequencyList: [],
- tableOption: [],
- dateArr: [], //最长的日期数组
- btnload: false,
- page_size: 20,
- page_no: 1,
- haveMore: false,
- leftSearchVal: "", //左侧搜索值
- leftSearchTradeCode: "", //如果是搜索选择的 则有此code
- select_quota: "", // 选择的指标名
- select_Unit: "", // 选择的单位
- select_UpdateTime: "", // 更新时间
- select_breed: "", //选择的分类名
- isAuto: true, // 改变分类时是否自动获取数据
- };
- },
- methods: {
- /* 获取分类 */
- getClassify() {
- glDataInterface.classifyList().then((res) => {
- if (res.Ret !== 200) return;
- this.classifyList = res.Data || [];
- this.select_classify =
- this.select_classify || this.classifyList[0].BreedShortName;
- this.select_breed = this.select_classify;
- });
- },
- /* 获取频度 */
- getFrequency(defaultSelect) {
- glDataInterface
- .frequencyList({
- BreedShortName: this.select_classify,
- })
- .then((res) => {
- if (res.Ret !== 200) return;
- this.frequencyList = res.Data
- ? res.Data.map((item) => {
- return {
- key: item.Frequency,
- };
- })
- : [];
- //设置当前选中的频度,若传入有默认选项则选中默认频度,否则选中列表第一个
- this.select_frequency =
- defaultSelect || this.frequencyList.length
- ? this.frequencyList[0].key
- : "";
- !this.frequencyList.length && this.nodataDeal();
- //如果有默认频度,结束后恢复watcher
- this.$nextTick(() => {
- if (defaultSelect) this.isAuto = true;
- });
- });
- },
- /* 获取数据 */
- getDataList() {
- this.dataloading = true;
- glDataInterface
- .dataList({
- BreedShortName: this.select_classify,
- Frequency: this.select_frequency,
- PageSize: this.page_size,
- CurrentIndex: this.page_no,
- })
- .then((res) => {
- this.rightShow = true;
- if (res.Ret !== 200) return;
- // 找出最多的页码 判断是否还有数据
- let page_arrs = res.Data.map((item) => item.Paging.Pages);
- let totalPage = Math.max.apply(Math, page_arrs);
- this.haveMore = this.page_no < totalPage ? true : false;
- // 合并数据
- if (this.page_no === 1) {
- this.tableOption = res.Data;
- } else {
- this.tableOption.forEach((item) => {
- res.Data.forEach((_item) => {
- if (item.IndexCode === _item.IndexCode) {
- item.DataList = [...item.DataList, ..._item.DataList];
- }
- });
- });
- }
- // 找出所有指标中数据的日期做多的那个 拆出日期数组 用来遍历表格行 ---错误逻辑
- // 合并所有指标中的日期 作为日期数组
- let arr = res.Data.map((item) => {
- return item.DataList;
- });
- let obj = [];
- for (let i of arr) {
- for (let j of i) {
- obj.push(j.DataTime);
- }
- }
- let arr2 = [...new Set(obj)].sort().reverse();
- let concatArr = [...new Set([...this.dateArr, ...arr2])]
- .sort()
- .reverse();
- this.dateArr = this.page_no === 1 ? arr2 : concatArr;
- /* 不满6个追加6个空的显示一排 别问 问就是为了美观 */
- if (res.Data.length < 7)
- for (let i = 0; i < 7; i++) {
- this.tableOption.push({
- DataList: [],
- });
- if (this.tableOption.length >= 7) break;
- }
- //数据最大长度小于12个 追加数据满12个 别问 问就是为了美观
- if (this.dateArr.length < 12)
- for (let i = 0; i < 12; i++) {
- this.dateArr.push("");
- if (this.dateArr.length >= 12) break;
- }
- this.dataloading = false;
- this.page_no === 1 &&
- this.$nextTick(() => {
- this.initWidth();
- });
- });
- },
- // 获取单个指标数据
- async getTargetDataList(e) {
- this.dataloading = true;
- try {
- const res = await glDataInterface.getTargetDataList({
- IndexCode: this.leftSearchTradeCode,
- });
- this.rightShow = true;
- if (res.Ret !== 200) return;
- // 设置为没有更多数据
- this.haveMore = false;
- // 合并数据
- this.tableOption = [
- {
- DataList: res.Data,
- ...e,
- },
- ];
- // 这里是单个指标所以不用合并日期
- const arr = res.Data.map((item) => item.DataTime);
- this.dateArr = [...new Set(arr)].sort().reverse();
- /* 不满6个追加6个空的显示一排 别问 问就是为了美观 */
- for (let i = 0; i < 7; i++) {
- this.tableOption.push({
- DataList: [],
- });
- if (this.tableOption.length >= 7) break;
- }
- //数据最大长度小于12个 追加数据满12个 别问 问就是为了美观
- if (this.dateArr.length < 12)
- for (let i = 0; i < 12; i++) {
- this.dateArr.push("");
- if (this.dateArr.length >= 12) break;
- }
- this.dataloading = false;
- this.initWidth();
- } catch (err) {
- console.log(err);
- }
- },
- loadNext() {
- this.page_no++;
- this.getDataList();
- },
- /* 改变品种 */
- changeClassify(id) {
- this.select_classify = id;
- this.select_breed = id;
- this.leftSearchVal = "";
- this.leftSearchTradeCode = "";
- this.select_quota = "";
- this.select_Unit = "";
- this.select_UpdateTime = "";
- },
- /* 改变频度 */
- changeFrequency(key) {
- this.select_frequency = key;
- this.leftSearchVal = "";
- },
- initWidth() {
- $(".right-box")[0].style.width =
- this.$refs.table.$el.clientWidth + 5 + "px";
- $(".right-box")[0].scrollTop = 0;
- $(".right-box")[0].scrollLeft = 0;
- },
- /* 无频度的异常显示处理 7*12*/
- nodataDeal() {
- this.tableOption = [];
- this.dateArr = [];
- for (let i = 0; i < 7; i++) {
- this.tableOption.push({
- DataList: [],
- });
- if (this.tableOption.length >= 7) break;
- }
- for (let i = 0; i < 12; i++) {
- this.dateArr.push("");
- if (this.dateArr.length >= 12) break;
- }
- },
- /* 钢联数据导出 */
- exportClick() {
- this.btnload = true;
- // var iframe = document.createElement("iframe")
- // iframe.style.display = "none";
- // iframe.src = this.exportLzapi;
- // document.body.appendChild(iframe);
- const link = document.createElement("a");
- link.href = this.exportGlapi;
- link.download = "";
- link.click();
- console.log({
- QuotaName: this.select_quota,
- IndexCode: this.leftSearchTradeCode,
- BreedName: this.select_breed,
- sendBreedName: this.escapeStr(this.select_breed),
- Frequency: this.select_frequency,
- UnitName: this.select_Unit,
- ModifyTime: this.select_UpdateTime,
- url: this.exportGlapi,
- });
- setTimeout(() => {
- this.btnload = false;
- }, 5000);
- },
- //左侧搜索
- async handleLeftSearch(query, cb) {
- cb([]);
- if (!query) return;
- const res = await glDataInterface.getTargetListByName({
- Keyword: query,
- });
- if (res.Ret === 200) {
- let arr = res.Data || [];
- if (!arr.length) {
- cb([{ nodata: true }]);
- } else {
- cb(arr);
- }
- }
- },
- // 选中左侧搜索值
- handleSelectLeftSearchval(e) {
- if (!e.IndexCode) return;
- this.rightShow = false;
- this.select_frequency = e.FrequencyName;
- this.select_classify = e.BreedShortName;
- this.leftSearchTradeCode = e.IndexCode;
- this.leftSearchVal = e.IndexName;
- this.select_quota = e.IndexName;
- this.select_Unit = e.UnitName;
- this.select_UpdateTime = e.UpdateTime;
- this.select_breed = "";
- // 关闭watcher
- this.isAuto = false;
- this.getFrequency(e.FrequencyName);
- // 获取单独指标数据
- this.getTargetDataList(e);
- // this.getDataList()
- this.$nextTick(() => {
- this.rightShow = true;
- this.handleScrollLeftWrap();
- });
- },
- // 左侧滚动
- handleScrollLeftWrap() {
- let top = $(".act")[0].offsetTop;
- $(".classify-list").animate({
- scrollTop: top - 200,
- });
- },
- // 对[# ;]转义
- escapeStr(str) {
- return str.replace(/#/g, escape("#")).replace(/;/g, escape(";"));
- },
- },
- computed: {
- exportGlapi() {
- // 钢联数据导出接口
- let urlStr = this.exportBase;
- // token
- urlStr += `?${localStorage.getItem("auth") || ""}`;
- // 指标名称参数
- urlStr += `&QuotaName=${this.select_quota}`;
- // 指标id
- urlStr += `&IndexCode=${this.leftSearchTradeCode}`;
- // 分类名称
- urlStr += `&BreedName=${this.select_breed}`;
- // 频度
- urlStr += `&Frequency=${this.select_frequency}`;
- // 单位
- urlStr += `&UnitName=${this.select_Unit}`;
- // 修改时间
- urlStr += `&ModifyTime=${this.select_UpdateTime}`;
- return this.escapeStr(urlStr);
- },
- },
- created() {},
- mounted() {
- this.getClassify();
- },
- };
- </script>
- <style lang="scss" scoped>
- .lzTarget-container {
- display: flex;
- position:relative;
- .slide-btn-icon{
- &.slide-left{
- left:225px;
- }
- &.slide-right{
- left: 0;
- }
- }
- * {
- box-sizing: border-box;
- }
- .minHeight {
- height: calc(100vh - 120px);
- background-color: #fff;
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
- border-radius: 4px;
- }
- div::-webkit-scrollbar {
- width: 5px !important;
- }
- .left-cont {
- min-width: 240px;
- width:240px;
- margin-right: 20px;
- padding: 30px 0;
- overflow: hidden;
- .left-top {
- padding: 0 20px;
- }
- .classify-list {
- padding: 0 20px;
- /* margin-top: 20px; */
- height: calc(100vh - 280px);
- overflow-y: auto;
- .classify-item {
- font-size: 14px;
- color: #666;
- margin-bottom: 20px;
- &:hover {
- cursor: pointer;
- color: #409eff;
- }
- &.act {
- color: #409eff;
- }
- }
- }
- }
- .right-cont {
- flex:1;
- padding: 30px;
- overflow-x: auto;
- .right-box {
- max-width: 100%;
- max-height: calc(100vh - 240px);
- border-left: 1px solid #dcdfe6;
- border-right: 1px solid #dcdfe6;
- overflow: auto;
- .data-header {
- width: 100%;
- position: sticky;
- top: 0;
- z-index: 2;
- }
- .data-cont {
- height: calc(100vh - 444px);
- }
- .nodata {
- height: calc(100vh - 460px);
- border: 1px solid #dcdfe6;
- font-size: 16px;
- color: #999;
- }
- }
- .frequency-list {
- margin-top: 20px;
- display: flex;
- flex-wrap: wrap;
- gap:20px;
- .el-button{
- margin-left: 0 !important;
- }
- .frequency-btn {
- width: 112px;
- }
- }
- }
- }
- </style>
|