Commit 04aafc19 by yanju

Merge branch 'yoona' into 'master'

Yoona

See merge request pigbigbig/beyond-clouds-front!71
parents f9b24111 4e0f298e
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<p class="card-content__word" v-html="handledContent"></p> <p class="card-content__word" v-html="handledContent"></p>
<div class="card-content__img1" v-if="pictures.length>1&&pictures.length<=4&&!showBanner"> <div class="card-content __img1" v-if="pictures.length>1&&pictures.length<=4&&!showBanner">
<div class="img-box" @click="clickToOpenBanner(index)" v-for="(value,index) in pictures" <div class="img-box" @click="clickToOpenBanner(index)" v-for="(value,index) in pictures"
:style="{marginRight:(index+1)===4?'0':'16px'}"> :style="{marginRight:(index+1)===4?'0':'16px'}">
<img :src="value" alt=""> <img :src="value" alt="">
......
...@@ -4,53 +4,87 @@ ...@@ -4,53 +4,87 @@
<card-container <card-container
title="新闻速递" title="新闻速递"
width="938px" width="938px"
height="1696px"
> >
<project-card></project-card> <project-card v-for="(val,index) in newsList" :key="val.contentId" :info="val"></project-card>
<project-card></project-card> <empty-card v-if="newsList.length===0" height="556px"></empty-card>
<project-card></project-card>
</card-container> </card-container>
<div class="pagination"> <div class="pagination">
<pagination style="margin: 0 auto;" pages="13" v-on:listenPageChange="changePage"></pagination> <pagination style="margin: 0 auto;" :pages="pages" v-on:listenPageChange="changePage"></pagination>
</div> </div>
</div> </div>
<div class="news-container__r"> <div class="news-container__r">
<card-container <card-container
style="max-height: 426px;"
title="行业资讯" title="行业资讯"
label="换一换" label="换一换"
width="302px" width="302px"
height="426px"
> >
<div style="padding: 14px 16px;">
<div class="information-wrap" v-for="(val,index) in informationList" :key="val.contentId">
<p class="information-time">{{dateConvert(val.createTime)}}</p>
<p class="information-content">{{val.title}}</p>
</div>
</div>
</card-container> </card-container>
<card-container <card-container
style="margin-top: 16px" style="margin-top: 16px; max-height: 426px;"
title="招聘速递" title="招聘速递"
more="更多" more="更多"
width="302px" width="302px"
height="426px"
> >
<div class="software-container">
<div class="software-wrap" v-for="(val,index) in recruitmentList" :key="val.contentId">
<div class="software-img-wrap">
<img class="software-img"
:src="val.cover" alt="">
</div>
<div class="software-main">
<p class="software-title">{{val.title}}</p>
<p class="software-content">{{val.subTitle}}</p>
</div>
</div>
</div>
</card-container> </card-container>
<card-container <card-container
style="margin-top: 16px" style="margin-top: 16px; max-height: 426px;"
title="每周软件推荐" title="每周软件推荐"
label="周一3:00更新" label="周一3:00更新"
more="更多项目" more="更多项目"
width="302px" width="302px"
height="426px"
> >
<div class="software-container">
<div class="software-wrap" v-for="(val,index) in recruitmentList" :key="val.contentId">
<p class="software-rank">{{index + 1}}</p>
<div class="software-img-wrap">
<img class="software-img"
:src="val.cover" alt="">
</div>
<div class="software-main">
<p class="software-title">{{val.title}}</p>
<p class="software-content">{{val.subTitle}}</p>
</div>
</div>
</div>
</card-container> </card-container>
<card-container <card-container
style="margin-top: 16px" style="margin-top: 16px; max-height: 426px;"
title="软件更新" title="软件更新"
more="加载更多" more="加载更多"
width="302px" width="302px"
height="426px"
> >
<div class="software-container">
<div class="software-wrap" v-for="(val,index) in recruitmentList" :key="val.contentId">
<div class="software-img-wrap">
<img class="software-img"
:src="val.cover" alt="">
</div>
<div class="software-main">
<p class="software-title">{{val.title}}</p>
<p class="software-content">{{val.subTitle}}</p>
</div>
</div>
</div>
</card-container> </card-container>
</div> </div>
</div> </div>
...@@ -60,29 +94,186 @@ ...@@ -60,29 +94,186 @@
import CardContainer from "../../components/pc/cardContainer"; import CardContainer from "../../components/pc/cardContainer";
import ProjectCard from "../../components/pc/projectCard"; import ProjectCard from "../../components/pc/projectCard";
import Pagination from "../../components/pc/pagination"; import Pagination from "../../components/pc/pagination";
import config from '../../action/config';
import EmptyCard from "../../components/pc/emptyCard";
import {dateConvert} from '../../action/utils/dataConvert'
export default { export default {
components: {ProjectCard, CardContainer,Pagination}, components: {EmptyCard, ProjectCard, CardContainer, Pagination},
data() {
return {
newsList: [],
informationList: [],
recruitmentList: [],
recommendedSoftwareList: [],
softwareUpdatesList: [],
pages: 1,
currentPage: 1
}
},
created() {
this.dataGetNewsList(1);
this.dataGetInformationList();
this.dataGetRecommendedSoftwareList();
this.dataGetRecruitmentList();
this.dataGetSoftwareUpdatesList();
},
methods: { methods: {
changePage(currentPage){ dataGetNewsList(currentPage) {
let params = {
page: currentPage,
size: 12,
type: 1
};
this.$axios.$get(config.api.get.Content.list + '/13/contents',
{
params: params
}).then((response) => {
this.newsList = response.data.dataList;
this.pages = response.data.totalPage;
})
},
dataGetInformationList() {
this.$axios.$get(config.api.get.Content.list + '/14/contents', {
params: {
page: 1,
size: 6,
type: 1
}
}).then((response) => {
this.informationList = response.data.dataList;
})
},
dataGetRecruitmentList() {
this.$axios.$get(config.api.get.Content.list + '/15/contents', {
params: {
page: 1,
size: 5,
type: 1
}
}).then((response) => {
this.recruitmentList = response.data.dataList;
})
},
dataGetRecommendedSoftwareList() {
this.$axios.$get(config.api.get.Content.list + '/16/contents', {
params: {
page: 1,
size: 5,
type: 1
}
}).then((response) => {
this.recommendedSoftwareList = response.data.dataList;
})
},
dataGetSoftwareUpdatesList() {
this.$axios.$get(config.api.get.Content.list + '/17/contents', {
params: {
page: 1,
size: 5 ,
type: 1
}
}).then((response) => {
this.softwareUpdatesList = response.data.dataList;
})
},
changePage(currentPage) {
//返回页数 请求新的数据 //返回页数 请求新的数据
this.dataGetNewsList(currentPage);
},
dateConvert(time) {
return dateConvert(time);
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.news-container{ .news-container {
width: $pageWidth; width: $pageWidth;
margin: 0 auto; margin: 0 auto;
padding-top: 40*$length; padding-top: 40*$length;
padding-bottom: 32*$length; padding-bottom: 32*$length;
@extend %flex-row-spb; @extend %flex-row-spb;
align-items: start; align-items: start;
.news-container__l{
.pagination{ .news-container__l {
.pagination {
margin: 32*$length; margin: 32*$length;
} }
} }
}
.news-container__r {
.information-wrap {
padding-bottom: 12*$length;
.information-time {
@extend %cursorPointer;
@include fontStyle(12, 16, 500, #CCC, left);
}
.information-content {
width: 100%;
overflow: hidden;
margin-top: 3*$length;
@extend %nowrap;
@extend %cursorPointer;
@extend %animate-transition;
@include fontStyle(14, 19, 500, #333, left);
&:hover {
color: #00AAE6;
}
}
}
.software-container{
padding: 0 16*$length;
.software-wrap {
padding-top: 16*$length;
@extend %flex-row-spb;
justify-content: flex-start;
.software-rank {
margin-right: 8*$length;
@include fontStyle(14, 19, 500, #2F2F2F, left);
}
.software-img-wrap {
width: 48*$length;
height: 48*$length;
@include border-radius(4*$length);
.software-img {
width: 48*$length;
height: 48*$length;
object-fit: contain;
@include border-radius(4*$length);
}
}
.software-main {
width: 100%;
overflow: hidden;
margin-left: 10*$length;
@extend %cursorPointer;
.software-title {
margin-bottom: 4*$length;
@include fontStyle(14, 19, 500, #2F2F2F, left);
@extend %animate-transition;
@extend %nowrap;
&:hover {
color: #00AAE6;
}
}
.software-content {
@extend %nowrap;
@include fontStyle(12, 16, 500, #999999, left);
}
}
}
}
}
}
</style> </style>
{
"header": {
"reportVersion": 1,
"event": "Allocation failed - JavaScript heap out of memory",
"trigger": "FatalError",
"filename": "report.20200214.143849.20656.0.001.json",
"dumpEventTime": "2020-02-14T14:38:50Z",
"dumpEventTimeStamp": "1581662330666",
"processId": 20656,
"cwd": "D:\\beyond-clouds-front",
"commandLine": [
"D:\\Program Files\\nodejs\\node.exe",
"server/index.js"
],
"nodejsVersion": "v12.11.0",
"wordSize": 64,
"arch": "x64",
"platform": "win32",
"componentVersions": {
"node": "12.11.0",
"v8": "7.7.299.11-node.12",
"uv": "1.32.0",
"zlib": "1.2.11",
"brotli": "1.0.7",
"ares": "1.15.0",
"modules": "72",
"nghttp2": "1.39.2",
"napi": "5",
"llhttp": "1.1.4",
"http_parser": "2.8.0",
"openssl": "1.1.1c",
"cldr": "35.1",
"icu": "64.2",
"tz": "2019a",
"unicode": "12.1"
},
"release": {
"name": "node",
"headersUrl": "https://nodejs.org/download/release/v12.11.0/node-v12.11.0-headers.tar.gz",
"sourceUrl": "https://nodejs.org/download/release/v12.11.0/node-v12.11.0.tar.gz",
"libUrl": "https://nodejs.org/download/release/v12.11.0/win-x64/node.lib"
},
"osName": "Windows_NT",
"osRelease": "10.0.18362",
"osVersion": "Windows 10 Home China",
"osMachine": "x86_64",
"cpus": [
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 7195796,
"nice": 0,
"sys": 13353000,
"idle": 106146078,
"irq": 1298359
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 4974375,
"nice": 0,
"sys": 7324953,
"idle": 114394968,
"irq": 76796
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 8920437,
"nice": 0,
"sys": 12276250,
"idle": 105497609,
"irq": 76968
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 5703062,
"nice": 0,
"sys": 8656343,
"idle": 112334875,
"irq": 59140
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 7969437,
"nice": 0,
"sys": 11388250,
"idle": 107336593,
"irq": 93671
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 6593875,
"nice": 0,
"sys": 9121640,
"idle": 110978765,
"irq": 64328
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 7605515,
"nice": 0,
"sys": 11149718,
"idle": 107939046,
"irq": 74328
},
{
"model": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz",
"speed": 2304,
"user": 7027937,
"nice": 0,
"sys": 7817515,
"idle": 111848828,
"irq": 47437
}
],
"networkInterfaces": [
{
"name": "VMware Network Adapter VMnet1",
"internal": false,
"mac": "00:50:56:c0:00:01",
"address": "fe80::3418:d7d7:4d0b:9fd1",
"netmask": "ffff:ffff:ffff:ffff::",
"family": "IPv6",
"scopeid": 10
},
{
"name": "VMware Network Adapter VMnet1",
"internal": false,
"mac": "00:50:56:c0:00:01",
"address": "192.168.210.1",
"netmask": "255.255.255.0",
"family": "IPv4"
},
{
"name": "VMware Network Adapter VMnet8",
"internal": false,
"mac": "00:50:56:c0:00:08",
"address": "fe80::bc29:4a9a:455b:40d3",
"netmask": "ffff:ffff:ffff:ffff::",
"family": "IPv6",
"scopeid": 21
},
{
"name": "VMware Network Adapter VMnet8",
"internal": false,
"mac": "00:50:56:c0:00:08",
"address": "192.168.154.1",
"netmask": "255.255.255.0",
"family": "IPv4"
},
{
"name": "WLAN",
"internal": false,
"mac": "34:e1:2d:b9:75:c6",
"address": "fe80::aca9:511e:17fc:9319",
"netmask": "ffff:ffff:ffff:ffff::",
"family": "IPv6",
"scopeid": 19
},
{
"name": "WLAN",
"internal": false,
"mac": "34:e1:2d:b9:75:c6",
"address": "192.168.2.161",
"netmask": "255.255.255.0",
"family": "IPv4"
},
{
"name": "Loopback Pseudo-Interface 1",
"internal": true,
"mac": "00:00:00:00:00:00",
"address": "::1",
"netmask": "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff",
"family": "IPv6",
"scopeid": 0
},
{
"name": "Loopback Pseudo-Interface 1",
"internal": true,
"mac": "00:00:00:00:00:00",
"address": "127.0.0.1",
"netmask": "255.0.0.0",
"family": "IPv4"
}
],
"host": "LAPTOP-I32DFO3J"
},
"javascriptStack": {
"message": "No stack.",
"stack": [
"Unavailable."
]
},
"nativeStack": [
{
"pc": "0x00007ff7b07a7539",
"symbol": "std::basic_ostream<char,std::char_traits<char> >::operator<<+10873"
},
{
"pc": "0x00007ff7b07ab8cc",
"symbol": "std::basic_ostream<char,std::char_traits<char> >::operator<<+28172"
},
{
"pc": "0x00007ff7b07aa878",
"symbol": "std::basic_ostream<char,std::char_traits<char> >::operator<<+23992"
},
{
"pc": "0x00007ff7b0898c0b",
"symbol": "v8::base::CPU::has_sse+37563"
},
{
"pc": "0x00007ff7b1099aee",
"symbol": "v8::Isolate::ReportExternalAllocationLimitReached+94"
},
{
"pc": "0x00007ff7b1081b31",
"symbol": "v8::SharedArrayBuffer::Externalize+833"
},
{
"pc": "0x00007ff7b0f4f4bc",
"symbol": "v8::internal::Heap::EphemeronKeyWriteBarrierFromCode+1436"
},
{
"pc": "0x00007ff7b0f5a860",
"symbol": "v8::internal::Heap::ProtectUnprotectedMemoryChunks+1312"
},
{
"pc": "0x00007ff7b0f57394",
"symbol": "v8::internal::Heap::PageFlagsAreConsistent+3204"
},
{
"pc": "0x00007ff7b0f4cc23",
"symbol": "v8::internal::Heap::CollectGarbage+1283"
},
{
"pc": "0x00007ff7b0f4b3f4",
"symbol": "v8::internal::Heap::AddRetainedMap+2356"
},
{
"pc": "0x00007ff7b0f7119c",
"symbol": "v8::internal::Factory::NewMap+60"
},
{
"pc": "0x00007ff7b0ddaa76",
"symbol": "v8::internal::Map::PrepareForDataProperty+1158"
},
{
"pc": "0x00007ff7b0dd619d",
"symbol": "v8::internal::Map::CompleteInobjectSlackTracking+2829"
},
{
"pc": "0x00007ff7b0ddb6c2",
"symbol": "v8::internal::Map::SetPrototype+642"
},
{
"pc": "0x00007ff7b0dd5d8b",
"symbol": "v8::internal::Map::CompleteInobjectSlackTracking+1787"
},
{
"pc": "0x00007ff7b0dd6d6c",
"symbol": "v8::internal::Map::CopyWithField+364"
},
{
"pc": "0x00007ff7b0ddc614",
"symbol": "v8::internal::Map::TransitionToDataProperty+740"
},
{
"pc": "0x00007ff7b0de36e6",
"symbol": "v8::internal::LookupIterator::PrepareTransitionToDataProperty+534"
},
{
"pc": "0x00007ff7b0db1356",
"symbol": "v8::internal::PrototypeUsers::Add+2038"
},
{
"pc": "0x00007ff7b0df4f47",
"symbol": "v8::internal::JSObject::DefineAccessor+1383"
},
{
"pc": "0x00007ff7b0e05614",
"symbol": "v8::internal::JSObject::TransitionElementsKind+1940"
},
{
"pc": "0x00007ff7b0e00d82",
"symbol": "v8::internal::JSObject::NormalizeProperties+1778"
},
{
"pc": "0x00007ff7b0df4b13",
"symbol": "v8::internal::JSObject::DefineAccessor+307"
},
{
"pc": "0x00007ff7b100bf91",
"symbol": "v8::internal::Builtins::builtin_handle+55873"
},
{
"pc": "0x00007ff7b100ce0e",
"symbol": "v8::internal::Builtins::builtin_handle+59582"
},
{
"pc": "0x00007ff7b14c590d",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+568205"
},
{
"pc": "0x00007ff7b144539c",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+42524"
},
{
"pc": "0x00007ff7b144539c",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+42524"
},
{
"pc": "0x00007ff7b14d86b8",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+645432"
},
{
"pc": "0x00007ff7b144539c",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+42524"
},
{
"pc": "0x00007ff7b1442951",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+31697"
},
{
"pc": "0x00007ff7b144253c",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+30652"
},
{
"pc": "0x00007ff7b0fa7ae3",
"symbol": "v8::internal::Execution::CallWasm+1395"
},
{
"pc": "0x00007ff7b0fa7466",
"symbol": "v8::internal::Execution::Call+182"
},
{
"pc": "0x00007ff7b10786db",
"symbol": "v8::Function::Call+603"
},
{
"pc": "0x00007ff7b090cac0",
"symbol": "node::InitializeContext+816"
},
{
"pc": "0x00007ff7b090ce02",
"symbol": "node::NewContext+82"
},
{
"pc": "0x00007ff7b089ee41",
"symbol": "v8::base::CPU::has_sse+62705"
},
{
"pc": "0x00007ff7b08a027b",
"symbol": "v8::base::CPU::has_sse+67883"
},
{
"pc": "0x00007ff7b1445fbc",
"symbol": "v8::internal::SetupIsolateDelegate::SetupHeap+45628"
},
{
"pc": "0x0000005802cfca0c",
"symbol": ""
}
],
"javascriptHeap": {
"totalMemory": 2160308224,
"totalCommittedMemory": 2160308224,
"usedMemory": 2017386536,
"availableMemory": 41863104,
"memoryLimit": 2197815296,
"heapSpaces": {
"read_only_space": {
"memorySize": 262144,
"committedMemory": 262144,
"capacity": 261872,
"used": 32296,
"available": 229576
},
"new_space": {
"memorySize": 4194304,
"committedMemory": 4194304,
"capacity": 2094976,
"used": 63496,
"available": 2031480
},
"old_space": {
"memorySize": 1648996352,
"committedMemory": 1648996352,
"capacity": 1522801872,
"used": 1522801872,
"available": 0
},
"code_space": {
"memorySize": 7503872,
"committedMemory": 7503872,
"capacity": 6885152,
"used": 6885152,
"available": 0
},
"map_space": {
"memorySize": 266604544,
"committedMemory": 266604544,
"capacity": 255893840,
"used": 255893840,
"available": 0
},
"large_object_space": {
"memorySize": 231542784,
"committedMemory": 231542784,
"capacity": 230609464,
"used": 230609464,
"available": 0
},
"code_large_object_space": {
"memorySize": 1204224,
"committedMemory": 1204224,
"capacity": 1100416,
"used": 1100416,
"available": 0
},
"new_large_object_space": {
"memorySize": 0,
"committedMemory": 0,
"capacity": 2094976,
"used": 0,
"available": 2094976
}
}
},
"resourceUsage": {
"userCpuSeconds": 1543.03,
"kernelCpuSeconds": 261.671,
"cpuConsumptionPercent": 9.74303,
"maxRss": 1993515008,
"pageFaults": {
"IORequired": 7415046,
"IONotRequired": 0
},
"fsActivity": {
"reads": 71063,
"writes": 383
}
},
"libuv": [
],
"environmentVariables": {
"": "C:=C:\\",
"ALLUSERSPROFILE": "C:\\ProgramData",
"ANDROID_HOME": "F:\\sdk",
"APPDATA": "C:\\Users\\高浩杰\\AppData\\Roaming",
"CCHZPATH": "D:\\数学建模\\CTEX\\CTeX\\cct\\fonts",
"CCPKPATH": "D:\\数学建模\\CTEX\\CTeX\\fonts\\pk\\modeless\\cct\\dpi$d",
"CommonProgramFiles": "C:\\Program Files\\Common Files",
"CommonProgramFiles(x86)": "C:\\Program Files (x86)\\Common Files",
"CommonProgramW6432": "C:\\Program Files\\Common Files",
"COMPUTERNAME": "LAPTOP-I32DFO3J",
"ComSpec": "C:\\WINDOWS\\system32\\cmd.exe",
"configsetroot": "C:\\WINDOWS\\ConfigSetRoot",
"DriverData": "C:\\Windows\\System32\\Drivers\\DriverData",
"FPS_BROWSER_APP_PROFILE_STRING": "Internet Explorer",
"FPS_BROWSER_USER_PROFILE_STRING": "Default",
"HOMEDRIVE": "C:",
"HOMEPATH": "\\Users\\高浩杰",
"INIT_CWD": "D:\\beyond-clouds-front",
"IntelliJ IDEA Educational Edition": "D:\\idea\\IntelliJ IDEA Educational Edition 2019.3\\bin;",
"JAVA_HOME": "C:\\Program Files\\Java\\jdk1.8.0_161",
"LNKEVN": "C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe",
"LOCALAPPDATA": "C:\\Users\\高浩杰\\AppData\\Local",
"LOGONSERVER": "\\\\LAPTOP-I32DFO3J",
"NODE": "D:\\Program Files\\nodejs\\node.exe",
"NODE_ENV": "development",
"npm_config_argv": "{\"remain\":[],\"cooked\":[\"run\",\"dev\"],\"original\":[\"dev\"]}",
"npm_config_bin_links": "true",
"npm_config_ignore_optional": "",
"npm_config_ignore_scripts": "",
"npm_config_init_license": "MIT",
"npm_config_init_version": "1.0.0",
"npm_config_registry": "https://registry.yarnpkg.com",
"npm_config_save_prefix": "^",
"npm_config_strict_ssl": "true",
"npm_config_user_agent": "yarn/1.13.0 npm/? node/v12.11.0 win32 x64",
"npm_config_version_commit_hooks": "true",
"npm_config_version_git_message": "v%s",
"npm_config_version_git_sign": "",
"npm_config_version_git_tag": "true",
"npm_config_version_tag_prefix": "v",
"npm_execpath": "C:\\Users\\高浩杰\\AppData\\Roaming\\npm\\node_modules\\yarn\\bin\\yarn.js",
"npm_lifecycle_event": "dev",
"npm_lifecycle_script": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"npm_node_execpath": "D:\\Program Files\\nodejs\\node.exe",
"npm_package_author_name": "pigbigbig",
"npm_package_dependencies_axios": "^0.19.0",
"npm_package_dependencies_cookieparser": "^0.1.0",
"npm_package_dependencies_cross_env": "^5.2.0",
"npm_package_dependencies_highlight_js": "^9.18.1",
"npm_package_dependencies_js_cookie": "^2.2.1",
"npm_package_dependencies_koa": "^2.6.2",
"npm_package_dependencies_mavon_editor": "^2.7.7",
"npm_package_dependencies_nuxt": "^2.0.0",
"npm_package_dependencies_vue_cropper": "^0.4.9",
"npm_package_dependencies__nuxtjs_axios": "^5.9.5",
"npm_package_description": "beyond-clouds project ",
"npm_package_devDependencies_babel_jest": "^24.1.0",
"npm_package_devDependencies_jest": "^24.1.0",
"npm_package_devDependencies_nodemon": "^1.18.9",
"npm_package_devDependencies_node_sass": "^4.13.0",
"npm_package_devDependencies_sass_loader": "^7.3.1",
"npm_package_devDependencies_vue_jest": "^4.0.0-0",
"npm_package_devDependencies__vue_test_utils": "^1.0.0-beta.27",
"npm_package_name": "beyond-clouds-front",
"npm_package_private": "true",
"npm_package_readmeFilename": "README.md",
"npm_package_scripts_build": "nuxt build",
"npm_package_scripts_dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"npm_package_scripts_generate": "nuxt generate",
"npm_package_scripts_start": "cross-env NODE_ENV=production node server/index.js",
"npm_package_scripts_test": "jest",
"npm_package_version": "1.0.0",
"NUMBER_OF_PROCESSORS": "8",
"NVM_HOME": "F:\\node\\nvm",
"NVM_SYMLINK": "D:\\Program Files\\nodejs",
"OneDrive": "C:\\Users\\高浩杰\\OneDrive",
"OS": "Windows_NT",
"Path": "C:\\Users\\高浩杰\\AppData\\Local\\Temp\\yarn--1581643801952-0.22824986026235483;D:\\beyond-clouds-front\\node_modules\\.bin;C:\\Users\\高浩杰\\AppData\\Local\\Yarn\\Data\\link\\node_modules\\.bin;D:\\beyond-clouds-front\\node_modules\\.bin;C:\\Users\\高浩杰\\AppData\\Local\\Yarn\\Data\\link\\node_modules\\.bin;C:\\Users\\高浩杰\\AppData\\Local\\Yarn\\bin;D:\\Program Files\\libexec\\lib\\node_modules\\npm\\bin\\node-gyp-bin;D:\\Program Files\\lib\\node_modules\\npm\\bin\\node-gyp-bin;D:\\Program Files\\nodejs\\node_modules\\npm\\bin\\node-gyp-bin;C:\\ProgramData\\Oracle\\Java\\javapath;C:\\Program Files (x86)\\Intel\\Intel(R) Management Engine Components\\iCLS\\;C:\\Program Files\\Intel\\Intel(R) Management Engine Components\\iCLS\\;C:\\Windows\\system32;C:\\Windows;C:\\Windows\\System32\\Wbem;C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\;C:\\Windows\\System32\\OpenSSH\\;C:\\Program Files (x86)\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files\\Intel\\Intel(R) Management Engine Components\\DAL;C:\\Program Files (x86)\\Intel\\Intel(R) Management Engine Components\\IPT;C:\\Program Files\\Intel\\Intel(R) Management Engine Components\\IPT;C:\\Program Files (x86)\\NVIDIA Corporation\\PhysX\\Common;C:\\MinGW (1)\\bin;F:\\sdk;F:\\sdk\\platform-tools;F:\\sdk\\tools;C:\\Program Files\\Java\\jdk1.8.0_161\\bin;E:\\Program Files\\Git\\cmd;D:\\数学建模\\CTEX\\UserData\\miktex\\bin;D:\\数学建模\\CTEX\\MiKTeX\\miktex\\bin;D:\\数学建模\\CTEX\\CTeX\\ctex\\bin;D:\\数学建模\\CTEX\\CTeX\\cct\\bin;D:\\数学建模\\CTEX\\CTeX\\ty\\bin;D:\\数学建模\\CTEX\\Ghostscript\\gs9.05\\bin;D:\\数学建模\\CTEX\\GSview\\gsview;D:\\数学建模\\CTEX\\WinEdt;F:\\node\\nvm;D:\\Program Files\\nodejs;C:\\WINDOWS\\system32;C:\\WINDOWS;C:\\WINDOWS\\System32\\Wbem;C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\;C:\\WINDOWS\\System32\\OpenSSH\\;C:\\Ruby26-x64\\bin;C:\\Users\\高浩杰\\AppData\\Local\\Programs\\Python\\Python37\\Scripts\\;C:\\Users\\高浩杰\\AppData\\Local\\Programs\\Python\\Python37\\;C:\\Users\\高浩杰\\AppData\\Local\\Programs\\Python\\Python37-32\\Scripts\\;C:\\Users\\高浩杰\\AppData\\Local\\Programs\\Python\\Python37-32\\;C:\\Users\\高浩杰\\AppData\\Local\\Microsoft\\WindowsApps;D:\\vscode\\Microsoft VS Code\\bin;C:\\Users\\高浩杰\\AppData\\Roaming\\npm;F:\\node\\nvm;D:\\Program Files\\nodejs;;D:\\idea\\IntelliJ IDEA Educational Edition 2019.3\\bin;",
"PATHEXT": ".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JSE;.WSF;.WSH;.MSC;.RB;.RBW",
"PROCESSOR_ARCHITECTURE": "AMD64",
"PROCESSOR_IDENTIFIER": "Intel64 Family 6 Model 158 Stepping 10, GenuineIntel",
"PROCESSOR_LEVEL": "6",
"PROCESSOR_REVISION": "9e0a",
"ProgramData": "C:\\ProgramData",
"ProgramFiles": "C:\\Program Files",
"ProgramFiles(x86)": "C:\\Program Files (x86)",
"ProgramW6432": "C:\\Program Files",
"PROMPT": "$P$G",
"PSModulePath": "C:\\Program Files\\WindowsPowerShell\\Modules;C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\Modules",
"PUBLIC": "C:\\Users\\Public",
"SESSIONNAME": "Console",
"SystemDrive": "C:",
"SystemRoot": "C:\\WINDOWS",
"TEMP": "C:\\Users\\高浩杰\\AppData\\Local\\Temp",
"TMP": "C:\\Users\\高浩杰\\AppData\\Local\\Temp",
"USERDOMAIN": "LAPTOP-I32DFO3J",
"USERDOMAIN_ROAMINGPROFILE": "LAPTOP-I32DFO3J",
"USERNAME": "高浩杰",
"USERPROFILE": "C:\\Users\\高浩杰",
"VBOX_MSI_INSTALL_PATH": "D:\\monden\\",
"VUE_ENV": "server",
"windir": "C:\\WINDOWS",
"YARN_WRAP_OUTPUT": "false",
"_AXIOS_BASE_URL_": "http://localhost:3010/"
},
"sharedObjects": [
"D:\\Program Files\\nodejs\\node.exe",
"C:\\WINDOWS\\SYSTEM32\\ntdll.dll",
"C:\\WINDOWS\\System32\\KERNEL32.DLL",
"C:\\WINDOWS\\System32\\KERNELBASE.dll",
"C:\\WINDOWS\\System32\\WS2_32.dll",
"C:\\WINDOWS\\System32\\RPCRT4.dll",
"C:\\WINDOWS\\System32\\ADVAPI32.dll",
"C:\\WINDOWS\\System32\\msvcrt.dll",
"C:\\WINDOWS\\System32\\sechost.dll",
"C:\\WINDOWS\\SYSTEM32\\dbghelp.dll",
"C:\\WINDOWS\\System32\\USER32.dll",
"C:\\WINDOWS\\System32\\ucrtbase.dll",
"C:\\WINDOWS\\System32\\win32u.dll",
"C:\\WINDOWS\\System32\\GDI32.dll",
"C:\\WINDOWS\\System32\\gdi32full.dll",
"C:\\WINDOWS\\System32\\msvcp_win.dll",
"C:\\WINDOWS\\System32\\PSAPI.DLL",
"C:\\WINDOWS\\System32\\CRYPT32.dll",
"C:\\WINDOWS\\System32\\MSASN1.dll",
"C:\\WINDOWS\\System32\\bcrypt.dll",
"C:\\WINDOWS\\SYSTEM32\\IPHLPAPI.DLL",
"C:\\WINDOWS\\SYSTEM32\\USERENV.dll",
"C:\\WINDOWS\\System32\\profapi.dll",
"C:\\WINDOWS\\SYSTEM32\\WINMM.dll",
"C:\\WINDOWS\\SYSTEM32\\winmmbase.dll",
"C:\\WINDOWS\\System32\\cfgmgr32.dll",
"C:\\WINDOWS\\System32\\bcryptPrimitives.dll",
"C:\\WINDOWS\\System32\\IMM32.DLL",
"C:\\WINDOWS\\System32\\powrprof.dll",
"C:\\WINDOWS\\System32\\UMPDC.dll",
"C:\\WINDOWS\\system32\\uxtheme.dll",
"C:\\WINDOWS\\System32\\combase.dll",
"C:\\WINDOWS\\system32\\mswsock.dll",
"C:\\WINDOWS\\System32\\kernel.appcore.dll",
"\\\\?\\D:\\beyond-clouds-front\\node_modules\\node-sass\\vendor\\win32-x64-72\\binding.node",
"C:\\WINDOWS\\SYSTEM32\\CRYPTBASE.DLL",
"C:\\WINDOWS\\System32\\NSI.dll",
"C:\\WINDOWS\\SYSTEM32\\dhcpcsvc6.DLL",
"C:\\WINDOWS\\SYSTEM32\\dhcpcsvc.DLL",
"C:\\WINDOWS\\SYSTEM32\\DNSAPI.dll",
"C:\\Windows\\System32\\rasadhlp.dll",
"C:\\WINDOWS\\System32\\fwpuclnt.dll",
"C:\\WINDOWS\\system32\\napinsp.dll",
"C:\\WINDOWS\\system32\\pnrpnsp.dll",
"C:\\WINDOWS\\System32\\winrnr.dll",
"C:\\WINDOWS\\system32\\NLAapi.dll",
"C:\\WINDOWS\\system32\\wshbth.dll"
]
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment