12.4 概念模块功能完善

This commit is contained in:
尚政杰
2025-12-04 17:41:33 +08:00
parent 4e64455b9b
commit 44842120da
5090 changed files with 9843 additions and 146120 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,24 @@
<template>
<view>
<navBar leftText="历史时间轴" :hideNavBg="true"></navBar>
<image class="topBg absolute" src="/static/image/index/conceptTopBg.png" mode="widthFix"></image>
</view>
</template>
<script >
</script>
<style lang="less">
page
{
background-color: #070707;
}
.topBg
{
top: 0;
left: 0;
width: 100%;
height: auto;
}
</style>

View File

@@ -0,0 +1,629 @@
<template>
<view>
<navBar leftText="历史时间轴" :hideNavBg="true"></navBar>
<image class="topBg absolute" src="/static/image/index/conceptTopBg.png" mode="widthFix"></image>
<view class="timelineTitle fixed" :style="'top: '+navH+'px;'">{{conceptName}}- 历史时间轴</view>
<view class="dateStatisticsC fixed" :style="'top: '+contentTop+'px;'">
<view class="dateC">
<view class="yearMonthC flex">
<view class="btn" @click="clickPreMonth()">
<image class="icon" src="/static/icon/home/conceptCenter/pre.png" mode="widthFix"></image>
</view>
<view class="yearMonth flex1">
<picker mode="date" fields="month" @change="monthChange">
{{selectMonth}}
</picker>
</view>
<view class="btn" @click="clickNextMonth()">
<image class="icon" src="/static/icon/home/conceptCenter/next.png" mode="widthFix"></image>
</view>
</view>
<view class="weekList flex">
<view class="item flex1" v-for="(item,index) in weekList" :key="index">{{item}}</view>
</view>
<view class="monthDateList flexWrap">
<view class="item flexColumnCenter" v-for="(item,index) in monthDateList[selectMonthIndex]" :key="index" @click="clickSelectDate(item)">
<block v-if="item.date==selectDateStr">
<view :class="'date select '+(item.avg_change_pct?(getRateUpOrDown(item.avg_change_pct)?'down':'up'):'')">
{{item.day}}
<view v-if="item.avg_change_pct" class="chg">{{getChgRateStr(item.avg_change_pct)}}%</view>
</view>
</block>
<block v-else>
<block v-if="!item.isCurrentMonth">
<view class="date notCurrentMonth">{{item.day}}</view>
</block>
<block v-else>
<view :class="'date '+(item.avg_change_pct?(getRateUpOrDown(item.avg_change_pct)?'down':'up'):'')">
{{item.day}}
<view v-if="item.avg_change_pct" :class="'chg '+(getRateUpOrDown(item.avg_change_pct)?'down':'up')">{{getChgRateStr(item.avg_change_pct)}}%</view>
</view>
</block>
</block>
</view>
</view>
</view>
<view class="statisticsC">
<view class="date">{{selectDateStr}}统计</view>
<view v-if="chgStockData&&chgStockData.avg_change_pct" class="chgStockNumC flex">
<view class="chgC flex flex1">
<view class="title">涨跌幅</view>
<image v-if="getRateUpOrDown(chgStockData.avg_change_pct)" class="icon" src="/static/icon/home/conceptCenter/chgDown.png" mode="widthFix"></image>
<image v-else class="icon" src="/static/icon/home/conceptCenter/chgUp.png" mode="widthFix"></image>
<view :class="'chg '+(getRateUpOrDown(chgStockData.avg_change_pct)?'down':'up')">{{getChgRateStr(chgStockData.avg_change_pct)}}%</view>
</view>
<view class="stockNumC flex flex1">
<view class="title">统计股票</view>
<view class="stockNum">{{chgStockData.stock_count}} 只股票</view>
</view>
</view>
<view class="newsReportC flex">
<image class="icon" src="/static/icon/home/conceptCenter/newsReport.png" mode="widthFix"></image>
<text class="news">{{newsList.length}} 条新闻 · </text>
<text class="report" decode>&nbsp{{reportList.length}} 份研报</text>
</view>
<view class="list">
<view class="item" v-for="(item,index) in newsList" :key="index">
<view class="flex">
<view class="type news">新闻</view>
<view class="title flex1">{{item.title}}</view>
</view>
<view class="content">{{item.detail}}</view>
</view>
<view class="item" v-for="(item,index) in reportList" :key="index">
<view class="flex">
<view class="type report">研报</view>
<view class="title flex1">{{item.report_title}}</view>
</view>
<view class="content">坚定看好锂电材料建议继续加配坚定六氟添加剂关注隔膜更加坚定的看好六氟下游传导如期</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import { inject } from 'vue';
import { conceptNews, conceptReport, priceTimeline } from '@/request/api';
import { getChgRateStr, getRateUpOrDown } from '@/utils/util';
export default {
data() {
return {
navH:inject('navHeight'),
contentTop:'',
conceptId:'', //概念id
conceptName:'',
weekList:['一','二','三','四','五','六','日'],
monthDateList:[],
selectMonthIndex:0, //选中月份下标
selectMonth:'', //选中年月
selectDateStr:'', //选中日期
startDateStr:'', //开始日期
endDateStr:'', //结束日期
chgStockData:null, //涨跌幅和股票数据
newsList:[], //新闻数据
reportList:[], //研报数据
getRateUpOrDown:getRateUpOrDown,
getChgRateStr:getChgRateStr,
}
},
onLoad(e) {
this.contentTop = this.navH + 70/750*inject('windowWidth')
let currentDate = new Date();
// 获取当前年份
let currentYear = currentDate.getFullYear();
let currentMonth = currentDate.getMonth()+1;
let currentDay = currentDate.getDate();
this.selectMonthIndex = 20*12+currentMonth-1
this.selectMonth = currentYear+'年'+currentMonth+'月'
//开始日期默认为当前月份第一天
this.startDateStr = currentYear+'-'+currentMonth+'-'+'01'
//结束日期默认为当前日期
this.endDateStr = this.selectDateStr = currentYear+'-'+currentMonth+'-'+(currentDay>9?currentDay:('0'+currentDay))
// this.getYesterdayDateData()
this.generateMonthDateListData()
if (e.id) {
this.conceptId = e.id
this.getTimelineData()
}
},
methods: {
/**
* 获取当前时间前一天的数据
*/
getYesterdayDateData()
{
let currentDate = new Date();
let selectDate = new Date(currentDate)
selectDate.setDate(selectDate.getDate()-1)
let selectYear = selectDate.getFullYear();
let selectMonth = selectDate.getMonth()+1;
let selectDay = selectDate.getDate();
this.selectDateStr = selectYear+'-'+(selectMonth>9?selectMonth:('0'+selectMonth))+'-'+(selectDay>9?selectDay:('0'+selectDay))
},
/**
* 生成日期数组
*/
generateMonthDateListData()
{
let currentDate = new Date();
// 获取当前年份
let currentYear = currentDate.getFullYear();
let currentMonth = currentDate.getMonth()+1;
let currentDay = currentDate.getDate();
let monthDateList = []
for (var i = currentYear-20; i < currentYear+20; i++) {
for (var j = 0; j < 12; j++) {
let date = new Date(i,j+1,0)
let firstDayOfMonth = new Date(i,j+1,0);
firstDayOfMonth.setDate(1);
//获取当前月天数
let currentMonthDay = date.getDate()
let firstDayWeek = firstDayOfMonth.getDay() || 7
let daysOfMonth = []
for (var k = 1; k <= currentMonthDay; k++) {
let newDate = new Date(i,j+1,0)
newDate.setDate(k); // 设置日期为当前月的相应日期
let newMonth = newDate.getMonth()+1
let newDay = newDate.getDate()
let time = newDate.getTime()
let date = i+'-'+(newMonth>9?newMonth:('0'+newMonth))+'-'+(newDay>9?newDay:('0'+newDay))
daysOfMonth.push({date:date,year:i,month:newMonth,day:newDay,isToday:(i==currentYear&&newMonth==currentMonth&&newDay==currentDay)?true:false,isCurrentMonth:true,isLastDay:newDay==currentMonthDay?true:false,timestamp:time});
}
for (var k = 0; k < firstDayWeek-1; k++) {
//获取上月天数
let year = i
let month = j
if(j<1)
{
year = i - 1
month = 12
}
let lastMonthDay = new Date(year, month, 0).getDate()
//获取上月日期
let newDate = new Date(year,month-1,lastMonthDay-k)
let newMonth = newDate.getMonth()+1
let newDay = newDate.getDate()
let time = newDate.getTime()
let date = year+'-'+(newMonth>9?newMonth:('0'+newMonth))+'-'+(newDay>9?newDay:('0'+newDay))
daysOfMonth.unshift({date:date,year:year,month:newMonth,day:newDay,isToday:false,isCurrentMonth:false,isLastDay:false,timestamp:time});
}
// 下一个月的第一天
let nextMonthFirstDay = new Date(i, j+1, 1);
// 然后减去一天就是当前月的最后一天
let lastDayOfMonth = new Date(nextMonthFirstDay - (24 * 60 * 60 * 1000)); // 减去一天的毫秒数
let lastDayWeek = lastDayOfMonth.getDay() || 7; // 返回0星期天到6星期六
for (var k = 1; k < 8-lastDayWeek; k++) {
let year = i
let month = j
if(month>11)
{
month = 0
year ++
}
//获取下月日期
let newDate = new Date(year,month + 1,k)
let newMonth = newDate.getMonth()+1
let newDay = newDate.getDate()
let time = newDate.getTime()
let date = year+'-'+(newMonth>9?newMonth:('0'+newMonth))+'-'+(newDay>9?newDay:('0'+newDay))
daysOfMonth.push({date:date,year:year,month:newMonth,day:newDay,isToday:false,isCurrentMonth:false,isLastDay:false,timestamp:time});
}
monthDateList.push(daysOfMonth)
}
}
this.monthDateList = monthDateList
},
/**
* 点击上个月
*/
clickPreMonth()
{
if(this.selectMonthIndex>0)
{
this.selectMonthIndex --
let monthList = this.monthDateList[this.selectMonthIndex]
let year = ''
let month = ''
for (let item of monthList) {
if(item.isCurrentMonth)
{
year = item.year
month = item.month
break
}
}
let lastDay = ''
for (let item of monthList) {
if(item.isLastDay)
{
lastDay = item.day
break
}
}
this.selectMonth = year+'年'+month+'月'
this.startDateStr = year+'-'+(month>9?month:('0'+month))+'-'+'01'
this.endDateStr = year+'-'+(month>9?month:('0'+month))+'-'+lastDay
this.getTimelineData()
}
},
/**
* 点击下个月
*/
clickNextMonth()
{
if(this.selectMonthIndex<this.monthDateList.length-1)
{
this.selectMonthIndex ++
let monthList = this.monthDateList[this.selectMonthIndex]
let year = ''
let month = ''
for (let item of monthList) {
if(item.isCurrentMonth)
{
year = item.year
month = item.month
break
}
}
let lastDay = ''
for (let item of monthList) {
if(item.isLastDay)
{
lastDay = item.day
break
}
}
this.selectMonth = year+''+month+''
this.startDateStr = year+'-'+(month>9?month:('0'+month))+'-'+'01'
this.endDateStr = year+'-'+(month>9?month:('0'+month))+'-'+lastDay
this.getTimelineData()
}
},
monthChange(e)
{
let currentDate = new Date();
//当前年份
let currentYear = currentDate.getFullYear()
//选中年月
let yearMonth = e.detail.value
let selectYear = parseInt(yearMonth.split('-')[0])
let selectMonth = parseInt(yearMonth.split('-')[1])
this.selectMonthIndex = (selectYear - (currentYear - 20))*12+selectMonth-1
this.selectMonth = selectYear+'年'+selectMonth+'月'
this.startDateStr = selectYear+'-'+(selectMonth>9?selectMonth:('0'+selectMonth))+'-'+'01'
let lastDayOfMonth = new Date(selectYear, selectMonth, 0);
this.endDateStr = selectYear+'-'+(selectMonth>9?selectMonth:('0'+selectMonth))+'-'+lastDayOfMonth.getDate()
this.getTimelineData()
},
/**
* 点击选择开始日期和结束日期
* @param {Object} item
*/
clickSelectDate(item)
{
if (this.selectDateStr!=item.date){
this.selectDateStr = item.date
this.chgStockData = item
this.getNewsData()
this.getReportData()
}
},
/**
* 获取时间序列数据
*/
getTimelineData()
{
let param = {start_date:this.startDateStr,end_date:this.endDateStr}
priceTimeline(this.conceptId,param).then(res=>{
if(res.timeseries)
{
this.conceptName = res.concept_name
let timeseries = res.timeseries
let monthList = this.monthDateList[this.selectMonthIndex]
for (let item of monthList) {
for (let item1 of timeseries) {
if (item.date==item1.trade_date) {
item.avg_change_pct = item1.avg_change_pct
item.stock_count = item1.stock_count
if(item.date==this.selectDateStr){
this.chgStockData = item
}
}
}
}
this.getNewsData()
this.getReportData()
}
}).catch(error=>{
})
},
/**
* 获取新闻数据
*/
getNewsData()
{
let param = {query:this.conceptName,end_date:this.selectDateStr,exact_match:1,top_k:100}
conceptNews(param).then(res=>{
this.newsList = res
}).catch(error=>{
})
},
/**
* 获取时间序列数据
*/
getReportData()
{
let param = {query:this.conceptName,start_date:this.selectDateStr,mode:'text',exact_match:1}
conceptReport(param).then(res=>{
this.reportList = res.data.results
}).catch(error=>{
})
}
}
}
</script>
<style lang="less">
page
{
background-color: #070707;
}
.topBg
{
top: 0;
left: 0;
width: 100%;
height: auto;
}
.timelineTitle
{
background-color: #FFF9F5;
left: 0;
right: 0;
margin: 0 25rpx;
padding: 30rpx 27rpx 0;
border-radius: 10rpx 10rpx 0 0;
font-size: 28rpx;
font-weight: bold;
color: #2B2B2B;
}
.dateStatisticsC
{
background-color: #FFF9F5;
left: 0;
right: 0;
bottom: 86rpx;
margin: 0 25rpx;
padding: 24rpx 25rpx 0;
border-radius: 0 0 10rpx 10rpx;
overflow-y: scroll;
.dateC
{
background-color: white;
box-shadow: 0 5rpx 10rpx 0 rgba(127,127,127,0.1);
border-radius: 10rpx;
padding: 30rpx 25rpx 0;
.yearMonthC
{
background-color: #F7F7F7;
height: 70rpx;
border-radius: 35rpx;
.btn
{
padding: 0 52rpx;
.icon
{
width: 13rpx;
height: auto;
}
}
.yearMonth
{
font-size: 32rpx;
font-weight: 500;
color: #070707;
text-align: center;
}
}
.weekList
{
.item
{
margin-right: 13rpx;
line-height: 72rpx;
font-size: 26rpx;
font-weight: 500;
color: #A7A7A7;
text-align: center;
}
}
.monthDateList
{
.item
{
margin-bottom: 12rpx;
width: calc(100%/7);
.date
{
background-color: #f8f8f8;
padding: 4rpx 0;
width: calc(100% - 10rpx);
height: 72rpx;
border-radius: 10rpx;
font-size: 26rpx;
font-weight: bold;
color: #2A2A2A;
text-align: center;
.chg
{
font-size: 18rpx;
}
.chg.up
{
color: #EC3440;
}
.chg.down
{
color: #38A169;
}
}
.date.up
{
background-color: #FFD6D9;
}
.date.down
{
background-color: #CEF1DE;
}
.date.select.up
{
background-color: #EC3440;
color: white;
.chg
{
color: white;
}
}
.date.select.down
{
background-color: #38A169;
color: white;
.chg
{
color: white;
}
}
.date.notCurrentMonth
{
background-color: #FCFCFC;
color: #999;
}
}
}
}
.statisticsC
{
background-color: white;
margin-top: 20rpx;
padding: 28rpx 20rpx 0;
border-radius: 10rpx;
.date
{
font-size: 30rpx;
font-weight: 500;
text-align: center;
}
.chgStockNumC
{
margin-top: 36rpx;
padding: 0 13rpx 28rpx;
border-bottom: solid 1rpx #EDEDED;
font-size: 26rpx;
.title
{
margin-right: 18rpx;
font-weight: 500;
color: #94979C;
}
.chgC
{
.icon
{
margin-right: 9rpx;
width: 17rpx;
height: auto;
}
.chg
{
font-weight: bold;
}
.chg.up
{
color: #EC3440;
}
.chg.down
{
color: #38A169;
}
}
.stockNum
{
font-weight: bold;
color: #070707;
}
}
.newsReportC
{
padding-top: 20rpx;
font-size: 28rpx;
font-weight: bold;
.icon
{
margin-right: 20rpx;
width: 24rpx;
height: auto;
}
.news
{
color: #FF7723;
}
.report
{
color: #333;
}
}
.list
{
.item
{
padding: 30rpx 0;
border-bottom: solid 1rpx #EDEDED;
.type
{
margin-right: 18rpx;
padding: 0 9rpx;
line-height: 40rpx;
border-radius: 5rpx;
font-size: 22rpx;
font-weight: 500;
}
.type.news
{
background-color: #F2C367;
color: #070707;
}
.type.report
{
background-color: #3D3F3C;
color: #F2C367;
}
.title
{
font-size: 26rpx;
font-weight: bold;
color: #070707;
}
.content
{
margin-top: 20rpx;
font-size: 24rpx;
font-weight: 500;
color: #333;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
}
</style>

View File

@@ -0,0 +1,614 @@
<template>
<view>
<navBar leftText="热门个股" :hideNavBg="true"></navBar>
<image class="topBg absolute" src="/static/image/index/conceptTopBg.png" mode="widthFix"></image>
<view class="titleScreenC fixed flex" :style="'top:'+navH+'px;'">
<view class="title flex1">{{conceptName}} - 相关个股</view>
<view class="screenC flex" @click="clickDateScreen()">
<view>时间筛选</view>
<image class="arrow" src="/static/icon/home/conceptCenter/timeScreenArrow.png" mode="widthFix"></image>
</view>
</view>
<scroll-view direction="vertical" class="stockList fixed" :style="'top:'+listTop+'px;'">
<view class="list">
<view class="item" v-for="(item,index) in stockList" :key="index">
<view class="stockInfoC flex" @click="clickExpandOrRetract(index)">
<view class="titleCodeC">
<view class="title">{{item.stock_name}}</view>
<view class="code">{{item.stock_code}}</view>
</view>
<view class="chg flex1">+4.04%</view>
<view class="industry flex1">食品行业</view>
<view class="reasonProjectC flex">
<view>REASON/项目</view>
<image v-if="item.isExpand" class="arrow expand" src="/static/icon/home/conceptCenter/reasonExpand.png" mode="widthFix"></image>
<image v-else class="arrow" src="/static/icon/home/conceptCenter/reasonRetract.png" mode="widthFix"></image>
</view>
</view>
<view v-if="item.isExpand" class="reasonProjectContentC">
<view class="reasonC">
<text class="title">REASON</text>
<text>{{item.reason}}</text>
</view>
<view class="projectC">
<text class="title">项目</text>
<text>已进入芥末味夏威夷果仁/黑金蒜香茉莉翡翠豆两款产品</text>
</view>
</view>
</view>
</view>
</scroll-view>
<uni-popup ref="datePopup" type="bottom" :safeArea="false">
<view class="datePopup">
<view class="btnTitleC flex">
<view class="btn cancel" @click="clickCancel()">取消</view>
<view class="title flex1">交易日期</view>
<view class="btn confirm" @click="clickConfirm()">确认</view>
</view>
<view class="yearMonthC flex">
<view class="btn" @click="clickPreMonth()">
<image class="icon" src="/static/icon/home/conceptCenter/pre.png" mode="widthFix"></image>
</view>
<view class="yearMonth flex1">
<picker mode="date" fields="month" @change="monthChange">
<view>{{selectMonth}}</view>
</picker>
</view>
<view class="btn" @click="clickNextMonth()">
<image class="icon" src="/static/icon/home/conceptCenter/next.png" mode="widthFix"></image>
</view>
</view>
<view class="weekList flex">
<view class="item flex1" v-for="(item,index) in weekList" :key="index">{{item}}</view>
</view>
<view class="monthDateList flexWrap">
<view class="item flexColumnCenter" v-for="(item,index) in monthDateList[selectMonthIndex]" :key="index" @click="clickSelectDate(item)">
<block v-if="item.date==selectDateStr">
<view class="date select">{{item.day}}</view>
</block>
<block v-else>
<block v-if="!item.isCurrentMonth">
<view class="date notCurrentMonth">{{item.day}}</view>
</block>
<block v-else>
<view class="date">{{item.day}}</view>
</block>
</block>
</view>
</view>
<view class="quickTimeC flexCenter">
<view class="item" v-for="(item,index) in quickTimeList" :key="index" @click="clickQuickTimeItem(index)">{{item}}</view>
</view>
</view>
</uni-popup>
</view>
</template>
<script>
import { inject } from 'vue';
import { conceptDetails } from '@/request/api';
export default {
data() {
return {
navH:inject('navHeight'),
listTop:'',
conceptId:'', //概念id
conceptName:'', //概念名称
weekList:['一','二','三','四','五','六','日'],
monthDateList:[],
selectMonthIndex:0, //选中月份下标
selectMonth:'', //选中年月
selectDateStr:'', //交易日期选中日期
quickTimeList:['今天','昨天','一周前','一月前'],
stockList:[], //个股列表
}
},
onLoad(e) {
this.listTop = this.navH+(46+22)/750*inject('windowWidth')
let currentDate = new Date();
// 获取当前年份
let currentYear = currentDate.getFullYear();
let currentMonth = currentDate.getMonth()+1;
let currentDay = currentDate.getDate();
this.selectMonthIndex = 20*12+currentMonth-1
this.selectMonth = currentYear+'年'+currentMonth+'月'
this.selectDateStr = currentYear+'-'+(currentMonth>9?currentMonth:('0'+currentMonth))+'-'+(currentDay>9?currentDay:('0'+currentDay))
this.generateMonthDateListData()
if (e.id) {
this.conceptId = e.id
this.getConceptHotStockData()
}
},
methods: {
/**
* 生成日历数据
*/
generateMonthDateListData()
{
let currentDate = new Date();
// 获取当前年份
let currentYear = currentDate.getFullYear();
let currentMonth = currentDate.getMonth()+1;
let currentDay = currentDate.getDate();
let monthDateList = []
for (var i = currentYear-20; i < currentYear+20; i++) {
for (var j = 0; j < 12; j++) {
let date = new Date(i,j+1,0)
let firstDayOfMonth = new Date(i,j+1,0);
firstDayOfMonth.setDate(1);
//获取当前月天数
let currentMonthDay = date.getDate()
let firstDayWeek = firstDayOfMonth.getDay() || 7
let daysOfMonth = []
for (var k = 1; k <= currentMonthDay; k++) {
let newDate = new Date(i,j+1,0)
newDate.setDate(k); // 设置日期为当前月的相应日期
let newMonth = newDate.getMonth()+1
let newDay = newDate.getDate()
let time = newDate.getTime()
let date = i+'-'+(newMonth>9?newMonth:('0'+newMonth))+'-'+(newDay>9?newDay:('0'+newDay))
daysOfMonth.push({date:date,year:i,month:newMonth,day:newDay,isToday:(i==currentYear&&newMonth==currentMonth&&newDay==currentDay)?true:false,isCurrentMonth:true,timestamp:time});
}
for (var k = 0; k < firstDayWeek-1; k++) {
//获取上月天数
let year = i
let month = j
if(j<1)
{
year = i - 1
month = 12
}
let lastMonthDay = new Date(year, month, 0).getDate()
//获取上月日期
let newDate = new Date(year,month-1,lastMonthDay-k)
let newMonth = newDate.getMonth()+1
let newDay = newDate.getDate()
let time = newDate.getTime()
let date = year+'-'+(newMonth>9?newMonth:('0'+newMonth))+'-'+(newDay>9?newDay:('0'+newDay))
daysOfMonth.unshift({date:date,year:year,month:newMonth,day:newDay,isToday:false,isCurrentMonth:false,timestamp:time});
}
// 下一个月的第一天
let nextMonthFirstDay = new Date(i, j+1, 1);
// 然后减去一天就是当前月的最后一天
let lastDayOfMonth = new Date(nextMonthFirstDay - (24 * 60 * 60 * 1000)); // 减去一天的毫秒数
let lastDayWeek = lastDayOfMonth.getDay() || 7; // 返回0星期天到6星期六
for (var k = 1; k < 8-lastDayWeek; k++) {
let year = i
let month = j
if(month>11)
{
month = 0
year ++
}
//获取下月日期
let newDate = new Date(year,month + 1,k)
let newMonth = newDate.getMonth()+1
let newDay = newDate.getDate()
let time = newDate.getTime()
let date = year+'-'+(newMonth>9?newMonth:('0'+newMonth))+'-'+(newDay>9?newDay:('0'+newDay))
daysOfMonth.push({date:date,year:year,month:newMonth,day:newDay,isToday:false,isCurrentMonth:false,timestamp:time});
}
monthDateList.push(daysOfMonth)
}
}
this.monthDateList = monthDateList
},
/**
* 点击时间筛选
*/
clickDateScreen()
{
this.$refs['datePopup'].open()
},
/**
* 点击展开或收起
* @param {Object} index
*/
clickExpandOrRetract(index)
{
this.stockList[index].isExpand = !this.stockList[index].isExpand
},
/**
* 点击取消
*/
clickCancel()
{
this.$refs["datePopup"].close()
},
/**
* 点击确认
*/
clickConfirm()
{
this.clickCancel()
this.getConceptHotStockData()
},
/**
* 点击上个月
*/
clickPreMonth()
{
if(this.selectMonthIndex>0)
{
this.selectMonthIndex --
let monthList = this.monthDateList[this.selectMonthIndex]
let year = ''
let month = ''
for (let item of monthList) {
if(item.isCurrentMonth)
{
year = item.year
month = item.month
break
}
}
this.selectMonth = year+'年'+month+'月'
}
},
/**
* 点击下个月
*/
clickNextMonth()
{
if(this.selectMonthIndex<this.monthDateList.length-1)
{
this.selectMonthIndex ++
let monthList = this.monthDateList[this.selectMonthIndex]
let year = ''
let month = ''
for (let item of monthList) {
if(item.isCurrentMonth)
{
year = item.year
month = item.month
break
}
}
this.selectMonth = year+''+month+''
}
},
monthChange(e)
{
let currentDate = new Date();
//当前年份
let currentYear = currentDate.getFullYear()
//选中年月
let yearMonth = e.detail.value
let selectYear = parseInt(yearMonth.split('-')[0])
let selectMonth = parseInt(yearMonth.split('-')[1])
this.selectMonthIndex = (selectYear - (currentYear - 20))*12+selectMonth-1
this.selectMonth = selectYear+''+selectMonth+''
},
/**
* 点击选择开始日期和结束日期
* @param {Object} item
*/
clickSelectDate(item)
{
if (this.selectDateStr!=item.date){
this.selectDateStr = item.date
}
},
/**
* 点击快捷时间选择
*/
clickQuickTimeItem(index)
{
let currentDate = new Date();
let currentYear = currentDate.getFullYear();
if (index==0) {
//今天
let currentMonth = currentDate.getMonth()+1;
let currentDay = currentDate.getDate();
this.selectMonthIndex = 20*12+currentMonth-1
this.selectMonth = currentYear+''+currentMonth+''
this.selectDateStr = currentYear+'-'+(currentMonth>9?currentMonth:('0'+currentMonth))+'-'+(currentDay>9?currentDay:('0'+currentDay))
}else if (index==1) {
//昨天
let yesterday = new Date(currentDate)
yesterday.setDate(yesterday.getDate()-1)
let yesterdayYear = yesterday.getFullYear();
let yesterdayMonth = yesterday.getMonth()+1;
let yesterdayDay = yesterday.getDate();
this.selectMonthIndex = (20 - (currentYear-yesterdayYear))*12+yesterdayMonth-1
this.selectMonth = yesterdayYear+'年'+yesterdayMonth+'月'
this.selectDateStr = yesterdayYear+'-'+(yesterdayMonth>9?yesterdayMonth:('0'+yesterdayMonth))+'-'+(yesterdayDay>9?yesterdayDay:('0'+yesterdayDay))
}else if (index==2) {
//一周前
let weekAgo = new Date(currentDate)
weekAgo.setDate(weekAgo.getDate()-7)
let weekAgoYear = weekAgo.getFullYear();
let weekAgoMonth = weekAgo.getMonth()+1;
let weekAgoDay = weekAgo.getDate();
this.selectMonthIndex = (20 - (currentYear-weekAgoYear))*12+weekAgoMonth-1
this.selectMonth = weekAgoYear+'年'+weekAgoMonth+'月'
this.selectDateStr = weekAgoYear+'-'+(weekAgoMonth>9?weekAgoMonth:('0'+weekAgoMonth))+'-'+(weekAgoDay>9?weekAgoDay:('0'+weekAgoDay))
}else
{
//一月前
let monthAgo = new Date(currentDate)
monthAgo.setDate(monthAgo.getDate()-30)
let monthAgoYear = monthAgo.getFullYear();
let monthAgoMonth = monthAgo.getMonth()+1;
let monthAgoDay = monthAgo.getDate();
this.selectMonthIndex = (20 - (currentYear-monthAgoYear))*12+monthAgoMonth-1
this.selectMonth = monthAgoYear+'年'+monthAgoMonth+'月'
this.selectDateStr = monthAgoYear+'-'+(monthAgoMonth>9?monthAgoMonth:('0'+monthAgoMonth))+'-'+(monthAgoDay>9?monthAgoDay:('0'+monthAgoDay))
}
},
/**
* 获取概念相关个股数据
*/
getConceptHotStockData()
{
let params = {trade_date:this.selectDateStr}
conceptDetails(this.conceptId,params).then(res=>{
this.conceptName = res.concept
this.stockList = res.stocks
}).catch(error=>{
})
}
}
}
</script>
<style lang="less">
page
{
background-color: #070707;
}
.topBg
{
top: 0;
left: 0;
width: 100%;
height: auto;
}
.titleScreenC
{
background-color: #FFF9F5;
left: 0;
right: 0;
margin: 0 25rpx;
padding: 22rpx 25rpx 0;
border-radius: 10rpx 10rpx 0 0;
.title
{
font-size: 28rpx;
font-weight: bold;
color: #2B2B2B;
}
.screenC
{
padding: 0 20rpx;
line-height: 42rpx;
border-radius: 23rpx;
border: solid 2rpx #F3C368;
font-size: 22rpx;
color: #E3AA3D;
.arrow
{
margin-left: 7rpx;
width: 12rpx;
height: auto;
}
}
}
.stockList
{
background-color: #FFF9F5;
left: 0;
width: calc(100% - 50rpx);
bottom: 62rpx;
margin: 0 25rpx;
border-radius: 0 0 10rpx 10rpx ;
.list
{
padding: 16rpx 25rpx;
.item
{
background-color: white;
box-shadow: 0 5rpx 10rpx 0 rgba(127,127,127,0.08);
margin-bottom: 20rpx;
padding: 0 20rpx;
border-radius: 10rpx;
.stockInfoC
{
padding: 16rpx 0;
.titleCodeC
{
.title
{
font-size: 26rpx;
font-weight: bold;
color: #222;
}
.code
{
font-size: 20rpx;
font-weight: 500;
color: #888;
}
}
.chg
{
font-size: 24rpx;
font-weight: bold;
text-align: center;
}
.chg.up
{
color: #EC3440;
}
.chg.down
{
color: #38A169;
}
.industry
{
font-size: 24rpx;
font-weight: 500;
color: #333;
text-align: center;
}
.reasonProjectC
{
font-size: 24rpx;
font-weight: 500;
color: #DA9000;
.arrow
{
margin-left: 10rpx;
width: 10rpx;
height: auto;
}
.arrow.expand
{
margin-left: 6rpx;
width: 14rpx;
height: auto;
}
}
}
.reasonProjectContentC
{
margin: 0 5rpx;
border-top: solid 1rpx #F0F0F0;
padding: 12rpx 9rpx 22rpx;
font-size: 24rpx;
font-weight: 500;
color: #666;
.title
{
color: #DA9000;
}
.projectC
{
margin-top: 6rpx;
}
}
}
}
}
.datePopup
{
background-color: white;
padding-bottom: env(safe-area-inset-bottom);
border-radius: 20rpx 20rpx 0 0;
.btnTitleC
{
.btn
{
padding: 20rpx 26rpx;
font-size: 28rpx;
font-weight: 500;
}
.btn.cancel
{
color: #727A8E;
}
.btn.confirm
{
color: #D79412;
}
.title
{
font-size: 36rpx;
font-weight: bold;
text-align: center;
}
}
.yearMonthC
{
background-color: #F7F7F7;
margin: 0 25rpx;
height: 70rpx;
border-radius: 35rpx;
.btn
{
padding: 0 52rpx;
.icon
{
width: 13rpx;
height: auto;
}
}
.yearMonth
{
font-size: 32rpx;
font-weight: 500;
color: #070707;
text-align: center;
}
}
.weekList
{
padding: 0 38rpx;
.item
{
margin-right: 13rpx;
line-height: 72rpx;
font-size: 26rpx;
font-weight: 500;
color: #A7A7A7;
text-align: center;
}
}
.monthDateList
{
padding: 0 38rpx;
.item
{
margin-bottom: 12rpx;
width: calc(100%/7);
.date
{
background-color: #f8f8f8;
width: calc(100% - 10rpx);
line-height: 64rpx;
border-radius: 15rpx;
font-size: 24rpx;
font-weight: bold;
color: #2A2A2A;
text-align: center;
}
.date.select
{
background-color: #F2C367;
color: white;
}
.date.notCurrentMonth
{
background-color: #FCFCFC;
color: #999;
}
}
}
.quickTimeC
{
margin-top: 16rpx;
.item
{
margin-right: 25rpx;
width: 120rpx;
line-height: 56rpx;
border-radius: 30rpx;
border: solid 2rpx #4E4E4E;
font-size: 24rpx;
font-weight: 500;
color: #4E4E4E;
text-align: center;
}
.item:last-child
{
margin-right: 0;
}
}
}
</style>

View File

@@ -263,7 +263,6 @@
import { filterOptions, eventList, homeData, industryCategoryList, loginByEmail, followEvent, stockCategoryList } from '@/request/api'
import { getRateStr, getRateUpOrDown, getLocaleTime } from '@/utils/util.js'
const echarts = require('../../uni_modules/lime-echart/static/echarts.min.js');
import posthog from '@/utils/posthog.js';
export default {
data() {
@@ -452,7 +451,6 @@
}
}
this.monthDateList = monthDateList
posthog.capture("首页")
},
onReady() {
uni.createSelectorQuery().select('#topCategory').boundingClientRect(rect=>{
@@ -630,15 +628,17 @@
{
this.selectMonthIndex --
let monthList = this.monthDateList[this.selectMonthIndex]
let year = ''
let month = ''
for (let item of monthList) {
if(item.isCurrentMonth)
{
year = item.year
month = item.month
break
}
}
this.selectMonth = this.monthDateList[this.selectMonthIndex][0].year+'-'+(month>9?month:('0'+month))
this.selectMonth = year+'-'+(month>9?month:('0'+month))
}
},
/**
@@ -650,15 +650,17 @@
{
this.selectMonthIndex ++
let monthList = this.monthDateList[this.selectMonthIndex]
let year = ''
let month = ''
for (let item of monthList) {
if(item.isCurrentMonth)
{
year = item.year
month = item.month
break
}
}
this.selectMonth = this.monthDateList[this.selectMonthIndex][0].year+'-'+(month>9?month:('0'+month))
this.selectMonth = year+'-'+(month>9?month:('0'+month))
}
},
/**

View File

@@ -9,10 +9,10 @@
</view>
</view>
<view :class="'contentC fixed '+(type==2?'radius':'')" :style="'top:'+contentTop+'px;'">
<!-- <view v-if="type==1&&tradeData" class="volumeAmountC flex">
<view v-if="type==1&&tradeData" class="volumeAmountC flex">
<text class="volume">成交量{{tradeData.volume}}</text>
<text class="amount">成交金额{{tradeData.amount}}</text>
</view> -->
</view>
<view v-if="type==1" style="width:750rpx; height:400rpx">
<l-echart ref="chartRef"></l-echart>
</view>
@@ -135,7 +135,7 @@
tooltip: {
position:function (pos, params, dom, rect, size) {
// 鼠标在左侧时 tooltip 显示到右侧,鼠标在右侧时 tooltip 显示到左侧。
var obj = {top: '5%'};
var obj = {top: '3%'};
obj[['left', 'right'][+(pos[0] < size.viewSize[0] / 2)]] = 5;
return obj;
@@ -144,7 +144,7 @@
formatter: function (params) {
let res = '时间:'+params[0].name+'\n'+'高:'+params[0].data[2]+'\n'+'开:'+params[0].data[3]
+'\n'+'低:'+params[0].data[4]+'\n'+'收:'+params[0].data[1]+'\n'+'涨幅:'+params[0].data[5]+'%'
+'\n'+'量:'+params[0].data[6]+'\n'+'金额:'+params[0].data[7]
// +'\n'+'量:'+params[0].data[6]+'\n'+'金额:'+params[0].data[7]
return res;
},
},