兰代清没头发

This commit is contained in:
Zhang HaoYang 2023-12-24 22:28:00 +08:00
parent 1d23a9eaf0
commit a3479d41b8
2 changed files with 342 additions and 291 deletions

View File

@ -3,21 +3,25 @@
<LeftSide :category="category"></LeftSide> <LeftSide :category="category"></LeftSide>
<div class="DefinedPage"> <div class="DefinedPage">
<div class="LeftPart" style="overflow: auto"> <div class="LeftPart" style="overflow: auto">
<div class="JustBack" style="width:670px;display:flex; flex-direction: row; flex-wrap: nowrap;height:430px !important;"> <div class="JustBack"
style="width:670px;display:flex; flex-direction: row; flex-wrap: nowrap;height:430px !important;">
<div id="ShowPic" style="display: flex;flex-direction: column;flex-wrap: wrap"> <div id="ShowPic" style="display: flex;flex-direction: column;flex-wrap: wrap">
<div class="card" style="width: 180px;height:180px;margin-top:50px;background-color: var( --theme-bg-color)" > <div class="card" style="width: 180px;height:180px;margin-top:50px;background-color: var( --theme-bg-color)"
@click="ToURL()">
<img :src="UrlObj.icon"> <img :src="UrlObj.icon">
</div> </div>
<div id="IconGroup" style="margin-top:60px;display: flex;flex-direction: row;flex-wrap: nowrap;margin-left:-20px"> <div id="IconGroup"
style="margin-top:60px;display: flex;flex-direction: row;flex-wrap: nowrap;margin-left:-20px">
<div class="little-Triangle" style=" margin-left:15px;"> <div class="little-Triangle" style=" margin-left:15px;">
<el-tooltip placement="bottom" width="150" <el-tooltip placement="bottom" width="150"
trigger="hover" trigger="hover"
effect="dark" close-delay="2000"> effect="dark" close-delay="2000">
<div class="MyPopover" slot="content"> <div class="MyPopover" slot="content">
<span style="font-size:12px !important;">91视频网站完整URL</span><br/><br/> <span style="font-size:12px !important;">{{ UrlObj.name }}完整URL</span><br/><br/>
<div style="width:100% ;text-align: center">{{ UrlObj.url }}</div> <div style="width:100% ;text-align: center">{{ UrlObj.url }}</div>
</div> </div>
<i class="el-icon-link" id="little-Circle-content" style="font-weight:550;padding:5px;font-size:15px!important;margin-top:5px">完整URL</i> <i class="el-icon-link" id="little-Circle-content"
style="font-weight:550;padding:5px;font-size:15px!important;margin-top:5px">完整URL</i>
</el-tooltip> </el-tooltip>
</div> </div>
<div class="little-Triangle" style=" margin-left:15px;"> <div class="little-Triangle" style=" margin-left:15px;">
@ -25,10 +29,12 @@
trigger="hover" trigger="hover"
effect="dark" close-delay="2000"> effect="dark" close-delay="2000">
<div class="MyPopover" slot="content"> <div class="MyPopover" slot="content">
<span style="font-size:12px !important;">91视频网站手机二维码</span><br/><br/> <span style="font-size:12px !important;">{{ UrlObj.name }}手机二维码</span><br/><br/>
<div style="width:100% ;text-align: center"><img style="width:150px" src="../../assets/img/beauty.jpg" /></div> <div style="width:100% ;text-align: center"><img style="width:150px"
:src="getQR(UrlId,UrlObj.icon)"></div>
</div> </div>
<i class="el-icon-picture" id="little-Circle-content" style="font-weight:550; padding:5px;font-size:15px!important;margin-top:5px">手机查看</i> <i class="el-icon-picture" id="little-Circle-content"
style="font-weight:550; padding:5px;font-size:15px!important;margin-top:5px">手机查看</i>
</el-tooltip> </el-tooltip>
</div> </div>
</div> </div>
@ -102,7 +108,7 @@
<div class="TitleFont"><i class="el-icon-s-marketing"></i>热度趋势</div> <div class="TitleFont"><i class="el-icon-s-marketing"></i>热度趋势</div>
</div> </div>
<div class="ArticleContent"> <div class="ArticleContent">
<div ref="ManuEchart" style="width:550px;height:300px;"></div> <div id="ManuEchart" style="width:550px;height:300px;"></div>
</div> </div>
</div> </div>
</div> </div>
@ -142,6 +148,7 @@ import Vue from "vue";
import * as echarts from 'echarts' import * as echarts from 'echarts'
import axios from "axios"; import axios from "axios";
import LeftSide from "@/components/home/LeftSide.vue"; import LeftSide from "@/components/home/LeftSide.vue";
Vue.prototype.$echarts = echarts; Vue.prototype.$echarts = echarts;
export default { export default {
name: "NavDetail", name: "NavDetail",
@ -157,8 +164,6 @@ export default {
PageView: [], PageView: [],
//Echart //Echart
ManuChart: null, ManuChart: null,
// Echart
MyOption:{},
// urlId: // urlId:
UrlId: null, UrlId: null,
// //
@ -166,34 +171,41 @@ export default {
// //
UnDate: null, UnDate: null,
Cdate: null, Cdate: null,
}}, //
viewByTime: null,
//
//
xTime: [],
// y
YView: [],
imageCode: null,
}
},
mounted() { mounted() {
this.initPage(); this.initPage();
this.GetNav(this.UrlId); this.getQR(this.UrlId, this.UrlObj.icon);
this.initEchart();
this.getCategories();
}, },
created() { created() {
}, },
computed: { computed: {},
},
methods: { methods: {
getCategories() { // 访
ViewByTime(id) {
let _this = this; let _this = this;
axios({ axios.get('/api/getUrlAccess', {
method: 'post', params: {
url: '/api/UrlAndCate/disposeBookmarkExhibitedToJson', urlId: id
}).then(function (res) {
// console.log(res);
if (res.data.data) {
_this.category = res.data.data;
} else {
return false;
} }
}).then(function (res) {
_this.viewByTime = res.data;
// console.log(_this.viewByTime)
Object.keys(_this.viewByTime).forEach(key => {
_this.xTime.push(_this.viewByTime[key].time);
_this.YView.push(_this.viewByTime[key].views);
})
_this.initEchart(_this.xTime,_this.YView);
}).catch((error) => { }).catch((error) => {
Vue.prototype.$notify.error({ Vue.prototype.$notify.error({
title: '错误', title: '错误',
@ -202,7 +214,36 @@ export default {
}); });
}) })
}, },
//
getQR(url_id, icon_url) {
let _this = this;
axios({
method: 'post',
url: '/api/qrcode/qrc_return',
data: {
url_id: url_id,
icon_url: icon_url
}
}).then(function (res) {
if (res.data) {
_this.imageCode = "data:image/jpg;base64," + res.data;
}
return false;
}).catch((error) => {
Vue.prototype.$notify.error({
title: '错误',
message: error === null ? '' : error,
offset: 0
});
})
return this.imageCode
},
//
ToURL() {
var that = this;
window.open(that.UrlObj.url, '_blank')
},
// //
getFormatDate() { getFormatDate() {
var that = this; var that = this;
@ -221,18 +262,35 @@ export default {
// //
initPage() { initPage() {
this.UrlId = this.$route.query.uid; this.UrlId = this.$route.query.uid;
this.GetNav(this.UrlId);
// this.initEchart();
}, },
// Echart // Echart
initEchart(){ initEchart(xline,yline) {
var that = this; // var that = this;
this.ManuChart = this.$echarts.init(this.$refs.ManuEchart); var myChart = this.$echarts.init(
that.MyOption={ document.getElementById('ManuEchart')
);
var MyOption = {
tooltip: { tooltip: {
trigger: 'item', trigger: 'item',
axisPointer: { axisPointer: {
type: 'shadow' type: 'shadow'
}, },
dataZoom: [{
type: 'slider', //
show: true, // dataZoom
start: 0, // 0
end: 30, // 100
handleSize: 8, //
handleStyle: {
color: '#DCE2E8' //
},
xAxisIndex: [0], // x
filterMode: 'filter' // filter
}]
,
backgroundColor: '#fff', // backgroundColor: '#fff', //
borderColor: '#000', // borderColor: '#000', //
borderWidth: 1, // borderWidth: 1, //
@ -243,7 +301,7 @@ export default {
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], data: xline,
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
@ -278,14 +336,14 @@ export default {
}, },
series: [ series: [
{ {
data: [150, 230, 224, 218, 135, 147, 260], data: yline,
type: 'line', type: 'line',
label: {// label: {//
show: true, // show: true, //
} }
}, },
{ {
data: [150, 230, 224, 218, 135, 147, 260], data: yline,
type: 'bar' type: 'bar'
}, },
], ],
@ -297,7 +355,7 @@ export default {
zoomLock: true, zoomLock: true,
} }
} }
that.ManuChart.setOption(that.MyOption,true); myChart.setOption(MyOption, true);
}, },
// //
GetNav(id) { GetNav(id) {
@ -322,10 +380,7 @@ export default {
}, },
// //
WarnToAdmin() { WarnToAdmin() {
console.log(this.UrlId); console.log(this.xTime);
console.log(this.UrlObj);
console.log(this.UrlObj.createtime + typeof (this.UrlObj.createtime));
console.log(this.Cdate);
} }
} }
@ -351,6 +406,7 @@ export default {
font-size: 18px; font-size: 18px;
color: var(--theme-color); color: var(--theme-color);
} }
/**趋势图**/ /**趋势图**/
.LookNumEchart { .LookNumEchart {
width: 80%; width: 80%;
@ -362,11 +418,6 @@ export default {
} }
@property --rotate { @property --rotate {
syntax: "<angle>"; syntax: "<angle>";
initial-value: 132deg; initial-value: 132deg;
@ -413,6 +464,7 @@ body {
color: rgb(88 199 250 / 100%); color: rgb(88 199 250 / 100%);
transition: color 1s; transition: color 1s;
} }
.card:hover:before, .card:hover:after { .card:hover:before, .card:hover:after {
animation: none; animation: none;
opacity: 0; opacity: 0;
@ -425,8 +477,7 @@ body {
height: 108%; height: 108%;
border-radius: 8px; border-radius: 8px;
background-image: linear-gradient( background-image: linear-gradient(
var(--rotate) var(--rotate), #5ddcff, #3c67e3 43%, #4e00c2);
, #5ddcff, #3c67e3 43%, #4e00c2);
position: absolute; position: absolute;
z-index: -1; z-index: -1;
//top: -1%; //top: -1%;
@ -447,8 +498,7 @@ body {
transform: scale(0.8); transform: scale(0.8);
filter: blur(calc(var(--card-height) / 6)); filter: blur(calc(var(--card-height) / 6));
background-image: linear-gradient( background-image: linear-gradient(
var(--rotate) var(--rotate), #5ddcff, #3c67e3 43%, #4e00c2);
, #5ddcff, #3c67e3 43%, #4e00c2);
opacity: 1; opacity: 1;
transition: opacity .5s; transition: opacity .5s;
animation: spin 2.5s linear infinite; animation: spin 2.5s linear infinite;

View File

@ -98,6 +98,7 @@ export default {
}).then(function (res) { }).then(function (res) {
if (res.data) { if (res.data) {
_this.navList = res.data; _this.navList = res.data;
console.log(res.data);
} }
}).catch((error) => { }).catch((error) => {
Vue.prototype.$notify.error({ Vue.prototype.$notify.error({