Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
0a726340
Commit
0a726340
authored
Dec 02, 2019
by
haozhenhua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hzh
parent
8273002c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
65 additions
and
47 deletions
+65
-47
igirl-web/app/front/entry/main.ejs
+2
-1
igirl-web/app/front/entry/public/imgs/tuisong.png
+0
-0
igirl-web/app/front/entry/public/js/index.js
+11
-6
igirl-web/app/front/vues/pages/declare/declare.html
+2
-3
igirl-web/app/front/vues/pages/declare/declare.js
+0
-0
igirl-web/app/front/vues/pages/managementmeasures/managementmeasures.html
+2
-3
igirl-web/app/front/vues/pages/managementmeasures/managementmeasures.js
+34
-26
igirl-web/app/front/vues/pages/projectpublicity/projectpublicity.html
+2
-3
igirl-web/app/front/vues/pages/projectpublicity/projectpublicity.js
+0
-0
igirl-web/app/front/vues/pages/recommen/recommen.js
+11
-1
igirl-web/app/front/vues/pages/subscription/subscription.html
+1
-4
No files found.
igirl-web/app/front/entry/main.ejs
View file @
0a726340
...
...
@@ -497,7 +497,8 @@
<div
id=
"app"
v-loading=
"loading"
class=
"app-main"
style=
"visibility: hidden"
@
mouseover=
"hidePanel($event)"
>
<div
id=
"app-header"
>
<div
:class=
"isfront ? 'header-main' : 'header-main-houtai'"
>
<div
class=
"header-main-title"
@
click=
"backhome"
>
一站式智能化服务平台
</div>
<div
class=
"header-main-title"
@
click=
"backhome(companyinfo.company.siteTheme)"
v-if=
"companyinfo.company.siteTheme == 'policyShop' || companyinfo.company.siteTheme == 'policy'"
>
<span
style=
"font-size: 18px;"
>
政企通
</span>
丨 政策大数据服务平台
</div>
<div
class=
"header-main-title"
@
click=
"backhome"
v-else
>
一站式智能化服务平台
</div>
<div
class=
"header-main-title1"
style=
"margin-left:11px;"
v-if=
"companyinfo.company.siteTheme == 'policy'"
>
<el-popover
placement=
"bottom-start"
width=
"511"
trigger=
"hover"
>
...
...
igirl-web/app/front/entry/public/imgs/tuisong.png
0 → 100755
View file @
0a726340
This diff is collapsed.
Click to expand it.
igirl-web/app/front/entry/public/js/index.js
View file @
0a726340
...
...
@@ -555,8 +555,9 @@ var app = new Vue({
if
(
item
==
"declare"
)
{
this
.
stageType
=
false
;
this
.
pushx
({
title
:
"政策资讯"
,
name
:
"/declare"
title
:
"申报通知"
,
name
:
"/declare"
,
params
:
{
name
:
'申报通知'
}
});
return
false
;
}
...
...
@@ -564,7 +565,8 @@ var app = new Vue({
this
.
stageType
=
false
;
this
.
pushx
({
title
:
"立项公示"
,
name
:
"/projectpublicity"
name
:
"/projectpublicity"
,
params
:
{
name
:
'立项公示'
}
});
return
false
;
}
...
...
@@ -572,7 +574,8 @@ var app = new Vue({
this
.
stageType
=
false
;
this
.
pushx
({
title
:
"管理办法"
,
name
:
"/managementmeasures"
name
:
"/managementmeasures"
,
params
:
{
name
:
'管理办法'
}
});
return
false
;
}
...
...
@@ -1042,8 +1045,10 @@ var app = new Vue({
}
},
backhome
()
{
backhome
(
name
)
{
if
(
name
==
'policyShop'
)
{
return
window
.
open
(
location
.
protocol
+
"?paramtheme=policy#/"
);
}
this
.
pushx
({
title
:
"首页"
,
name
:
"/"
...
...
igirl-web/app/front/vues/pages/declare/declare.html
View file @
0a726340
...
...
@@ -3,9 +3,8 @@
<div
class=
"policylist-tile"
style=
"margin-top: 15px;"
>
<div
class=
"policyquery-items"
>
<div
class=
"items_item"
:style=
"headerHeight1 ? \'height:45px\' : \'height:auto\'"
>
<div
:class=
"quanbu ? \'\':\'pitch\'"
@
click=
"quanClick1()"
>
申报通知({{total}})
</div>
<div
:class=
"quanbu == item ? \'pitch\' : \'\'"
v-for=
"item in quanData1"
@
click=
"quanClick1(item)"
>
{{item}}
</div>
<div
:class=
"quanbu == item.title ? \'pitch\' : \'\'"
v-for=
"item in quanData1"
@
click=
"quanClick1(item)"
>
{{item.title}}
</div>
</div>
</div>
...
...
igirl-web/app/front/vues/pages/declare/declare.js
View file @
0a726340
This diff is collapsed.
Click to expand it.
igirl-web/app/front/vues/pages/managementmeasures/managementmeasures.html
View file @
0a726340
...
...
@@ -3,9 +3,8 @@
<div
class=
"policylist-tile"
style=
"margin-top: 15px;"
>
<div
class=
"policyquery-items"
>
<div
class=
"items_item"
:style=
"headerHeight1 ? \'height:45px\' : \'height:auto\'"
>
<div
:class=
"quanbu ? \'\':\'pitch\'"
@
click=
"quanClick1()"
>
管理办法({{total}})
</div>
<div
:class=
"quanbu == item ? \'pitch\' : \'\'"
v-for=
"item in quanData1"
@
click=
"quanClick1(item)"
>
{{item.title}}({{item.count}})
</div>
<div
:class=
"quanbu == item.title ? \'pitch\' : \'\'"
v-for=
"(item,index) in quanData1"
@
click=
"quanClick1(item)"
>
{{item.title}}
</div>
</div>
</div>
...
...
igirl-web/app/front/vues/pages/managementmeasures/managementmeasures.js
View file @
0a726340
...
...
@@ -59,30 +59,34 @@
leftimg
:
'https://gsb-zc.oss-cn-beijing.aliyuncs.com//zc_44810157502884567420192920045674declare_tuisong.png'
}
],
quanData1
:[
{
title
:
'申报通知'
,
count
:
'3054'
},
{
title
:
'立项公示'
,
count
:
'100'
},
{
title
:
'政策图解'
,
count
:
'200'
},
{
title
:
'政务信息'
,
count
:
'300'
},
{
title
:
'新闻资讯(69)'
,
count
:
'400'
}
quanData1
:
[
{
title
:
'申报通知'
,
count
:
'111'
},
{
title
:
'立项公示'
,
count
:
'3054'
},
{
title
:
'管理办法'
,
count
:
'100'
},
{
title
:
'政策图解'
,
count
:
'200'
},
{
title
:
'政务信息'
,
count
:
'300'
},
{
title
:
'新闻资讯'
,
count
:
'400'
}
],
tableData1
:
[
'北京'
,
...
...
@@ -265,12 +269,12 @@
this
.
zcPost
()
},
quanClick1
(
val
)
{
console
.
log
(
val
);
console
.
log
(
val
.
title
);
if
(
val
==
undefined
)
{
console
.
log
(
123123123123
);
val
=
''
};
this
.
quanbu
=
val
;
this
.
quanbu
=
val
.
title
;
},
tableDataClick2
(
val
)
{
console
.
log
(
val
);
...
...
@@ -499,6 +503,10 @@
this
.
areaName
=
localStorage
.
getItem
(
"areaName"
);
this
.
zcPost
();
this
.
zccompanyPost
();
console
.
log
(
this
.
$route
.
query
.
name
,
'======================'
);
if
(
this
.
$route
.
query
.
name
!=
""
){
this
.
quanbu
=
this
.
$route
.
query
.
name
;
}
},
vname
:
"gsb-policyquery"
}
igirl-web/app/front/vues/pages/projectpublicity/projectpublicity.html
View file @
0a726340
...
...
@@ -3,9 +3,8 @@
<div
class=
"policylist-tile"
style=
"margin-top: 15px;"
>
<div
class=
"policyquery-items"
>
<div
class=
"items_item"
:style=
"headerHeight1 ? \'height:45px\' : \'height:auto\'"
>
<div
:class=
"quanbu ? \'\':\'pitch\'"
@
click=
"quanClick1()"
>
立项公示({{total}})
</div>
<div
:class=
"quanbu == item ? \'pitch\' : \'\'"
v-for=
"item in quanData1"
@
click=
"quanClick1(item)"
>
{{item.title}}({{item.count}})
</div>
<div
:class=
"quanbu == item.title ? \'pitch\' : \'\'"
v-for=
"item in quanData1"
@
click=
"quanClick1(item)"
>
{{item.title}}
</div>
</div>
</div>
...
...
igirl-web/app/front/vues/pages/projectpublicity/projectpublicity.js
View file @
0a726340
This diff is collapsed.
Click to expand it.
igirl-web/app/front/vues/pages/recommen/recommen.js
View file @
0a726340
...
...
@@ -349,6 +349,15 @@
this
.
recommendationsArr
=
data
})
},
qiyeHuaXiang
()
{
axios
.
post
(
'http://106.13.228.212:8011/policy_report'
,{
"companyname"
:
this
.
zctext
}).
then
(
d
=>
{
console
.
log
(
d
,
'================================='
);
var
data
=
d
.
data
.
data
;
this
.
portrayalArr
=
data
})
},
/*before(i) {
this.rKey = i-1;
},
...
...
@@ -475,7 +484,7 @@
}).
then
(({
value
})
=>
{
this
.
$message
({
type
:
'success'
,
message
:
'
你的邮箱是: '
+
value
message
:
'
政策报告已发送至您的邮箱'
});
}).
catch
(()
=>
{
this
.
$message
({
...
...
@@ -493,6 +502,7 @@
this
.
areaName
=
localStorage
.
getItem
(
"areaName"
);
this
.
zcPost
();
this
.
zccompanyPost
();
/*this.qiyeHuaXiang();*/
},
vname
:
"gsb-policyquery"
}
igirl-web/app/front/vues/pages/subscription/subscription.html
View file @
0a726340
<div
class=
"snbscription"
>
<div
class=
"snbscription"
@
click=
"payClick()"
>
<img
src=
"/imgs/server.png"
alt=
""
>
<button
class=
"btn1"
@
click=
"payClick()"
>
马上订阅
</button>
<button
class=
"btn2"
@
click=
"payClick()"
>
马上订阅
</button>
</div>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment