kun 9/21 21:38

This commit is contained in:
kun
2019-09-21 21:37:27 +08:00
parent 685e122678
commit 5372695dcc
23 changed files with 1566 additions and 26 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -2,9 +2,12 @@
<div id="wrapper" :style="{'background-image':'url('+imgUrl.home+')'}">
<div class="box">
<div @click="$jump('homePage')" :class="styleNum == 0 ? 'style': ''">党组织建设</div>
<div @click="$jump('homePage')" :class="styleNum == 1 ? 'style': ''">社会组织信用信息查询</div>
<div
@click="$jump('informationQuery',{id:1,text:'666'})"
:class="styleNum == 1 ? 'style': ''"
>社会组织信用信息查询</div>
<div @click="$jump('project')" :class="styleNum == 2 ? 'style': ''">政府购买社会组织服务项目管理</div>
<div @click="$jump('homePage')" :class="styleNum == 3 ? 'style': ''">个人中心</div>
<div @click="$jump('personalZte')" :class="styleNum == 3 ? 'style': ''">个人中心</div>
<div>
<span @click="$jump('login')">登录</span> |
<span @click="$jump('registered')">注册</span>

View File

@@ -16,6 +16,13 @@ Vue.prototype.$jump = function (url) {
})
}
Vue.prototype.$jParams = function (url, parameters) {
this.$router.push({
name: url,
params: parameters
})
}
Vue.use(ElementUI)
Vue.config.productionTip = false

View File

@@ -13,6 +13,14 @@ import registered from './views/registered/registered'
import project from './views/project/project'
import schedule from './views/project/schedule'
import application from './views/project/application'
/** 个人中心 */
import personalZte from './views/personalZte/personalZte'
import apply from './views/personalZte/apply'
import collection from './views/personalZte/collection'
import declare from './views/personalZte/declare'
import modify from './views/personalZte/modify'
/** 信息查询 */
import informationQuery from './views/informationQuery/informationQuery'
/** 头部导航 */
import headerNav from './components/headerNav'
@@ -25,6 +33,36 @@ export default new Router({
mode: 'hash',
base: process.env.BASE_URL,
routes: [
{
path: '/informationQuery',
name: 'informationQuery',
component: informationQuery
},
{
path: '/modify',
name: 'modify',
component: modify
},
{
path: '/declare',
name: 'declare',
component: declare
},
{
path: '/collection',
name: 'collection',
component: collection
},
{
path: '/apply',
name: 'apply',
component: apply
},
{
path: '/personalZte',
name: 'personalZte',
component: personalZte
},
{
path: '/application',
name: 'application',

View File

@@ -16,7 +16,7 @@
</div>
<!-- 用户填写的内容 -->
<form action method enctype="multipart/form-data">
<form action method onsubmit="return false" enctype="multipart/form-data">
<!-- 党组织申请1 -->
<div id="boxOne" v-if="sub == 0">
<h3>基本信息</h3>

View File

@@ -0,0 +1,404 @@
<template>
<div class="wrapper">
<headerNav :index_num="index_num"></headerNav>
<div id="box">
<!-- 搜索框 -->
<div class="search">
<input type="text" placeholder="请输入搜索内容" />
<label for>搜索</label>
</div>
<!-- 分类搜索 -->
<div class="select-box">
<select name="type" id>
<option value>社会</option>
<option value>团体</option>
</select>
<select name="time" id>
<option value>09-18</option>
<option value>09-19</option>
</select>
<select name="year" id>
<option value>2017</option>
<option value>2019</option>
</select>
<select name="condition" id>
<option value>good</option>
<option value>bad</option>
</select>
</div>
<!-- 搜索记录 -->
<template>
<div class="record">
<div class="list">
<span>类型社会团体</span>
<span class="iconfont icon-cuowu"></span>
</div>
</div>
</template>
<!-- 表格 -->
<div class="box-table">
<div class="caption">
<span
v-for="(list,index) in text"
:class="sub == index ? 'color' : ''"
:key="index"
@click="btn(index)"
>{{list}}</span>
</div>
<table>
<tr>
<th>序号</th>
<th>社会组织名称</th>
<th>统一社会信用代码</th>
<th>社会组织类型</th>
<th>法定代表人</th>
<th>成立登记日期</th>
<th>状态</th>
</tr>
<tr v-for="(item,index) in sData" :key="index" :class="index % 2 == 0 ? 'bgcbz' : 'bgcz'">
<td>{{item.id}}</td>
<td>{{item.zuzhi}}</td>
<td>{{item.daima}}</td>
<td>{{item.type}}</td>
<td>{{item.dbr}}</td>
<td>{{item.date}}</td>
<td v-if="item.zt == 0" style="color:#2fd63f">正常</td>
<td v-if="item.zt == 1" style="color:#e13232">异常</td>
</tr>
</table>
</div>
</div>
<footerNav class="footer"></footerNav>
</div>
</template>
<script>
/* eslint-disable */
import headerNav from "../../components/headerNav";
/* eslint-disable */
import footerNav from "../../components/footerNav";
export default {
components: {
headerNav,
footerNav
},
props: {},
data() {
return {
index_num: 1,
text: ["全部", "异常名单", "白名单"],
sub: 0,
imgUrl: {
xa: require("../../../static/img/xa.png")
},
sData: [
{
id: 1,
zuzhi: "劳动经济学会",
daima: "51100000MJ000035X2",
type: "社会团体",
dbr: "王五",
date: "2019-10-14",
zt: 0
},
{
id: 2,
zuzhi: "劳动经济学会",
daima: "51100000MJ000035X2",
type: "社会团体",
dbr: "王五",
date: "2019-10-14",
zt: 1
},
{
id: 3,
zuzhi: "劳动经济学会",
daima: "51100000MJ000035X2",
type: "社会团体",
dbr: "王五",
date: "2019-10-14",
zt: 0
}
]
};
},
computed: {},
watch: {},
methods: {
btn(index) {
let s = this.sub;
s = index;
this.sub = s;
},
getData() {}
},
created() {},
mounted() {
this.getData();
}
};
</script>
<style lang='scss' scoped>
.wrapper {
width: 1280px;
box-sizing: border-box;
position: relative;
#box {
width: 1200px;
background-color: #ffffff;
margin: 40px auto 80px;
box-sizing: border-box;
padding: 35px 30px 86px;
.box-table {
width: 100%;
table {
width: 100%;
th {
line-height: 40px;
text-align: center;
height: 40px;
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #666666;
background-color: #f6fafd;
&:nth-of-type(1) {
width: 86px;
}
&:nth-of-type(2) {
width: 160px;
border-left: 1px solid #dcebf6;
border-right: 1px solid #dcebf6;
}
&:nth-of-type(3) {
width: 240px;
}
&:nth-of-type(4) {
width: 160px;
border-left: 1px solid #dcebf6;
border-right: 1px solid #dcebf6;
}
&:nth-of-type(5) {
width: 160px;
}
&:nth-of-type(6) {
width: 180px;
border-left: 1px solid #dcebf6;
border-right: 1px solid #dcebf6;
}
&:nth-of-type(7) {
width: 144px;
}
}
.bgcz {
background-color: #f6fafd;
}
.bgcbz {
background-color: #fff;
}
td {
line-height: 40px;
text-align: center;
height: 40px;
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #595959;
&:nth-of-type(1) {
width: 86px;
}
&:nth-of-type(2) {
width: 160px;
border-left: 1px solid #dcebf6;
border-right: 1px solid #dcebf6;
}
&:nth-of-type(3) {
width: 240px;
}
&:nth-of-type(4) {
width: 160px;
border-left: 1px solid #dcebf6;
border-right: 1px solid #dcebf6;
}
&:nth-of-type(5) {
width: 160px;
}
&:nth-of-type(6) {
width: 180px;
border-left: 1px solid #dcebf6;
border-right: 1px solid #dcebf6;
}
&:nth-of-type(7) {
width: 144px;
}
}
}
.caption {
width: 1140px;
height: 38px;
border-bottom: 1px solid #dedede;
margin-top: 76px;
margin-bottom: 30px;
padding-left: 30px;
box-sizing: border-box;
span {
display: inline-block;
height: 38px;
text-align: center;
font-family: "MicrosoftYaHei";
font-size: 20px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
margin-right: 49px;
&:nth-of-type(1) {
width: 60px;
}
&:nth-of-type(2) {
width: 110px;
}
&:nth-of-type(3) {
width: 89px;
}
}
.color {
color: #e60012;
position: relative;
&::after {
content: "";
width: 100%;
height: 2px;
background-image: linear-gradient(#e60012, #e60012),
linear-gradient(#ff7f7f, #ff7f7f);
background-blend-mode: normal, normal;
position: absolute;
left: 0%;
bottom: 0%;
}
}
}
}
.record {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
.list {
margin-right: 25px;
border-radius: 4px;
border: solid 1px #c7c7c7;
padding: 10px 24px;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #666666;
.iconfont {
margin-left: 10px;
}
}
}
.select-box {
display: flex;
align-items: center;
select {
&:nth-of-type(1) {
/* 清除默认的箭头样式 */
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加小箭头的背景图 */
background: url("../../../static/img/xa.png") 90px center no-repeat;
background-size: 14px 8px;
width: 134px;
height: 38px;
background-color: #f9f8f8;
border-radius: 4px;
border: solid 1px #c7c7c7;
}
/* 清除默认的箭头样式 */
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加小箭头的背景图 */
background: url("../../../static/img/xa.png") 126px center no-repeat;
background-size: 14px 8px;
width: 170px;
height: 38px;
background-color: #f9f8f8;
border-radius: 4px;
border: solid 1px #c7c7c7;
margin-right: 55px;
padding-left: 30px;
box-sizing: border-box;
outline: none;
margin-bottom: 30px;
}
}
.search {
width: 100%;
height: 50px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
input {
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #666666;
padding: 0 18px;
box-sizing: border-box;
width: 1025px;
height: 50px;
border: solid 1px #c7c7c7;
outline: none;
}
label {
width: 96px;
height: 50px;
background-color: #e60012;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
line-height: 50px;
letter-spacing: 0px;
color: #ffffff;
text-align: center;
}
}
}
}
</style>

View File

@@ -0,0 +1,430 @@
<template>
<div class="w" :style="{height:num + 'px'}">
<div class="img-box">
<img class="img" :src="imgUrl.tg" v-if="state == 0" />
<img class="img" :src="imgUrl.btg" v-if="state == 1" />
<img class="img" :src="imgUrl.shz" v-if="state == 2" />
<img class="img" :src="imgUrl.zxz" v-if="state == 3" />
</div>
<form>
<div class="items" v-if="!zhuangtai">
<h3>基本信息</h3>
<!-- start -->
<div class="item">
<label for>社会组织名称:</label>
<input class="input0" type="text" value="劳动组织" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>社会组织类型:</label>
<select class="input1" name id>
<option value>劳动</option>
<option value>团体</option>
</select>
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>流动党员数量:</label>
<input class="input0" type="text" value="20" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>已有党员数量:</label>
<input class="input0" type="text" value="20" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>从业人员总数:</label>
<input class="input0" type="text" value="20" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>党组织名称:</label>
<input class="input0" type="text" value="劳动组织" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>是否建立党组织:</label>
<label class="label" for>
<input type="radio" name="q" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="radio" name="q" />&nbsp;&nbsp;
</label>
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>是否建立功能型党组织:</label>
<label class="label" for>
<input type="radio" name="q" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="radio" name="q" />&nbsp;&nbsp;
</label>
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>登记管理机关:</label>
<input class="input2" type="text" value="劳动管理机关" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>业务主管单位:</label>
<input class="input2" type="text" value="劳动管理机关" />
</div>
<!-- end -->
<!-- start -->
<div class="item">
<label for>隶属的上一级党组织名称:</label>
<input class="input2" type="text" value="劳动组织" />
</div>
<!-- end -->
<div class="btn" @click="anNui()">下一页</div>
</div>
<div class="items" v-if="zhuangtai">
<div>
<h3>党组织书记情况</h3>
<!-- start -->
<div class="it">
<label for>姓名:</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>性别:</label>
<label class="label" for>
<input type="radio" name="sex" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="radio" name="sex" />&nbsp;&nbsp;
</label>
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>年龄:</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>行政职务:</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>近三年参加上级党组织培训次数:</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
</div>
<div style="margin-top:60px;">
<h3>党组织信息</h3>
<!-- start -->
<div class="it">
<label for>近三年发展党员数:</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>是否建立群团组织:</label>
<label class="label" for>
<input type="radio" name="zz" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="radio" name="zz" />&nbsp;&nbsp;
</label>
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>专职党务工作者人数:</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>是否选派党建工作指导员:</label>
<label class="label" for>
<input type="radio" name="zd" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="radio" name="zd" />&nbsp;&nbsp;
</label>
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>党组织年度活动经费(万元):</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
<!-- start -->
<div class="it">
<label for>党组织年度活动场所面积(平米):</label>
<input class="input0" type="text" value />
</div>
<!-- end -->
</div>
</div>
</form>
</div>
</template>
<script>
export default {
components: {},
props: {},
data () {
return {
imgUrl: {
tg: require('../../../static/img/tg.png'),
btg: require('../../../static/img/btg.png'),
shz: require('../../../static/img/shz.png'),
zxz: require('../../../static/img/zxz.png'),
xa: require('../../../static/img/xa.png')
},
state: 0,
zhuangtai: false,
num: 1050
}
},
computed: {},
watch: {
num (newValue, oldValue) {
this.$emit('listenToChildExen', this.num)
}
},
methods: {
anNui () {
this.zhuangtai = !this.zhuangtai
this.num = 1073
},
sendMsgToParent () {
this.$emit('listenToChildExen', this.num)
}
},
created () {},
mounted () {
this.sendMsgToParent()
}
}
</script>
<style lang='scss' scoped>
.w {
width: 934px;
background-color: #ffffff;
padding: 35px 30px 0px;
box-sizing: border-box;
position: relative;
.items {
width: 100%;
label input[type="radio"] {
width: 17px;
height: 17px;
appearance: none;
-webkit-appearance: none;
outline: none;
margin: 0;
cursor: pointer;
}
label input[type="radio"]:after {
width: 17px;
height: 17px;
display: block;
content: "";
background: url("../../../static/img/wxz.png") no-repeat;
background-size: 100% 100%;
}
label input[type="radio"]:checked:after {
background: url("../../../static/img/xz.png") no-repeat;
}
h3 {
width: 874px;
height: 37px;
padding-left: 29px;
box-sizing: border-box;
font-family: "MicrosoftYaHei";
font-size: 20px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
border-bottom: 1px solid #dedede;
margin-bottom: 60px;
}
.btn {
width: 230px;
height: 63px;
background-color: #e60012;
border-radius: 5px;
margin: 60px auto 0px;
text-align: center;
line-height: 63px;
font-family: "MicrosoftYaHei";
font-size: 26px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #ffffff;
}
.item {
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 24px;
.label {
display: inline-block;
width: 386px;
height: 43px;
margin-left: 30px;
text-align: left;
}
label {
width: 197px;
height: 43px;
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
line-height: 43px;
text-align: right;
letter-spacing: 0px;
color: #333333;
}
.input0 {
margin-left: 30px;
width: 386px;
height: 43px;
background-color: #ffffff;
border: solid 1px #c7c7c7;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
padding-left: 30px;
box-sizing: border-box;
outline: none;
}
.input1 {
margin-left: 30px;
/* 清除默认的箭头样式 */
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加小箭头的背景图 */
background: url("../../../static/img/xa.png") 360px center no-repeat;
background-size: 14px 8px;
width: 386px;
height: 43px;
background-color: #ffffff;
border: solid 1px #c7c7c7;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
padding-left: 30px;
box-sizing: border-box;
outline: none;
}
.input2 {
margin-left: 30px;
width: 647px;
height: 43px;
background-color: #ffffff;
border: solid 1px #c7c7c7;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
padding-left: 30px;
box-sizing: border-box;
outline: none;
}
}
.it {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 24px;
&:last-child {
margin-bottom: 0;
}
.label {
display: inline-block;
width: 386px;
height: 43px;
margin-left: 30px;
text-align: left;
}
label {
width: 229px;
height: 43px;
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
line-height: 43px;
text-align: right;
letter-spacing: 0px;
color: #333333;
}
.input0 {
margin-left: 30px;
width: 386px;
height: 43px;
background-color: #ffffff;
border: solid 1px #c7c7c7;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
padding-left: 30px;
box-sizing: border-box;
outline: none;
}
}
}
.img-box {
width: 158px;
height: 121px;
opacity: 0.5;
position: absolute;
right: 0%;
top: 0%;
img {
width: 158px;
height: 121px;
}
}
}
</style>

View File

@@ -0,0 +1,240 @@
<template>
<div class="wr">
<template v-for="(item,index) in mData">
<div class="page" :key="index">
<time>
<span class="iconfont icon-shizhong"></span>
{{item.time}}
</time>
<div id="box">
<template v-for="(list,index) in item.shujv">
<div class="box" :key="index">
<span class="iconfont icon-changyongtubiao-mianxing-"></span>
<aside>
<span class="span1">活动策划是提高市场占有率的有效行为</span>
<span class="span2">来源板块统一战线</span>
</aside>
<p>活动策划是提高市场占有率的有效行为一份可执行可操作创意突出的活动策划案可升企...升企业的知名度及品牌美誉度活动策划案是相对于市场策划案而言严格说它们同属市场策划的兄弟分支活动策划</p>
</div>
</template>
</div>
</div>
</template>
<!-- 分页按钮 -->
<div class="pages">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="currentPage"
:page-size="pageSize"
background
layout="prev, pager, next"
:total="10"
></el-pagination>
</div>
<!-- end -->
</div>
</template>
<script>
export default {
components: {},
props: {},
data () {
return {
pageSize: 1,
currentPage: 1,
totalCount: 1,
mData: [
{ time: '2019-10-14', shujv: [1, 2, 3, 4] },
{ time: '2019-10-14', shujv: [1, 2, 3, 4, 5] }
],
num: 1019
}
},
computed: {},
watch: {},
methods: {
sendMsgToParent () {
this.$emit('listenToChildExen', this.num)
},
handleSizeChange (val) {
this.pageNum = val
this.getPackData()
},
handleCurrentChange (val) {
this.currentPage = val
this.getPackData()
},
getPackData () {}
},
created () {
this.currentPage = Number(localStorage.getItem('pagination')) || 1
this.handleCurrentChange(this.currentPage)
},
mounted () {
this.sendMsgToParent()
}
}
</script>
<style lang='scss' scoped>
.wr {
width: 934px;
height: 1019px;
background-color: #ffffff;
box-sizing: border-box;
padding-top: 35px;
.pages {
margin-top: 60px;
margin-right: 24px;
height: 36px;
display: flex;
justify-content: flex-end;
align-items: center;
/deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
background-color: #e60012;
}
/deep/ .el-icon.el-icon-arrow-left::before {
content: "上一页";
font-family: "MicrosoftYaHei";
font-size: 12px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 1px;
color: #646464;
}
/deep/ .el-pagination .btn-prev {
width: 80px;
}
/deep/ .el-pagination .btn-next {
width: 80px;
}
/deep/ .el-icon.el-icon-arrow-right::before {
content: "下一页";
font-family: "MicrosoftYaHei";
font-size: 12px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 1px;
color: #646464;
}
}
.page {
margin-bottom: 60px;
height: 364px;
box-sizing: border-box;
#box {
overflow-y: scroll;
height: 375px;
padding-bottom: 40px;
box-sizing: border-box;
&::-webkit-scrollbar {
width: 0px;
}
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.box {
width: 875px;
height: 135px;
box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.15);
border-radius: 5px;
margin-top: 40px;
padding: 31px 23px 32px 28px;
box-sizing: border-box;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
&:nth-of-type(1) {
margin-top: 30px;
}
.iconfont {
font-size: 23px;
color: #fec300;
position: absolute;
right: 23px;
top: 23px;
}
aside {
width: 689px;
height: 23px;
display: flex;
justify-content: space-between;
align-items: center;
.span1 {
display: inline-block;
width: 60%;
font-family: "MicrosoftYaHei";
font-size: 22px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 1px;
color: #333333;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
}
.span2 {
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
letter-spacing: 1px;
color: #999999;
}
}
p {
height: 20px;
line-height: 20px;
width: 100%;
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 1px;
color: #666666;
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
}
}
time {
font-family: "MicrosoftYaHei";
font-size: 18px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #666666;
display: flex;
align-items: center;
margin-left: 30px;
.iconfont {
font-size: 24px;
margin-right: 24px;
}
}
}
}
</style>

View File

@@ -0,0 +1,43 @@
<template>
<div class="wra">
<p>暂无数据~</p>
</div>
</template>
<script>
export default {
components: {},
props: {},
data () {
return {
num: 1050
}
},
computed: {},
watch: {},
methods: {
sendMsgToParent () {
this.$emit('listenToChildExen', this.num)
}
},
created () {},
mounted () {
this.sendMsgToParent()
}
}
</script>
<style lang='scss' scoped>
.wra {
width: 934px;
height: 1050px;
background-color: #ffffff;
padding: 35px 30px 0px;
box-sizing: border-box;
p {
font-size: 25px;
font-weight: 900;
}
}
</style>

View File

@@ -0,0 +1,109 @@
<template>
<div class="wrap">
<form onsubmit="return false">
<div class="box">
<label for>请输入原密码:</label>
<input class="input" type="text" name id />
</div>
<div class="box">
<label for>请输入新密码:</label>
<input class="input" type="text" name id />
</div>
<div class="box">
<label for>请再次输入新密码:</label>
<input class="input" type="text" name id />
</div>
<div class="btn">
<input type="submit" name id value="保存" />
</div>
</form>
</div>
</template>
<script>
export default {
components: {},
props: {},
data () {
return {
num: 654
}
},
computed: {},
watch: {},
methods: {
sendMsgToParent () {
this.$emit('listenToChildExen', this.num)
}
},
created () {},
mounted () {
this.sendMsgToParent()
}
}
</script>
<style lang='scss' scoped>
.wrap {
width: 934px;
height: 654px;
background-color: #ffffff;
padding-top: 36px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: flex-start;
form {
.box {
width: 100%;
margin-bottom: 30px;
label {
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
line-height: 40px;
letter-spacing: 0px;
color: #333333;
width: 133px;
height: 40px;
text-align: right;
display: inline-block;
}
.input {
width: 400px;
height: 40px;
background-color: #ffffff;
border-radius: 5px;
border: solid 1px #dbdbda;
outline: none;
margin-left: 30px;
}
}
.btn {
display: flex;
justify-content: center;
margin-top: 60px;
input[type="submit"] {
width: 230px;
height: 63px;
background-color: #e60012;
border-radius: 5px;
font-family: "MicrosoftYaHei";
font-size: 26px;
font-weight: normal;
font-stretch: normal;
line-height: 63px;
text-align: center;
letter-spacing: 0px;
color: #ffffff;
outline: none;
}
}
}
}
</style>

View File

@@ -0,0 +1,131 @@
<template>
<div class="wrapper">
<headerNav :index_num="index_num"></headerNav>
<div id="box">
<div class="left" :style="{height:heightVal+'px'}">
<div
class="list"
@click="btn(index)"
v-for="(list,index) in text"
:key="index"
:class="sub == index ? 'color' : ''"
>{{list}}</div>
</div>
<div class="right">
<apply v-if="sub == 0" @listenToChildExen="showMsgFromChild"></apply>
<collection v-if="sub == 1" @listenToChildExen="showMsgFromChild"></collection>
<declare v-if="sub == 2" @listenToChildExen="showMsgFromChild"></declare>
<modify v-if="sub == 3" @listenToChildExen="showMsgFromChild"></modify>
</div>
</div>
<footerNav class="footer"></footerNav>
</div>
</template>
<script>
/* eslint-disable */
import headerNav from "../../components/headerNav";
/* eslint-disable */
import footerNav from "../../components/footerNav";
import apply from "./apply";
import collection from "./collection";
import declare from "./declare";
import modify from "./modify";
export default {
components: {
headerNav,
footerNav,
apply,
collection,
declare,
modify
},
props: {},
data() {
return {
index_num: 3,
text: ["党组织申请", "我的收藏", "项目申报", "个人中心-修改密码"],
sub: 0,
heightVal: 1050
};
},
computed: {},
watch: {},
methods: {
showMsgFromChild(data) {
this.heightVal = data;
},
btn(index) {
let s = this.sub;
s = index;
this.sub = s;
}
},
created() {},
mounted() {}
};
</script>
<style lang='scss' scoped>
.wrapper {
width: 1280px;
#box {
width: 100%;
margin: 40px auto 0;
box-sizing: border-box;
padding: 0 40px;
display: flex;
justify-content: space-between;
align-items: center;
.left {
width: 241px;
background-color: #ffffff;
box-shadow: 0px 7px 11px 0px rgba(231, 231, 231, 0.7);
border-radius: 2px;
.list {
width: 100%;
height: 48px;
margin-top: 21px;
text-align: left;
line-height: 48px;
padding-left: 37px;
box-sizing: border-box;
font-family: "MicrosoftYaHei";
font-size: 20px;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
color: #333333;
}
.color {
position: relative;
color: #e60012;
&::after {
content: "";
width: 5px;
height: 48px;
background-color: #e60012;
border-radius: 8px;
position: absolute;
left: 0%;
top: 0%;
}
}
}
.right {
width: 934px;
background-color: #ffffff;
}
}
.footer {
margin-top: 80px;
}
}
</style>

View File

@@ -14,7 +14,7 @@
:style="{'background-image': sub == 1 ? 'url('+imgUrl.bg0+')' : 'url('+imgUrl.bg1+')'}"
>2 填写详细信息</div>
</div>
<form action>
<form action onsubmit="return false">
<div v-if="sub == 0">
<h4>基本信息</h4>
<!-- start -->
@@ -253,8 +253,8 @@
</div>
<div class="xxx">
<h5>申报单位承诺</h5>
<div>
<input type="checkbox" name id checked />
<div class="plpl">
<input type="checkbox" name id checked disabled />
<label for>我们确认项目中报内容的真实性,并愿意承担相应的责任</label>
</div>
</div>
@@ -373,20 +373,25 @@ export default {
justify-content: space-between;
align-items: flex-start;
div {
.plpl {
display: flex;
align-items: center;
}
label {
margin-left: 16px;
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
line-height: 25px;
letter-spacing: 0px;
color: #323232;
}
label {
margin-left: 16px;
font-family: "MicrosoftYaHei";
font-size: 16px;
font-weight: normal;
font-stretch: normal;
line-height: 25px;
letter-spacing: 0px;
color: #323232;
input {
width: 20px;
height: 20px;
border: 2px solid red;
}
}
.btnn {

View File

@@ -60,9 +60,13 @@
<span>初筛审核中</span>
<img class="oo" :src="imgUrl.d0" alt />
</div>
<div>
<div class="div-v">
<span>初筛审核通过</span>
<img class="oo" :src="imgUrl.d0" alt />
<section>
<span style="color:#e60012;font-size:20px;">总分: 71</span>
<span style="color:#999;font-size:16px;">及格分数: 70</span>
</section>
</div>
<div>
<span>立项评审中</span>
@@ -384,6 +388,21 @@ export default {
right: 0%;
bottom: -16%;
}
section {
display: flex;
justify-content: space-between;
align-items: flex-start;
width: 132%;
font-weight: normal;
font-stretch: normal;
letter-spacing: 0px;
font-family: "MicrosoftYaHei";
position: absolute;
left: -8%;
bottom: -100%;
white-space: nowrap;
}
}
span {

View File

@@ -3,7 +3,7 @@
<div class="box">
<div class="boxx">
<h3> </h3>
<form action method enctype="multipart/form-data">
<form action method onsubmit="return false" enctype="multipart/form-data">
<!-- 请输入组织名称 -->
<label>
<span class="one">

View File

@@ -64,6 +64,12 @@
<div class="code-name">&amp;#xe60e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe70e;</span>
<div class="name">错误</div>
<div class="code-name">&amp;#xe70e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6c5;</span>
<div class="name"></div>
@@ -88,6 +94,12 @@
<div class="code-name">&amp;#xe688;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe64c;</span>
<div class="name">时钟</div>
<div class="code-name">&amp;#xe64c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe61c;</span>
<div class="name">组织结构</div>
@@ -106,6 +118,12 @@
<div class="code-name">&amp;#xe612;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe783;</span>
<div class="name">五角星 星型 收藏</div>
<div class="code-name">&amp;#xe783;</div>
</li>
</ul>
<div class="article markdown">
<h2 id="unicode-">Unicode 引用</h2>
@@ -210,6 +228,15 @@
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-cuowu"></span>
<div class="name">
错误
</div>
<div class="code-name">.icon-cuowu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-ren"></span>
<div class="name">
@@ -246,6 +273,15 @@
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shizhong"></span>
<div class="name">
时钟
</div>
<div class="code-name">.icon-shizhong
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-zuzhijiegou"></span>
<div class="name">
@@ -273,6 +309,15 @@
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-changyongtubiao-mianxing-"></span>
<div class="name">
五角星 星型 收藏
</div>
<div class="code-name">.icon-changyongtubiao-mianxing-
</div>
</li>
</ul>
<div class="article markdown">
<h2 id="font-class-">font-class 引用</h2>
@@ -350,6 +395,14 @@
<div class="code-name">#icon-dianhua</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-cuowu"></use>
</svg>
<div class="name">错误</div>
<div class="code-name">#icon-cuowu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-ren"></use>
@@ -382,6 +435,14 @@
<div class="code-name">#icon-fuzeren</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shizhong"></use>
</svg>
<div class="name">时钟</div>
<div class="code-name">#icon-shizhong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-zuzhijiegou"></use>
@@ -406,6 +467,14 @@
<div class="code-name">#icon-_H_</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-changyongtubiao-mianxing-"></use>
</svg>
<div class="name">五角星 星型 收藏</div>
<div class="code-name">#icon-changyongtubiao-mianxing-</div>
</li>
</ul>
<div class="article markdown">
<h2 id="symbol-">Symbol 引用</h2>

View File

@@ -1,10 +1,10 @@
@font-face {font-family: "iconfont";
src: url('iconfont.eot?t=1568874615557'); /* IE9 */
src: url('iconfont.eot?t=1568874615557#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
url('iconfont.woff?t=1568874615557') format('woff'),
url('iconfont.ttf?t=1568874615557') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('iconfont.svg?t=1568874615557#iconfont') format('svg'); /* iOS 4.1- */
src: url('iconfont.eot?t=1569068452334'); /* IE9 */
src: url('iconfont.eot?t=1569068452334#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
url('iconfont.woff?t=1569068452334') format('woff'),
url('iconfont.ttf?t=1569068452334') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('iconfont.svg?t=1569068452334#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
@@ -39,6 +39,10 @@
content: "\e60e";
}
.icon-cuowu:before {
content: "\e70e";
}
.icon-ren:before {
content: "\e6c5";
}
@@ -55,6 +59,10 @@
content: "\e688";
}
.icon-shizhong:before {
content: "\e64c";
}
.icon-zuzhijiegou:before {
content: "\e61c";
}
@@ -67,3 +75,7 @@
content: "\e612";
}
.icon-changyongtubiao-mianxing-:before {
content: "\e783";
}

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -47,6 +47,13 @@
"unicode": "e60e",
"unicode_decimal": 58894
},
{
"icon_id": "4266146",
"name": "错误",
"font_class": "cuowu",
"unicode": "e70e",
"unicode_decimal": 59150
},
{
"icon_id": "4303877",
"name": "人",
@@ -75,6 +82,13 @@
"unicode": "e688",
"unicode_decimal": 59016
},
{
"icon_id": "6246299",
"name": "时钟",
"font_class": "shizhong",
"unicode": "e64c",
"unicode_decimal": 58956
},
{
"icon_id": "6429428",
"name": "组织结构",
@@ -95,6 +109,13 @@
"font_class": "_H_",
"unicode": "e612",
"unicode_decimal": 58898
},
{
"icon_id": "10864779",
"name": "五角星 星型 收藏",
"font_class": "changyongtubiao-mianxing-",
"unicode": "e783",
"unicode_decimal": 59267
}
]
}

View File

@@ -38,6 +38,9 @@ Created by iconfont
<glyph glyph-name="dianhua" unicode="&#58894;" d="M737.6-38.4c-342.4 0-624.8 258.4-656.8 600.8v0.8c-0.8 5.6-1.6 12.8-2.4 19.2 0 4.8-0.8 10.4-0.8 14.4 0.8 70.4 36 135.2 95.2 175.2 30.4 20.8 66.4 32.8 103.2 34.4h12.8c63.2 0 123.2-28 163.2-76.8 44-52.8 58.4-123.2 40.8-192-17.6-68-69.6-121.6-138.4-144l-22.4-7.2 14.4-18.4c63.2-80 140-143.2 228.8-188.8l18.4-9.6 4.8 20c16 72 80.8 125.6 158.4 129.6h8c94.4 0 173.6-72 181.6-164.8 2.4-25.6-1.6-51.2-9.6-76-22.4-62.4-77.6-107.2-144-116.8-4.8-0.8-8.8-0.8-13.6-1.6-13.6 2.4-28 1.6-41.6 1.6zM117.6 568c30.4-324 296.8-568 620-568 12.8 0 26.4 0.8 40 1.6h3.2c2.4 0 4.8 0 7.2 0.8 52.8 7.2 96 43.2 114.4 92 7.2 19.2 9.6 39.2 8 60-5.6 72-69.6 130.4-141.6 130.4h-6.4c-62.4-4-115.2-46.4-130.4-105.6-5.6-20.8-27.2-36.8-50.4-36.8-8 0-15.2 1.6-21.6 4.8-110.4 56-204.8 140.8-274.4 244-4 5.6-4 12.8-1.6 18.4 3.2 6.4 9.6 11.2 16.8 12 74.4 4.8 139.2 56 157.6 125.6 15.2 56.8 2.4 115.2-33.6 158.4-33.6 40-82.4 63.2-134.4 63.2H280c-30.4-1.6-60-12-84.8-28.8-48.8-32-78.4-86.4-78.4-144V584c-0.8-4.8 0-10.4 0.8-16z" horiz-adv-x="1024" />
<glyph glyph-name="cuowu" unicode="&#59150;" d="M512 413.866667l196.266667 196.266666c8.533333 8.533333 21.333333 8.533333 29.866666 0 8.533333-8.533333 8.533333-21.333333 0-29.866666L541.866667 384l196.266666-196.266667c8.533333-8.533333 8.533333-21.333333 0-29.866666-8.533333-8.533333-21.333333-8.533333-29.866666 0L512 354.133333l-196.266667-196.266666c-8.533333-8.533333-21.333333-8.533333-29.866666 0-8.533333 8.533333-8.533333 21.333333 0 29.866666l196.266666 196.266667-200.533333 196.266667c-8.533333 8.533333-8.533333 21.333333 0 29.866666 8.533333 8.533333 21.333333 8.533333 29.866667 0l200.533333-196.266666z" horiz-adv-x="1024" />
<glyph glyph-name="ren" unicode="&#59077;" d="M78.22291438-72.30107625000005c0-14.21935406 9.47956969-23.69892375 23.69892374-23.69892375s23.69892375 9.47956969 23.69892375 23.69892375c0 213.33036656 173.03552063 386.36588719 386.36588625 386.36588625s386.37923813-173.03552063 386.37923907-386.36588625c0-14.21935406 9.47956969-23.69892375 23.69892281-23.69892375s23.69892375 9.47956969 23.69892375 23.69892375c0 196.74779531-132.74067469 362.66696344-310.51597969 417.19451437 90.06926062 45.03463031 151.713165 137.52051375 151.713165 244.14564282C786.96091906 740.738895 663.69981406 864 511.98664813 864S237.03908094 740.738895 237.03908094 589.0390809400001c0-106.66518281 61.6305525-199.1110125 151.69981406-244.14564281C208.60037281 292.74245530999997 78.22291438 126.82328718999997 78.22291438-72.30107625000005z m206.22736499 663.75678c0 125.62432219 101.92539844 227.56307156 227.54972063 227.56307156s227.56307156-101.99215594 227.56307156-227.56307156S637.651025 363.85257750000005 512 363.85257750000005s-227.54972063 101.92539844-227.54972063 227.60312625z m0 0" horiz-adv-x="1024" />
@@ -50,6 +53,9 @@ Created by iconfont
<glyph glyph-name="fuzeren" unicode="&#59016;" d="M586 236.9c0 9.6-12.1 25.3-31.8 51h-84.6c-19.6-25.6-31.7-41.4-31.7-51 0.8-10.5 23.5-56.5 44.2-83.1-17.7-78.8-38.5-137.5-38.5-206.2 0-23.5 51.9-72.3 67.5-73.6h1.7c15.5 1.2 67.5 50.1 67.5 73.6 0 68.7-20.9 127.4-38.5 206.2 20.8 26.8 43.4 72.7 44.2 83.1zM512 832.5c59.9 0 116.2-23.3 158.6-65.7 42.4-42.4 65.7-98.7 65.7-158.6S712.9 492 670.6 449.7C628.2 407.3 571.9 384 512 384s-116.2 23.3-158.6 65.7-65.7 98.7-65.7 158.6 23.3 116.2 65.7 158.6c42.4 42.3 98.7 65.6 158.6 65.6M512 896C353.1 896 224.3 767.2 224.3 608.3S353.1 320.5 512 320.5s287.7 128.8 287.7 287.7S670.9 896 512 896zM1024-128h-63.8c0 247.1-201.1 448.2-448.2 448.2S63.8 119.1 63.8-128H0c0 69.1 13.5 136.2 40.2 199.3C66 132.3 103 187 150 234s101.8 83.9 162.7 109.7C375.8 370.5 442.9 384 512 384s136.2-13.5 199.3-40.2C772.3 318 827 281 874 234s83.9-101.8 109.7-162.7c26.8-63.1 40.3-130.2 40.3-199.3z" horiz-adv-x="1024" />
<glyph glyph-name="shizhong" unicode="&#58956;" d="M512 888.986301C232.854795 888.986301 7.013699 663.145205 7.013699 384s225.841096-504.986301 504.986301-504.986301 504.986301 225.841096 504.986301 504.986301-227.243836 504.986301-504.986301 504.986301z m0-939.835616c-239.868493 0-434.849315 194.980822-434.849315 434.849315s194.980822 434.849315 434.849315 434.849315 434.849315-194.980822 434.849315-434.849315-196.383562-434.849315-434.849315-434.849315zM576.526027 364.361644c1.40274 5.610959 2.805479 12.624658 2.80548 19.638356 0 26.652055-15.430137 50.49863-37.873973 63.123288V723.463014c0 19.638356-15.430137 35.068493-35.068493 35.068493s-35.068493-15.430137-35.068493-35.068493V447.123288c-22.443836-12.624658-37.873973-35.068493-37.873973-63.123288 0-39.276712 32.263014-72.942466 72.942466-72.942466 7.013699 0 14.027397 1.40274 19.638356 2.80548l136.065754-136.065754c7.013699-7.013699 15.430137-9.819178 25.249315-9.819178s18.235616 2.805479 25.249315 9.819178c14.027397 14.027397 14.027397 36.471233 0 49.095891l-136.065754 137.468493z" horiz-adv-x="1024" />
<glyph glyph-name="zuzhijiegou" unicode="&#58908;" d="M957.134328 191.044776h-63.681592V339.422886a63.681592 63.681592 0 0 1-63.681592 63.681592H543.840796V550.845771h77.054726a63.681592 63.681592 0 0 1 63.681592 63.681592V832.318408a63.681592 63.681592 0 0 1-63.681592 63.681592H403.104478a63.681592 63.681592 0 0 1-63.681592-63.681592v-217.791045a63.681592 63.681592 0 0 1 63.681592-63.681592h77.054726v-147.741293H192.955224a63.681592 63.681592 0 0 1-63.681592-63.681592v-148.37811H65.59204a63.681592 63.681592 0 0 1-63.681592-63.681592v-191.044776a63.681592 63.681592 0 0 1 63.681592-63.681592h191.044776a63.681592 63.681592 0 0 1 63.681592 63.681592v191.044776a63.681592 63.681592 0 0 1-63.681592 63.681592H192.955224V339.422886h286.567164v-148.37811h-63.681592a63.681592 63.681592 0 0 1-63.681592-63.681592v-191.044776a63.681592 63.681592 0 0 1 63.681592-63.681592h191.044776a63.681592 63.681592 0 0 1 63.681592 63.681592v191.044776a63.681592 63.681592 0 0 1-63.681592 63.681592h-63.681592V339.422886H829.771144v-148.37811h-63.681592a63.681592 63.681592 0 0 1-63.681592-63.681592v-191.044776a63.681592 63.681592 0 0 1 63.681592-63.681592h191.044776a63.681592 63.681592 0 0 1 63.681592 63.681592v191.044776a63.681592 63.681592 0 0 1-63.681592 63.681592zM403.104478 832.318408h217.791044v-217.791045H403.104478zM256.636816-64.318408H65.59204v191.044776h191.044776v-191.044776z m350.248756 0z m0 0h-191.044776v191.044776h191.044776z m350.885572-31.840796v31.840796H766.089552v191.044776h191.044776v-191.044776z" horiz-adv-x="1024" />
@@ -59,6 +65,9 @@ Created by iconfont
<glyph glyph-name="_H_" unicode="&#58898;" d="M253.866667 375.68L50.56 24.106667A58.666667 58.666667 0 0 1 101.333333-64h406.613334a58.666667 58.666667 0 0 1 50.773333 88.106667l-203.306667 351.573333a58.666667 58.666667 0 0 1-101.546666 0zM512-21.333333a405.333333 405.333333 0 1 0 405.333333 405.333333 405.333333 405.333333 0 0 0-405.333333-405.333333z m0 762.88A357.546667 357.546667 0 1 1 869.546667 384 357.973333 357.973333 0 0 1 512 741.546667zM380.8 181.333333a23.893333 23.893333 0 0 0-23.68 23.893334v256l-26.453333-52.053334a23.893333 23.893333 0 1 0-42.666667 21.333334l71.466667 142.933333a23.893333 23.893333 0 0 0 45.226666-10.666667v-357.546666a23.893333 23.893333 0 0 0-23.893333-23.893334zM678.826667 490.666667h-190.72a23.893333 23.893333 0 1 0 0 47.573333h190.72a23.893333 23.893333 0 1 0 0-47.573333zM678.826667 419.84h-190.72a23.893333 23.893333 0 1 0 0 47.573333h190.72a23.893333 23.893333 0 1 0 0-47.573333zM678.826667 348.16h-190.72a23.893333 23.893333 0 1 0 0 47.786667h190.72a23.893333 23.893333 0 0 0 0-47.786667zM678.826667 181.333333h-190.72a23.893333 23.893333 0 0 0-23.893334 23.893334v95.36a23.893333 23.893333 0 0 0 23.893334 23.893333h190.72a23.893333 23.893333 0 0 0 23.893333-23.893333v-95.36a23.893333 23.893333 0 0 0-23.893333-23.893334zM512 229.12h143.146667V277.333333H512zM583.466667 490.666667a23.893333 23.893333 0 0 0-23.68 23.893333v48.213333a23.893333 23.893333 0 1 0 47.573333 0v-47.573333A23.893333 23.893333 0 0 0 583.466667 490.666667z" horiz-adv-x="1024" />
<glyph glyph-name="changyongtubiao-mianxing-" unicode="&#59267;" d="M916.48 402.4832l-159.7952-155.7504 37.7344-220.16a57.1904 57.1904 0 0 0-83.0976-60.3648l-197.7856 104.0384-197.5296-103.8336a57.2416 57.2416 0 0 0-83.0464 60.3648l37.6832 220.16-159.7952 155.5456a57.2928 57.2928 0 0 0 31.744 97.6896L363.52 532.224 462.1824 732.16a56.832 56.832 0 0 0 51.2 31.8976 56.832 56.832 0 0 0 51.2-31.8976l98.7648-200.1408 220.8256-32.0512A57.2928 57.2928 0 0 0 916.48 402.4832z" horiz-adv-x="1024" />
</font>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.