zzzz
2024-04-18 b46c7394ad29a9ac937b56b2605b347020f68695
src/page/list/tradingList/data.list.vue
@@ -1,16 +1,27 @@
<template>
  <div class="list-data">
    <div class="header-box">
      <div style="min-width: 180px; max-width: 180px">{{ $t("hj313") }}</div>
      <div style="text-align: right; flex: 1; margin-right: 20px">
        {{ $t("hj314") }}
      </div>
      <div style="text-align: right; max-width: 90px; min-width: 90px">
        {{ $t("hj315") }}
      </div>
      <van-row type="flex" align="center" gutter="20">
        <van-col span="8">
          <div>
            {{ $t("hj313") }}
          </div>
        </van-col>
        <van-col span="10">
          <div style="text-align: right">
            {{ $t("hj314") }}
          </div>
        </van-col>
        <van-col span="6">
          <div style="text-align: right">
            {{ $t("hj315") }}
          </div>
        </van-col>
      </van-row>
    </div>
    <van-list
      style="margin-bottom: 50px"
      v-model="loadings"
      :finished="finished"
      :finished-text="$t('hj43')"
@@ -23,48 +34,55 @@
        v-for="(item, index) in listArr"
        :key="item.indexCode"
      >
        <div class="left_title" style="min-width: 180px; max-width: 180px">
          <div class="tp">
            <span class="collection" @click="optionszx(item)">
              <span
                class="shu"
                :class="item.isOption == '1' ? 'shublue' : ''"
              ></span>
            </span>
            <span
              class="title_color"
              style="
                overflow: hidden;
                -webkit-line-clamp: 1;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
              "
              >{{ item.name }}</span
            >
          </div>
          <div class="bt">
            <span>{{ item.spell }}</span>
          </div>
        </div>
        <div class="center_price" style="align-items: center">
          <div class="tp">
            <span class="price_color">{{ item.nowPrice }}</span>
          </div>
          <div class="bt">
            <span>{{ item.addTime }}</span>
          </div>
        </div>
        <div
          class="right_bs"
          style="max-width: 90px; min-width: 90px"
          :class="`${item.hcrate > 0 ? 'green' : 'red'}`"
        >
          <div class="tp">
            <span class="price_color">{{ item.hcrate }}</span>
          </div>
          <div class="bt"></div>
        </div>
        <van-row type="flex" align="center" gutter="20">
          <van-col span="8">
            <div>
              <div class="tp">
                <span class="collection" @click="optionszx(item)">
                  <span
                    class="shu"
                    :class="item.isOption == '1' ? 'shublue' : ''"
                  ></span>
                </span>
                <span
                  class="title_color"
                  style="
                    overflow: hidden;
                    -webkit-line-clamp: 1;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                  "
                  >{{ item.name }}</span
                >
              </div>
              <div class="bt">
                <span>{{ item.spell }}</span>
              </div>
            </div></van-col
          >
          <van-col span="10">
            <div style="text-align: right">
              <div class="tp">
                <span class="price_color">{{ item.nowPrice }}</span>
              </div>
              <div class="bt">
                <span>{{ item.addTime }}</span>
              </div>
            </div>
          </van-col>
          <van-col span="6">
            <div style="text-align: right">
              <div
                class="tp right_bs"
                :class="`${item.color > 0 ? 'green' : 'red'}`"
              >
                <span class="price_color">{{ item.hcrateP }}</span>
              </div>
            </div>
          </van-col>
        </van-row>
      </div>
    </van-list>
  </div>
@@ -83,13 +101,40 @@
      type: String,
      default: "",
    },
    sousuo: {
      type: String,
      default: "",
    },
    tabsList: {
      type: Array,
      default: [],
    },
    zxtabsList: {
      type: Array,
      default: [],
    },
  },
  watch: {
    active(e) {
      console.log(e);
      this.finished = false;
      this.listArr = [];
      this.pageNumVal = 1;
      this.loadings = true;
      this.getStock(e, this.zxactive, 1);
    },
    zxactive(e) {
      console.log(e);
      this.finished = false;
      this.listArr = [];
      this.pageNumVal = 1;
      this.loadings = true;
      this.getStock(this.active, e, 1);
    },
    sousuo(e) {
      this.finished = false;
      this.listArr = [];
      this.pageNumVal = 1;
      this.loadings = true;
      this.getStock(this.active, this.zxactive, 1);
    },
  },
  data() {
@@ -97,35 +142,116 @@
      loadings: false,
      finished: false,
      listArr: [],
      pageNumVal: 1,
      getInterval: null,
    };
  },
  mounted() {
    this.getStock();
    this.listArr = [];
    this.pageNumVal = 1;
    this.getStock(this.active, this.zxactive, 1);
    this.getInterval = setInterval(() => {
      this.getStock(this.active, this.zxactive, 1);
    }, 5000);
  },
  methods: {
    getStock: handleDt.debounce(async function (pageNum) {
      let stockType = "IN";
      let pageNumVal = 1;
    filterSH(val) {
      if (val === "sh") {
        return 1;
      } else if (val === "bj" || val === "sz") {
        return 0;
      }
    },
    // 点击进入详情
    handleGoToKlineDetail1(item) {
      const obj = {
        pid: item.code || "",
        type: item.stock_type || "",
      };
      window.localStorage.setItem("kLine", JSON.stringify(obj));
      // return;
      var codes = item.code;
      var names = item.name;
      var ifZhishu = "0";
      var ifUs =
        item.stock_type === "us" ? "1" : item.stock_type === "hk" ? "2" : "";
      this.$router.push({
        path: "/kline",
        query: {
          name: names,
          code: codes,
          if_us: ifUs,
          if_zhishu: ifZhishu,
          sok: item.type ? item.type : this.filterSH(item.stock_type),
          type: item.stock_type,
        },
      });
    },
    // 获取列表
    getStock: handleDt.debounce(async function (a, b, c) {
      a = this.active;
      let stockType = "";
      if (a !== "") {
        let array = this.tabsList.filter((item) => item.key === a);
        stockType = array[0].name;
      } else {
        let array = this.zxtabsList.filter((item) => item.key === b);
        stockType = array[0].name;
      }
      let pageNumVal = c || this.pageNumVal;
      let opt = {
        pageNum: pageNumVal,
        pageSize: 15,
        pageSize: 100,
        stockPlate: "",
        keyWords: "",
        keyWords: this.sousuo,
        stockType: stockType,
        orderBy: "",
      };
      let data = await api.getStockByType(opt);
      this.loading = false;
      // console.log();
      // api.positionzx;
      let data;
      if (a !== "") {
        data = await api.getStockByType(opt);
      } else {
        // 自选
        data = await api.positionzx(opt);
      }
      if (data.status === 0) {
        if (data.data.list.length < 15) {
          this.finished = true;
        if (pageNumVal !== 1) {
          this.listArr = [...this.listArr, ...data.data.list];
        } else {
          if (this.active) {
            if (this.active === data.data.stockType) {
              this.listArr = data.data.list;
              this.loadings = false;
              this.finished = true;
            }
          } else {
            if (this.zxactive === data.data.stockType) {
              this.listArr = data.data.list;
              this.loadings = false;
              this.finished = true;
            }
          }
        }
        this.listArr = data.data.list;
      } else {
        this.finished = true;
      }
    }, 500),
    onLoads() {},
    onLoads() {
      // this.pageNumVal++;
      // this.loadings = true;
      // this.getStock();
    },
    optionszx() {},
  },
  destroyed() {
    clearInterval(this.getInterval);
    this.getInterval = null;
  },
};
</script>
@@ -133,22 +259,21 @@
<style lang="less" scoped>
.list-data {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  .header-box {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    color: rgb(140, 159, 173);
  }
}
.item {
  // width: 100%;
  margin: 12px 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  // display: flex;
  // justify-content: space-between;
  border-bottom: 1px solid #f0f2f3;
  .right_bs {
    text-align: center;