Commit 436f2410 by 李宏达

lhd

parents d35551b9 df9a4b03
......@@ -1225,6 +1225,66 @@ class CPatentAggregationsApi extends ApiBase {
};
async ApplKeywordAggs(obj) {//申请人关键词双重聚合
var params = {
"query": {
"bool": {
"must": []
}
},
"from": 0,
"size": 1,
"aggregations": {
"group_by_appl": {
"terms": {
"field": "applicant_name.raw",
"size": 10,
"order": {
"_count": "desc"
}
},
"aggregations": {
"group_by_keyword": {
"terms": {
"field": "key_word",
"size": 20,
"order": {
"_count": "desc"
}
}
}
}
}
}
};
for (var x in obj) {
params.query.bool.must.push(obj[x]);
}
var rc = System.getObject("util.execClient");
var rtn = null;
var requrl = this.patentUrl;
try {
rtn = await rc.execPost(params, requrl);
var j = JSON.parse(rtn.stdout);
return rtn = {
status: 0,
msg: "操作成功",
data: j.hits,
buckets: j.aggregations
};
} catch (e) {
return rtn = {
status: -1,
msg: "操作失败",
data: null,
buckets: null
};
}
};
async AppIpclgAggs(obj) {//Ipc大组聚合
var params = {
"query": {
......
......@@ -334,7 +334,7 @@ class RegionalpatentmonitoringCtl {
}
async aliBusinessDecision(obj){//IP智慧管理
async aliBusinessDecision(obj){//企业智慧管理
var entName = obj.entName;
var year = obj.year;
if(!entName){
......
......@@ -97,7 +97,7 @@ module.exports = {
{
"code": "businessdecisions",
"icon": "fa fa-search",
"label": "IP智慧管理",
"label": "企业智慧管理",
"bizCode": "businessdecisions",
"bizConfig": null,
"path": ""
......@@ -105,7 +105,7 @@ module.exports = {
{
"code": "businessdecisionsresult",
"icon": "fa fa-search",
"label": "IP智慧管理查询结果",
"label": "企业智慧管理查询结果",
"bizCode": "businessdecisionsresult",
"bizConfig": null,
"path": ""
......@@ -118,11 +118,37 @@ module.exports = {
"bizConfig": null,
"path": ""
},
{
"code": "iframehtmlTabs",
"icon": "fa fa-search",
"label": "网页嵌入",
"bizCode": "iframehtmlTabs",
"bizConfig": null,
"path": ""
},
{
"code": "competitiveanalysis",
"icon": "fa fa-search",
"label": "竞争企业分析",
"bizCode": "competitiveanalysis",
"bizConfig": null,
"path": ""
},
{
"code": "enterprisecontrast",
"icon": "fa fa-search",
"label": "竞争企业分析",
"bizCode": "enterprisecontrast",
"bizConfig": null,
"path": ""
}
],
},
"bizs": {
"iframehtml": {"title": "网页嵌入", "config": null, "path": "/iframehtml", "comname": "iframehtml"},
"iframehtmlTabs": {"title": "网页嵌入", "config": null, "path": "/iframehtmlTabs", "comname": "iframehtmlTabs"},
"competitiveanalysis": {"title": "竞争企业分析", "config": null, "path": "/competitiveanalysis", "comname": "competitiveanalysis"},
"enterprisecontrast": {"title": "竞争企业分析", "config": null, "path": "/enterprisecontrast", "comname": "enterprisecontrast"},
"home": {"title": "首页", "config": null, "path": "/", "comname": "home"},
"regionalpatentmonitoring": {"title": "监控", "config": null, "path": "/regionalpatentmonitoring", "comname": "regionalpatentmonitoring"},
"regionalpatentmonitoringdetails": {"title": "监控详情", "config": null, "path": "/regionalpatentmonitoringdetails", "comname": "regionalpatentmonitoringdetails"},
......@@ -187,20 +213,33 @@ module.exports = {
"comname": "regionalpatentmonitoringdetails"
},
"businessdecisions":{
"title": "IP智慧管理",
"title": "企业智慧管理",
"config": null,
"isDynamicRoute": false,
"path": "/businessdecisions",
"comname": "businessdecisions"
},
"businessdecisionsresult":{
"title": "IP智慧管理查询结果",
"title": "企业智慧管理查询结果",
"config": null,
"isDynamicRoute": false,
"path": "/businessdecisionsresult",
"comname": "businessdecisionsresult"
},
"competitiveanalysis":{
"title": "竞争企业分析",
"config": null,
"isDynamicRoute": false,
"path": "/businessdecisionsresult",
"comname": "businessdecisionsresult"
},
"path": "/competitiveanalysis",
"comname": "competitiveanalysis"
},
"enterprisecontrast":{
"title": "竞争企业分析",
"config": null,
"isDynamicRoute": false,
"path": "/enterprisecontrast",
"comname": "enterprisecontrast"
},
},
"pauths": [
"add", "edit", "delete", "export", "show"
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -6,12 +6,16 @@ class ExecClient {
constructor() {
this.cmdPostPattern = "curl --user admines:adminGSBes. -k -H 'Content-type: application/json' -d '{data}' {url}";
this.cmdGetPattern = "curl -G -X GET '{url}'";
this.cmdPostPattern2 = "curl -k -H 'Content-type: application/json' -d '{data}' {url}";
this.cmdPostPattern3 = "curl -k -H 'Content-type: application/json' -H 'token: {token}' -d '{data}' {url}";
}
async exec(cmd) {
//await后面表达式返回的promise对象,是then的语法糖,await返回then函数的返回值
//异常需要try/catch自己捕获或外部catch捕获
const {stdout, stderr} = await exec(cmd);
const {stdout, stderr} = await exec(cmd,{
maxBuffer: 40960 * 1024
});
return {stdout, stderr};
}
......@@ -28,12 +32,39 @@ class ExecClient {
return cmd;
}
FetchPostCmd2(subData, url) {
var data = JSON.stringify(subData);
var cmd = this.cmdPostPattern2.replace(/\{data\}/g,
data).replace(/\{url\}/g, url);
console.log(cmd);
return cmd;
}
FetchPostCmd3(token,subData, url) {
var data = JSON.stringify(subData);
var cmd = this.cmdPostPattern3.replace(/\{token\}/g,token).replace(/\{data\}/g,data).replace(/\{url\}/g, url);
console.log(cmd);
return cmd;
}
async execPost(subData, url) {
let cmd = this.FetchPostCmd(subData, url);
var result = await this.exec(cmd);
return result;
}
async execPost3(subData, url) {
let cmd = this.FetchPostCmd2(subData, url);
var result = await this.exec(cmd);
return result;
}
async execPost4(token,subData, url) {
let cmd = this.FetchPostCmd3(token,subData, url);
var result = await this.exec(cmd);
return result;
}
async execPost2(subData, url) {
let cmd = this.FetchPostCmd(subData, url);
var result = await this.exec2(cmd);
......@@ -49,7 +80,9 @@ class ExecClient {
async execGet(subData, url) {
let cmd = this.FetchGetCmd(subData, url);
console.log("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
console.log(cmd);
console.log("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
var result = await this.exec(cmd);
return result;
}
......
var settings={
redis:{
host: "43.247.184.32",
host: "121.36.3.35",
port: 8967,
password:"Gongsibao2018",
db: 11,
......
......@@ -175,13 +175,19 @@
bottom: 0;
margin: auto;
}
.el-tooltip__popper.is-light {
max-width: 80% !important;
}
.el-menu-item {
outline: none !important;
}
</style>
</head>
<body>
<div id="app" v-loading="loading" class="app-main" style="visibility: hidden">
<div id="header" :class="typeHome ? 'app-headerHome' : 'app-header'">
<el-row style="border-bottom:none;padding: 0px">
<el-col :span="4" style="min-width:205px;text-align: center;">
<el-row style="border-bottom:none;padding: 0px;min-width: 1244px;">
<el-col :span="2" style="min-width:150px;text-align: center;">
<!-- <el-button type="text" style="font-size:24px;font-size: 0.24rem;" @click="navRoute('首页')">知识产权运营平台</el-button> -->
<img v-if="typeHome" style="margin-top: 14px;margin-left: 32px;cursor: pointer;" @click="NavIndexRoute('首页')" src="/imgs/home/logoimg1.png" alt="">
<img v-if="!typeHome" style="margin-top: 14px;cursor: pointer;" src="/imgs/home/logos.png" @click="NavIndexRoute('首页')" alt="">
......@@ -189,10 +195,10 @@
<!-- <el-col :span="17" class="spechorizotal">
<gsb-topmenu ref="topmenu" mode="horizontal" formatprop="formatItem" bkcolor="black" @menuselect="onMenuSelect"></gsb-topmenu>
</el-col> -->
<el-col v-if='!typeHome' :span="17" style="min-width:880px">
<el-col v-if='!typeHome' :span="19" style="min-width:880px">
<gsb-nav @navroute="NavIndexRoute" :navarr="navarr"></gsb-nav>
</el-col>
<el-col :span="3" style="float:right;min-width: 100px;" v-if="!currentUser">
<el-col :span="2" style="float:right;min-width: 100px;" v-if="!currentUser">
<el-button type="text" style="font-size: 0.14rem;" @click="onselect('login')">登录</el-button>
<el-button type="text" style="font-size: 0.14rem;" @click="onselect('register')">注册</el-button>
<div></div>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -562,7 +562,7 @@ hr {
text-align:left;
}
.patentanalysis-wrap{
border-top:1px solid #e6e6e6;
/* border-top:1px solid #e6e6e6; */
padding-left: 200px;
}
.patentanalysis-leftpart{
......

12.1 KB | W: | H:

27.3 KB | W: | H:

ipop-web/app/front/entry/public/imgs/bgj1.png
ipop-web/app/front/entry/public/imgs/bgj1.png
ipop-web/app/front/entry/public/imgs/bgj1.png
ipop-web/app/front/entry/public/imgs/bgj1.png
  • 2-up
  • Swipe
  • Onion skin

29.7 KB | W: | H:

26.5 KB | W: | H:

ipop-web/app/front/entry/public/imgs/title.png
ipop-web/app/front/entry/public/imgs/title.png
ipop-web/app/front/entry/public/imgs/title.png
ipop-web/app/front/entry/public/imgs/title.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -149,30 +149,36 @@ axios.get("/vue/comp/base").then(function(res){
store:store,
data:function(){
return {
homeType: true,
navarr:[
{
name:'首页'
},{
name:'智能检索',
obj:['专利检索','高级检索']
},{
name:'智能检索'
},{
name:'智能分析'
},{
name:'IP智慧城市',
obj:['产业创新监测','创新人才发现','IP创新管理']
},{
name:'智能估价'
},{
name:'创新资源共享'
name:'企业智慧管理'
},{
name:'智能分类'
name:'产业创新监测'
},{
name:'智能采集'
name:'IP智慧城市'
},{
name:'创新人才发现'
},{
name:'知识产权运营'
},{
name: '创新资源共享'
},{
name:'更多',
obj:['智能采集','智能分类','智能翻译']
}
],
// {
// name:'企业级服务',
// obj:['IP智慧管理','智能估价']
// obj:['企业智慧管理','智能估价']
// }
// {
// name:'政府级服务',
......@@ -221,6 +227,70 @@ axios.get("/vue/comp/base").then(function(res){
},
}),
created(){
let navarr = [
{
name:'首页'
},{
name:'智能检索'
},{
name:'智能分析'
},{
name:'智能估价'
},{
name:'企业智慧管理'
},{
name:'产业创新监测'
},{
name:'IP智慧城市'
},{
name:'创新人才发现'
},{
name:'知识产权运营'
},{
name:'创新资源共享'
},{
name:'智能采集'
},{
name:'智能分类'
},{
name:'智能翻译'
}
];
var that = this;
that.navarr = [];
let a = {
name: '更多',
obj: []
};
let clientWidth = document.body.clientWidth - 400;
for(let i=0; i<navarr.length; i++) {
if ((i * 124) <= clientWidth) {
that.navarr.push(navarr[i])
}else {
a.obj.push(navarr[i].name)
}
};
if (a.obj.length > 0) {
that.navarr.push(a)
};
$(window).resize(function(){
that.navarr = [];
let a = {
name: '更多',
obj: []
};
let clientWidth = document.body.clientWidth - 400;
for(let i=0; i<navarr.length; i++) {
if ((i * 124) <= clientWidth) {
that.navarr.push(navarr[i])
}else {
a.obj.push(navarr[i].name)
}
};
if (a.obj.length > 0) {
that.navarr.push(a)
}
})
var url = window.location.href;
var arr1 = url.split("/#");
var titleValue = "";
......@@ -307,15 +377,21 @@ axios.get("/vue/comp/base").then(function(res){
setTimeout(()=>{
this.loadingHome = false;
},1000);
}else if ( v == 'IP创新管理') {
}else if ( v == '企业智慧管理') {
this.typeHome = false;
this.pushx({ name:'/businessdecisions'});
}else if(v== "高级检索"){
this.typeHome = false;
this.pushx({name:"/patentadvancedsearch",title:"高级检索"})
}else if(v== "专利检索"){
this.typeHome = false;
this.pushx({name:"/patentsimplesearch",title:"专利检索"})
}else if(v== "智能检索"){
this.typeHome = false;
this.pushx({name:"/patentsimplesearch",title:"智能检索"})
}else if(v== "智能分析"){
this.typeHome = false;
this.pushx({name:"/patentanalysis",title:"智能分析"})
}else if(v== "智能估价"){
this.typeHome = false;
this.loadingHome = true;
......@@ -327,6 +403,10 @@ axios.get("/vue/comp/base").then(function(res){
}else if(v== "创新人才发现"){
this.typeHome = false;
<<<<<<< HEAD
=======
// window.open("https://gct.aminer.cn/");
>>>>>>> df9a4b0324cd0c8eb5fbab653ded5482ba856b9b
this.loadingHome = true;
var url = encodeURIComponent("https://gct.aminer.cn/");
this.pushx({name:"/iframehtml",title:"创新人才发现",params:{url:url}});
......@@ -334,14 +414,35 @@ axios.get("/vue/comp/base").then(function(res){
this.loadingHome = false;
},1500);
}else if(v== "知识产权运营"){
<<<<<<< HEAD
this.typeHome = false;
this.loadingHome = true;
var url = encodeURIComponent("https://www.cnuip.com/");
this.pushx({name:"/iframehtml",title:"知识产权运营",params:{url:url}});
=======
// window.open("https://www.cnuip.com/");
this.typeHome = false;
this.loadingHome = true;
var url = encodeURIComponent("http://101.132.173.37:8110/");
this.pushx({name:"/iframehtmlTabs",title:"知识产权运营",params:{url:url}});
setTimeout(()=>{
this.loadingHome = false;
},1500);
}else if(v== "智能分类"){
// window.open("https://www.cnuip.com/");
this.typeHome = false;
this.loadingHome = true;
var url = encodeURIComponent("http://125.34.170.146/");
this.pushx({name:"/iframehtml",title:"智能分类",params:{url:url}});
>>>>>>> df9a4b0324cd0c8eb5fbab653ded5482ba856b9b
setTimeout(()=>{
this.loadingHome = false;
},1500);
}else if(v== "智能采集"){
<<<<<<< HEAD
=======
// window.open("http://47.104.94.221:8001/wiki");
>>>>>>> df9a4b0324cd0c8eb5fbab653ded5482ba856b9b
this.typeHome = false;
this.loadingHome = true;
var url = encodeURIComponent("http://47.104.94.221:8001/wiki");
......@@ -349,6 +450,18 @@ axios.get("/vue/comp/base").then(function(res){
setTimeout(()=>{
this.loadingHome = false;
},1500);
<<<<<<< HEAD
=======
}else if(v== "智能翻译"){
// window.open("http://47.104.94.221:8001/wiki");
this.typeHome = false;
this.loadingHome = true;
var url = encodeURIComponent("http://125.34.170.146:8080/translate");
this.pushx({name:"/iframehtml",title:"智能翻译",params:{url:url}});
setTimeout(()=>{
this.loadingHome = false;
},1500);
>>>>>>> df9a4b0324cd0c8eb5fbab653ded5482ba856b9b
}else if(v== "创新资源共享"){
this.typeHome = false;
this.loadingHome = true;
......
......@@ -33,7 +33,7 @@ module.exports=
};
},
mounted:function(){
},
watch:{
......
......@@ -36,7 +36,7 @@
margin-bottom: 59px;
}
.bd-main-input {
width: 976px;
width: 832px;
height: 78px;
border-radius: 6px;
background-color: rgba(17,132,224,0.2);
......@@ -44,6 +44,12 @@
padding: 10px;
box-sizing: border-box;
}
.bd-main-radio {
width: 832px;
height: 38px;
margin: 0 auto;
text-align: left;
}
.bd-input {
float: left;
width:668px;
......@@ -86,4 +92,19 @@
margin-left: 10px;
color: #fff;
cursor: pointer;
}
.businessdecisions .el-radio-button__inner {
background: transparent;
color: #fff;
border: none;
}
.businessdecisions .el-radio-button:first-child .el-radio-button__inner {
border-left: none;
}
.businessdecisions .el-radio-button__orig-radio:checked+.el-radio-button__inner {
color: #409EFF;
background-color: transparent;
border-color: transparent;
-webkit-box-shadow: -1px 0 0 0 transparent;
box-shadow: -1px 0 0 0 transparent;
}
\ No newline at end of file
......@@ -2,11 +2,33 @@
template:'${tmpl}',
data:function(){
return {
radio1: '深度分析',
year:"全部年份",
entName:"",
}
},
mounted:function(){
$('#wave-container').hover(function(){
$("#wave-container").addClass("animate-wave-container-hover");
},function(){
$("#wave-container").removeClass("animate-wave-container-hover");
});
},
methods:{
search1(val){
if (typeof val == 'string') {
console.log(val, this.radio1);
this.entName = val;
this.chaxun();
};
/*this.total=0;
this.currentpage=1;
清楚勾选的痕迹
this.checkAllAnalysis=false;
this.checkListAnalysis=[];
this.multipleSelection=[];
this.search();*/
},
chaxun () {
var obj={entName:"",year:""};
if(this.year && this.year!="全部年份" ){
......@@ -18,10 +40,18 @@
this.$message.warning("请填写企业名称");
return;
}
this.$root.pushx({
name:"/businessdecisionsresult",
params:obj
});
if (this.radio1 === '深度分析') {
this.$root.pushx({
name:"/businessdecisionsresult",
params:obj
});
}else {
this.$root.pushx({
name:"/competitiveanalysis",
params:obj
});
}
},
aliBusinessDecision(){
......
......@@ -499,7 +499,7 @@
this.year=this.$router.history.current.query.year || "";
if(!this.entName){
this.$root.pushx(
{ name:'/businessdecisions',title:"IP智慧管理"}
{ name:'/businessdecisions',title:"企业智慧管理"}
);
return ;
}
......@@ -514,7 +514,7 @@
this.initParams();
}else{
this.$root.pushx(
{ name:'/businessdecisions',title:"IP智慧管理"}
{ name:'/businessdecisions',title:"企业智慧管理"}
);
return ;
}*/
......
.competitiveanalysis {
width: 100%;
height: 100%;
padding-bottom: 20px;
background:rgba(15,12,63,1);
}
.competitiveanalysis .main {
width: 1200px;
height: 100%;
margin: 0 auto;
}
.competitiveanalysis .title {
width: 100%;
height: 63px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.title-div {
display: inline-block;
font-size:24px;
font-family:Microsoft YaHei;
font-weight:400;
color:rgba(0,160,234,1);
line-height:63px;
}
.title-span {
position: absolute;
left: 0;
font-size:14px;
font-family:Microsoft YaHei;
font-weight:400;
color:rgba(255,255,255,1);
cursor: pointer;
}
.title-span span {
margin-right: 4px;
}
.lhd_header {
width:100%;
min-height:140px;
background:rgba(15,12,63,1);
border:1px solid rgba(17,132,224,1);
padding: 10px;
box-sizing: border-box;
text-align: left;
margin-top: 15px;
overflow: hidden;
}
.lhd_header .left {
float: left;
width: 120px;
height: 120px;
text-align: center;
}
.lhd_header .right {
float: left;
/* width: calc(100% - 120px); */
height: 100%;
color: #fff;
padding-left: 20px;
box-sizing: border-box;
line-height: 40px;
}
.lhd_header .right div {
color: rgba(255, 255, 255, 1);
}
.lhd_header .right div span {
color: rgba(174, 210, 255, 1);
margin-right: 37px;
}
.lhd_h3 {
font-size:20px;
font-family:Microsoft YaHei;
font-weight:bold;
color:rgba(255,255,255,1);
}
.lhd_table {
width: 100%;
}
.lhd_table_top {
width:1200px;
height:60px;
background:rgba(27,37,106,0.8);
border:1px solid rgba(17,132,224,1);
font-size:14px;
font-family:Microsoft YaHei;
font-weight:400;
color:rgba(55,166,255,1);
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.lhd_table_top span {
flex: 1;
text-align: center;
}
.lhd_table_list {
width: 100%;
height: 60px;
border: 1px solid rgba(17,132,224,1);
border-top: none;
border-bottom: 1px solid rgba(68,76,148,1);
font-size:14px;
font-family:Microsoft YaHei;
font-weight:400;
color:rgba(255,255,255,1);
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.lhd_table_list span {
flex: 1;
text-align: center;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
padding: 0px 10px;
box-sizing: border-box;
}
.lhd_table_list .dj {
cursor: pointer;
color: rgba(17,132,224,1);
}
<div class="competitiveanalysis">
<div class="main">
<div class="title">
<span class="title-span" @click="fanhui"><span><</span>返回上一级</span><div class="title-div">企业竞争分析</div>
</div>
<div class="lhd_header">
<!-- <div class="left"><img src="/imgs/fire.png" alt=""></div> -->
<div class="right">
<div class="lhd_h3">{{obj.companyname}}</div>
<div>专利总量&nbsp;&nbsp;<span>{{obj.total}}</span>
行业&nbsp;&nbsp;<span>{{obj.industryname}}</span>
专利关键词&nbsp;&nbsp;<el-tooltip :content="obj.businessscope" placement="bottom" effect="light"><span>{{obj.keys}}</span></el-tooltip>
</div>
<div>
主营业务&nbsp;&nbsp;<span>{{obj.keyword}}</span>
</div>
</div>
</div>
<div class="title">
<span class="title-span">专利竞争企业</span>
</div>
<div class="lhd_table">
<div class="lhd_table_top">
<span v-for="(item,key) in tableFrom" :key="key">{{item}}</span>
</div>
<div class="lhd_table_list" v-for="(list,index) in obj.competeinfo" :key="index">
<span>{{index + 1}}</span>
<span>{{list.companyname}}</span>
<span>{{list.patentnum}}</span>
<el-tooltip :content="list.keyword" placement="bottom" effect="light"><span>{{list.keys}}</span></el-tooltip>
<span>{{list.industryname}}</span>
<span>{{list.competeindex}}</span>
<span class="dj" @click="contrast(list)">对比分析</span>
</div>
</div>
</div>
</div>
\ No newline at end of file
{
template:'${tmpl}',
data:function(){
return {
obj:{},
tableFrom:[
'序号','企业名称','专利总量','专利关键词','行业','竞争指数','操作'
],
entName: '',
year: ''
}
},
mounted:function(){
},
created:function(){
this.entName=this.$router.history.current.query.entName || "";
this.year=this.$router.history.current.query.year || "";
console.log(this.entName, this.year);
if (this.entName) {
this.analysisInfo();
}
},
methods:{
contrast(val) {
this.$root.pushx({
name:"/enterprisecontrast",
params:{
name1: val.companyname,
text1: val.keyword,
name2: this.entName,
text2: this.obj.keyword
}
});
},
fanhui() {
this.$root.pushx({
name:"/businessdecisions",
params:{}
});
},
keyDealwith(value) {
let array = value.split(',')[0].split('、');
let arr1 = [];
for (let i = 0; i < array.length; i++) {
if ( i > 1 && i <= 5) {
arr1.push(array[i])
}
};
return arr1.join(',')
},
keyDealwith2(value) {
let array = value.split(',');
let arr1 = [];
for (let i = 0; i < array.length; i++) {
if ( i <= 4) {
arr1.push(array[i])
}
};
return arr1.join(',')
},
analysisInfo(){
var obj={companyname:""};
if(this.entName ){
obj.companyname=this.entName;
}else{
return ;
}
this.$root.showMask();
this.$root.getReq("web/patentycCtl/competitionAnalysisInfo",obj).then(d=>{
console.log(d);
if(d && d.status==0){
for (let i = 0; i < d.data.competeinfo.length; i++) {
d.data.competeinfo[i]['keys'] = this.keyDealwith2(d.data.competeinfo[i].keyword)
}
this.obj = d.data;
this.obj['keys'] = this.keyDealwith(d.data.businessscope)
}
this.$root.hideMask();
}).catch(e=>{
this.$root.hideMask();
})
},
},
computed:{
},
vname:"gsb-competitiveanalysis"
}
.enterprisecontrast {
width: 100%;
height: 100%;
background-color: rgba(25, 19, 89, 1);
text-align: center;
font-size: 35px;
color: #fff;
}
.header_lhd {
width: 100%;
height: 8.1%;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_5371597459421664202015104341664组308.png') no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.left_button {
position: absolute;
left: 2%;
top: 1.5vh;
width: 4.5vh;
height: 4.5vh;
cursor: pointer;
}
.vs {
width: 47.4vh;
height: 100%;
}
.left_l {
font-size:3.4vh;
font-family:PingFangSC-Semibold,PingFang SC;
font-weight:600;
color:rgba(219,229,240,1);
letter-spacing:1px;
-webkit-text-stroke:1px rgba(14,62,112,1);
text-stroke:1px rgba(14,62,112,1);
}
.right_h {
font-size:3.4vh;
font-family:PingFangSC-Semibold,PingFang SC;
font-weight:600;
color:rgba(255,246,246,1);
letter-spacing:1px;
-webkit-text-stroke:1px rgba(255,0,0,1);
text-stroke:1px rgba(255,0,0,1);
}
.con_left {
margin-top: 3vh;
float: left;
width: 46.8%;
height: 78vh;
border:1px solid rgba(10,67,188,1);
margin-left: 2%;
}
.con_left_title {
width:100%;
height: 6.9%;
background:linear-gradient(270deg,rgba(41,91,214,1) 0%,rgba(22,45,103,0) 100%);
display: flex;
align-items: center;
justify-content: center;
}
.con_left_title span {
flex: 1;
font-size:16px;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(255,255,255,1);
}
.cl_list {
width: 100%;
height: 18.9%;
display: flex;
align-items: center;
padding-left: 19px;
box-sizing: border-box;
}
.cl_list_title {
width: 23.6%;
height: 57.9%;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_1471597461958288202015112558288编组10.png') no-repeat;
background-size: 100% 100%;
font-size:1.8vh;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(255,255,255,1);
position: relative;
text-align: left;
padding-top: 3.6%;
padding-left: 1.3%;
box-sizing: border-box;
}
.cl_list_title .mark {
position: absolute;
top: 0px;
right: 4.6%;
width:24.4%;
height: 77.3%;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_547159746286546720201511415467编组13.png') no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: center;
}
.cl_list_item {
width: 20%;
height: 100%;
font-size:20px;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(255,255,255,1);
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.cl_text{
width: 80%;
text-align: left;
}
.cl_jdt {
width: 80%;
height: 15.1%;
background:rgba(34,70,147,1);
margin-top: 1vh;
font-size: 14px;
text-align: right;
position: relative;
z-index: 99;
}
.cl_zzt {
position: absolute;
top: 0px;
left: 0px;
width:60%;
height:100%;
background:linear-gradient(90deg,rgba(50,197,255,1) 0%,rgba(97,228,255,1) 100%);
z-index: -1;
}
.con_right {
margin-top: 3vh;
float: right;
width: 46.8%;
height: 78vh;
border:1px solid rgba(84,42,42,1);
margin-right: 2%;
}
.con_right_title {
width:100%;
height: 6.9%;
background:linear-gradient(270deg,rgba(201,112,102,0) 0%,rgba(219,78,67,1) 100%);
display: flex;
align-items: center;
justify-content: center;
}
.con_right_title span {
flex: 1;
font-size:16px;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(255,255,255,1);
}
.cr_list {
width: 100%;
height: 18.9%;
display: flex;
align-items: center;
padding-left: 19px;
box-sizing: border-box;
}
.cr_list_title {
width: 23.6%;
height: 57.9%;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_2067159746218207120201511294271编组12.png') no-repeat;
background-size: 100% 100%;
font-size:1.8vh;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(255,255,255,1);
position: relative;
text-align: left;
padding-top: 3.6%;
padding-left: 1.3%;
box-sizing: border-box;
}
.cr_list_title .mark {
position: absolute;
top: 0px;
right: 4.6%;
width:24.4%;
height: 77.3%;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_547159746286546720201511415467编组13.png') no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: center;
}
.cr_list_item {
width: 20%;
font-size:20px;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(255,255,255,1);
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.bar_lhd {
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
height: 21.3vh;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_4197159746069577320201511455773图层6 拷贝.png') no-repeat;
background-size: 100% 100%;
}
.fenye_lhd {
width: 150px;
position: absolute;
bottom: 10px;
left: calc(50% - 75px);
font-size: 16px;
display: flex;
flex-direction: row;
justify-content: space-between;
z-index: 9999;
}
.fenye_lhd span {
cursor: pointer;
}
\ No newline at end of file
<div class="enterprisecontrast">
<div class="header_lhd">
<img class="left_button" src="https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_17771597459611381202015104651381编组11.png" @click="fanhui" alt="">
<span class="left_l">{{name2}}</span>
<img class="vs" src="https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_9771597459599608202015104639608编组9.png" alt="">
<span class="right_h">{{name1}}</span>
</div>
<div class="con_left">
<div class="con_left_title">
<span></span>
<span>专利总量</span>
<span>专利质量得分</span>
<span>专利成长率</span>
<span>总评分</span>
</div>
<div class="cl_list" v-for="(item,key) in arr1" :key="key">
<div class="cl_list_title">
{{item.keyword}}
<div class="mark">{{item.iconscore}}</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.patentnum}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + Math.ceil((item.patentnum/item.totalnum)*100) + \'%;\' + colorArr[0]"></div>{{Math.ceil((item.patentnum/item.totalnum)*100)}}%</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.patentquality}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + item.patentquality + \'%;\' + colorArr[1]"></div>{{item.patentquality}}%</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.patentrate}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + item.patentrate + \';\' + colorArr[2]"></div>{{item.patentrate}}</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.totalscore}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + item.totalscore + \'%;\' + colorArr[3]"></div>{{item.totalscore}}%</div>
</div>
</div>
</div>
<div class="con_right">
<div class="con_right_title">
<span></span>
<span>专利总量</span>
<span>专利质量得分</span>
<span>专利成长率</span>
<span>总评分</span>
</div>
<div class="cr_list" v-for="(item,key) in arr2" :key="key">
<div class="cr_list_title">
{{item.keyword}}
<div class="mark">{{item.iconscore}}</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.patentnum}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + Math.ceil((item.patentnum/item.totalnum)*100) + \'%;\' + colorArr[0]"></div>{{Math.ceil((item.patentnum/item.totalnum)*100)}}%</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.patentquality}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + item.patentquality + \'%;\' + colorArr[1]"></div>{{item.patentquality}}%</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.patentrate}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + item.patentrate + \';\' + colorArr[2]"></div>{{item.patentrate}}</div>
</div>
<div class="cl_list_item">
<div class="cl_text">{{item.totalscore}}</div>
<div class="cl_jdt"><div class="cl_zzt" :style="\'width:\' + item.totalscore + \'%;\' + colorArr[3]"></div>{{item.totalscore}}%</div>
</div>
</div>
</div>
<div class="fenye_lhd">
<span @click="shang">上一页</span>{{pageSize/5 + 1}}/{{Math.ceil(arrt1.length / 5)}}<span @click="xia">下一页</span>
</div>
<div class="bar_lhd"></div>
</div>
\ No newline at end of file
{
template:'${tmpl}',
data:function(){
return {
name1: '',
name2: '',
text1: '',
text2: '',
colorArr:[
'background:linear-gradient(90deg,rgba(50,197,255,1) 0%,rgba(97,228,255,1) 100%);','background:linear-gradient(270deg,rgba(155,102,255,1) 0%,rgba(98,54,255,1) 100%);',
'background:linear-gradient(270deg,rgba(252,219,0,1) 0%,rgba(247,181,0,1) 100%);','background:linear-gradient(270deg,rgba(121,237,220,1) 0%,rgba(28,240,154,1) 100%);'
],
arr1: [],
arr2: [],
pageSize: 0,
arrLength: 0,
arrt1: [],
arrt2: []
}
},
mounted:function(){
},
created:function(){
this.name1=this.$router.history.current.query.name1 || "";
this.name2=this.$router.history.current.query.name2 || "";
this.text1=this.$router.history.current.query.text1 || "";
this.text2=this.$router.history.current.query.text2 || "";
console.log(this.name1, this.name2);
this.analysisInfo()
},
methods:{
fanhui() {
this.$root.pushx({
name:"/competitiveanalysis",
params:{entName: this.name2}
});
},
shang() {
if (this.pageSize > 0) {
this.pageSize = this.pageSize - 5;
this.arr1 = this.arrt1.slice(this.pageSize, this.pageSize + 5);
this.arr2 = this.arrt2.slice(this.pageSize, this.pageSize + 5);
}else {
console.log('没有了')
}
},
xia() {
if (this.arrLength > (this.pageSize + 5)) {
this.pageSize = this.pageSize + 5;
this.arr1 = this.arrt1.slice(this.pageSize, this.pageSize + 5);
this.arr2 = this.arrt2.slice(this.pageSize, this.pageSize + 5);
}else {
console.log('没有了')
}
},
analysisInfo(){
var obj={company1:"", company2: '', keyword1: '', keyword2: ''};
if(this.name1 && this.name2 && this.text1 && this.text2){
obj.company1 = this.name1;
obj.company2 = this.name2;
obj.keyword1 = this.text1;
obj.keyword2 = this.text2;
}else{
return ;
}
this.$root.showMask();
this.$root.getReq("web/patentycCtl/competitionAnalysisContex",obj).then(d=>{
console.log(d);
if(d && d.status==0){
this.arrLength = d.data.arrt1.length;
this.arrt1 = d.data.arrt1;
this.arrt2 = d.data.arrt2;
this.arr1 = d.data.arrt1.slice(this.pageSize, this.pageSize + 5);
this.arr2 = d.data.arrt2.slice(this.pageSize, this.pageSize + 5);
}
this.$root.hideMask();
}).catch(e=>{
this.$root.hideMask();
})
},
},
computed:{
},
vname:"gsb-enterprisecontrast"
}
......@@ -25,8 +25,8 @@
<div class="banner-more">更多 <i class="el-icon-arrow-right"></i></div>
<transition name="el-zoom-in-bottom">
<div class="banner-more-pop-up" v-show="show2">
<div class="banner-more-pop-up-item" @click="navRoute(\'知识产权运营\')">智能翻译 <i class="el-icon-arrow-right"></i></div>
<div class="banner-more-pop-up-item" @click="navRoute(\'智能采集\')"> 智能分类<i class="el-icon-arrow-right"></i></div>
<div class="banner-more-pop-up-item" @click="navRoute(\'智能翻译\')">智能翻译 <i class="el-icon-arrow-right"></i></div>
<div class="banner-more-pop-up-item" @click="navRoute(\'智能分类\')"> 智能分类<i class="el-icon-arrow-right"></i></div>
<div class="banner-more-pop-up-item" @click="navRoute(\'智能采集\')">智能采集 <i class="el-icon-arrow-right"></i></div>
</div>
</transition>
......@@ -43,10 +43,8 @@
<div class="content-item-tab">{{item.name}}</div>
</div>
<div class="content-item-article">
<div class="item-article-text"><span></span>美国最严技术出口管制,中国芯片大军转向欧罗</div>
<div class="item-article-text"><span></span>美国最严技术出口管制,中国芯片大军转向欧罗</div>
<div class="item-article-text"><span></span>美国最严技术出口管制,中国芯片大军转向欧罗</div>
<div class="item-article-more">更多 >></div>
<div class="item-article-text" v-for="list in item.itemArr" @click="details(list)"><span></span>{{list.title}}</div>
<div class="item-article-more" @click="clickMore(item)">更多 >></div>
</div>
</div>
</div>
......@@ -84,7 +82,7 @@
</div>
<div class="home-item" style="height:665px">
<div class="home-main">
<div class="content-title">IP智慧管理</div>
<div class="content-title">企业智慧管理</div>
<div class="content-name" style="margin-bottom: 49px;">企业、高校、科研院所等创新主体的决策、管理功能</div>
<img src="/imgs/home/a3.png" alt="">
</div>
......
......@@ -68,13 +68,43 @@
contentArr: [
{
img:'background: url(/imgs/home/nav1.png) no-repeat;',
name:'热门专利'
name:'热门专利',
url: 'https://patent.aminer.cn/#/push/patent',
itemArr:[
{
title: 'PrivNet: Safeguarding Private Attributes in Transfer Learning for Recommendation'
},{
title: 'PrivNet: Safeguarding Private Attributes in Transfer Learning for Recommendation'
},{
title: 'PrivNet: Safeguarding Private Attributes in Transfer Learning for Recommendation'
}
]
},{
img:'background: url(/imgs/home/nav2.jpg) no-repeat;',
name:'热门科技资讯'
name:'热门科技资讯',
url: 'https://patent.aminer.cn/#/push/news',
itemArr:[
{
title: ''
},{
title: ''
},{
title: ''
}
]
},{
img:'background: url(/imgs/home/nav3.jpg) no-repeat;',
name:'热门文献'
name:'热门文献',
url:'https://patent.aminer.cn/#/push/paper',
itemArr:[
{
title: ''
},{
title: ''
},{
title: ''
}
]
},
],
bannerTabsArr: [
......@@ -92,7 +122,7 @@
},
{
img:"/imgs/home/icon3.png",
name:'IP创新管理'
name:'企业智慧管理'
},
{
img:"/imgs/home/icon5.png",
......@@ -121,7 +151,14 @@
channels:[],
keyIcon: null,
keyIcon1: null,
BannerHeight:''
BannerHeight:'',
orbitRadius: null,
radius: null,
orbitX: null,
orbitY: null,
timePassed: null,
speed: null,
alpha: null
}
},
mounted:function(){
......@@ -140,11 +177,14 @@
},3000);
});
this.xingkong();
var that = this;
$(window).resize(function(){
that.xingkong()
if (that.$route.path == '/') {
that.xingkong()
}
})
/*$('.home-banner').starfield({
starDensity: 2.0,
......@@ -161,8 +201,37 @@
that.BannerHeight = window.innerHeight;
});
this.$root.typeHome = true;
this.aminerpapers();
this.aminerarticle();
},
methods:{
details(val) {
var b1 = '';
if (val.url) {
b1 = val.url[0].replace("https://arxiv.org", "http://xxx.itp.ac.cn");
}else {
b1 = `https://www.aminer.cn/research_report/${val._id}?download=false`;
}
console.log(b1);
this.$root.typeHome = false;
this.$root.loadingHome = true;
var url = encodeURIComponent(b1);
this.$root.pushx({name:"/iframehtml",title:val.title,params:{url:url}});
setTimeout(()=>{
this.$root.loadingHome = false;
},1500);
},
clickMore(val) {
this.$root.typeHome = false;
this.$root.loadingHome = true;
var url = encodeURIComponent(val.url);
this.$root.pushx({name:"/iframehtml",title:val.name,params:{url:url}});
setTimeout(()=>{
this.$root.loadingHome = false;
},1500);
},
show2enter() {
this.show2 = true;
},
......@@ -174,19 +243,23 @@
ctx = canvas.getContext('2d');
ctx.clearRect(0,0,canvas.width,canvas.height),
ctx.beginPath(),
w = 0,
h = 0,
w = canvas.width = window.innerWidth,
h = canvas.height = window.innerHeight,
hue = 217,
stars = [],
count = 0,
maxStars = 1300;
console.log(maxStars);
var canvas2 = document.createElement('canvas'),
ctx2 = canvas2.getContext('2d');
ctx2.clearRect(0,0,canvas2.width,canvas2.height),
ctx2.beginPath(),
ctx2.fillStyle = null,
canvas2.width = 100;
canvas2.height = 100;
var half = canvas2.width / 2,
......@@ -222,23 +295,23 @@
diameter = Math.round(Math.sqrt(max * max + max * max));
return diameter / 2;
};
console.log(w,h);
var Star = function() {
this.orbitRadius = random(maxOrbit(w, h));
this.orbitRadius = random(maxOrbit(w, h));
this.radius = random(60, this.orbitRadius) / 8;
this.radius = random(60, this.orbitRadius) / 8;
this.orbitX = w / 2;
this.orbitY = h / 2;
this.timePassed = random(0, maxStars);
this.speed = random(this.orbitRadius) / 50000;
this.alpha = random(2, 10) / 10;
this.orbitX = w / 2;
this.orbitY = h / 2;
this.timePassed = random(0, maxStars);
this.speed = random(this.orbitRadius) / 50000;
this.alpha = random(2, 10) / 10;
count++;
stars[count] = this;
count++;
stars[count] = this;
};
console.log(new Star());
Star.prototype.draw = function() {
var x = Math.sin(this.timePassed) * this.orbitRadius + this.orbitX,
y = Math.cos(this.timePassed) * this.orbitRadius + this.orbitY,
......@@ -256,7 +329,7 @@
};
for (var i = 0; i < maxStars; i++) {
new Star();
new Star();
};
function animation() {
......@@ -290,6 +363,26 @@
console.log(name);
this.$root.NavIndexRoute(name);
},
/*热门文献*/
aminerpapers(){
var self=this;
self.$root.postReq("/web/patentycCtl/aminerpapers",{}).then(function(d){
if(d.status==0){
self.contentArr[2].itemArr = d.data.data;
console.log(d,'dddd')
}
});
},
/*热门科技*/
aminerarticle(){
var self=this;
self.$root.postReq("/web/patentycCtl/aminerarticle",{}).then(function(d){
if(d.status==0){
self.contentArr[1].itemArr = d.data.data;
console.log(d,'aaa')
}
});
},
fetchloopplay:function(){
var self=this;
self.$root.postReq("/web/loopplayCtl/findAll",{}).then(function(d){
......
......@@ -2,11 +2,13 @@
template:'${tmpl}',
data:function(){
return {
url:"",
url:""
}
},
mounted:function(){
console.log(this.$root.currentUser, '调用方法');
var url = this.$router.history.current.query.url;
console.log(url);
if(url){
url = decodeURIComponent(url);
this.url = url;
......@@ -16,7 +18,7 @@
},
methods:{
},
vname:"gsb-iframehtml"
}
<div style="width:100%;height:100%;">
<div style="width:200px;height:100%;float: left;background-color: rgb(84, 92, 100);">
<el-menu
:default-active="0"
class="el-menu-vertical-demo"
@select="handleSelect"
background-color="#545c64"
text-color="#fff"
active-text-color="#ffd04b">
<el-menu-item v-for="(item, key) in urlTabs" :key="key" :index="key">
<i class="el-icon-menu"></i>
<span slot="title">{{item.name}}</span>
</el-menu-item>
</el-menu>
</div>
<div style="width:calc(100% - 200px);height:100%;float: left;">
<iframe style="width:100%;height:100%;" :src="url" frameborder="0"></iframe>
</div>
</div>
{
template:'${tmpl}',
data:function(){
return {
url:"",
urlTabs:[
{
name: '知识产权运营',
/*url: 'https://www.cnuip.com/'*/
url: 'http://101.132.173.37:8110/'
},
{
name: '专利超市',
url: 'http://101.132.173.37:8110/goods/patent.html'
},{
name: '企业服务',
url: 'http://101.132.173.37:8110/goods/service_z01.html'
},{
name: '科技成果',
url: 'http://101.132.173.37:8110/achievement'
},{
name: '知产百科',
url: 'http://101.132.173.37:8110/article/baike/'
},{
name: '问专家',
url: 'http://101.132.173.37:8110/shop_3.html'
}
]
}
},
mounted:function(){
console.log(this.$root.currentUser, '调用方法');
var url = this.$router.history.current.query.url;
if(url){
url = decodeURIComponent(url);
this.url = url;
}
},
created:function(){
},
methods:{
handleSelect(val) {
console.log(val);
this.url = this.urlTabs[val].url
}
},
vname:"gsb-iframehtmlTabs"
}
......@@ -2,6 +2,14 @@
width: 100%;
overflow: hidden;
}
.yuan {
display: inline-block;
width: 4px;
height: 4px;
border-radius: 50%;
background-color: #fff;
margin-right: 10px;
}
.activeMenu8-title {
width: 100%;
line-height: 60px;
......@@ -17,7 +25,6 @@
border: 1px solid #ccc;
}
.activeMenu8-main-right {
min-width: 190px;
min-height: 495px;
float: left;
margin-left: 30px;
......@@ -120,4 +127,20 @@
}
.returnsPage > span {
cursor: pointer;
}
.zipImg {
display: inline-block;
position: relative;
width: 356px;
height: 232px;
background: url('https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_39961594794942854202015143542854微信图片_20200715134452.png') no-repeat;
background-size: 100% 100%;
}
.zipSpan {
width: 77px;
height: 26px;
position: absolute;
bottom: 28px;
right: 21px;
cursor: pointer;
}
\ No newline at end of file
......@@ -274,7 +274,7 @@
</div>
<div v-if="!a">
<div v-if="datalist2.length==0" class="no-result" style="text-align: center;">
<img src="imgs/patentlogo.png" style="width:300px"/>
<img src="/imgs/home/logos.png" style="width:300px"/>
<div class="no-result-row1">暂无查出您想要的信息~</div>
<div class="no-result-row1">请输入关键词或选择检索数据范围进行检索!</div>
</div>
......@@ -532,5 +532,5 @@
</span>
<span class="wave-keywords-text animated fadeIn">控制模块</span>
</div>
</div>
</div>
</div>
......@@ -20,7 +20,7 @@
"continuation-local-storage": "^3.2.1",
"cookie-parser": "^1.4.3",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1",
"crypto-js": "^3.3.0",
"easyimage": "^3.1.0",
"ejs": "^2.5.8",
"element-ui": "^2.4.0",
......@@ -48,6 +48,7 @@
"sequelize-cli": "^4.1.1",
"serve-favicon": "^2.4.5",
"sha1": "^1.1.1",
"soap": "^0.31.0",
"socket.io": "^2.1.1",
"uuid": "^3.2.1",
"weixin-pay": "^1.1.7",
......@@ -67,6 +68,7 @@
"gulp-tap": "^1.0.1",
"imagemin-pngquant": "^7.0.0",
"merge-stream": "^2.0.0",
"minimist": "^1.2.0"
"minimist": "^1.2.0",
"soap": "^0.31.0"
}
}
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