部分样式
This commit is contained in:
parent
1b566befc2
commit
c191b279ee
|
@ -1,6 +1,6 @@
|
|||
/* 编辑按钮 */
|
||||
.content-button {
|
||||
margin: 2vw 16.5vw 1vw;
|
||||
margin: 2vw 13.5vw 1vw;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
|
||||
<div>
|
||||
<el-form-item label="成员">
|
||||
<el-button type="primary" @click="handleAddMember(memberList)">添加成员</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-plus-outline" @click="handleAddMember(memberList)">添加成员</el-button>
|
||||
</el-form-item>
|
||||
<!-- 成员表格 -->
|
||||
<el-table v-loading="loading"
|
||||
|
@ -156,10 +156,10 @@
|
|||
class="import-apply-file"
|
||||
>
|
||||
<!-- 触发文件选择框的内容 -->
|
||||
<el-button slot="trigger" type="primary" icon="">提交报名表</el-button>
|
||||
<el-button slot="trigger" type="primary" icon="el-icon-upload2">提交报名表</el-button>
|
||||
<div slot="tip" class="import-apply-tip">请上传zip/rar格式压缩包</div>
|
||||
<el-link :href="applyFilterUrl" :underline="false" target="_blank" icon="" class="download-apply-file">
|
||||
<el-button>下载报名表</el-button>
|
||||
<el-link :href="applyFilterUrl" :underline="false" target="_blank" class="download-apply-file">
|
||||
<el-button icon="el-icon-download">下载报名表</el-button>
|
||||
</el-link>
|
||||
</el-upload>
|
||||
</div>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<div v-loading="contentLoading" element-loading-background="rgb(255, 255, 255)">
|
||||
|
||||
<div class="content-button">
|
||||
<el-button plain class="edit-button" @click="goToEdit">编辑</el-button>
|
||||
<el-button plain class="edit-button" icon="el-icon-edit-outline" @click="goToEdit">编辑</el-button>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
|
@ -130,7 +130,7 @@ export default {
|
|||
.flot-img {
|
||||
position: relative;
|
||||
float: left;
|
||||
width:35vw;
|
||||
width: 35vw;
|
||||
height: auto;
|
||||
margin-top: -70px;
|
||||
margin-left: 20px;
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
</el-breadcrumb>
|
||||
<mavon-editor :ishljs="true" v-model="data" @change="change"/>
|
||||
<div class="button-group">
|
||||
<el-button type="primary" @click="submit">提交</el-button>
|
||||
<el-button @click="cancel">取消</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-check" @click="submit">提交</el-button>
|
||||
<el-button icon="el-icon-error" @click="cancel">取消</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<div v-loading="contentLoading">
|
||||
|
||||
<div class="content-button">
|
||||
<el-button plain class="edit-button" @click="goToEdit">编辑</el-button>
|
||||
<el-button plain class="edit-button" icon="el-icon-edit-outline" @click="goToEdit">编辑</el-button>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
|
@ -19,7 +19,7 @@
|
|||
|
||||
<script>
|
||||
import pageUtils from "@/utils/pageUtils";
|
||||
import {Message} from "element-ui";
|
||||
import { Message } from "element-ui";
|
||||
|
||||
export default {
|
||||
name: "ContactUs",
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</el-breadcrumb>
|
||||
<mavon-editor :ishljs="true" v-model="data" @save="save" :xss-options="xssOptions" @change="change"/>
|
||||
<div class="button-group">
|
||||
<el-button type="primary" @click="submit">提交</el-button>
|
||||
<el-button @click="cancel">取消</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-check" @click="submit">提交</el-button>
|
||||
<el-button icon="el-icon-error" @click="cancel">取消</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
|||
|
||||
<script>
|
||||
import pageUtils from "@/utils/pageUtils";
|
||||
import {Message} from "element-ui";
|
||||
import { Message } from "element-ui";
|
||||
|
||||
export default {
|
||||
name: "ContactUsEdit",
|
||||
|
|
|
@ -273,6 +273,13 @@ export default {
|
|||
width: 2vw;
|
||||
height: 2vw;
|
||||
}
|
||||
|
||||
.el-pagination {
|
||||
margin: 1vw 0vw;
|
||||
}
|
||||
::v-deep .el-pagination__jump {
|
||||
margin-left: 0px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style src="@/assets/css/common.css" scoped/>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<div v-loading="contentLoading">
|
||||
|
||||
<div class="content-button">
|
||||
<el-button plain class="edit-button" @click="goToEdit">编辑</el-button>
|
||||
<el-button plain class="edit-button" icon="el-icon-edit-outline" @click="goToEdit">编辑</el-button>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</el-breadcrumb>
|
||||
<mavon-editor :ishljs="true" v-model="data" @save="save" :xss-options="xssOptions" @change="change"/>
|
||||
<div class="button-group">
|
||||
<el-button type="primary" @click="submit">提交</el-button>
|
||||
<el-button @click="cancel">取消</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-check" @click="submit">提交</el-button>
|
||||
<el-button icon="el-icon-error" @click="cancel">取消</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<div v-loading="contentLoading">
|
||||
<div class="content-button">
|
||||
<el-button plain @click="goToEdit">编辑</el-button>
|
||||
<el-button plain class="edit-button" icon="el-icon-edit-outline" @click="goToEdit">编辑</el-button>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</el-breadcrumb>
|
||||
<mavon-editor :ishljs="true" v-model="data" @save="save" :xss-options="xssOptions" @change="change"/>
|
||||
<div class="button-group">
|
||||
<el-button type="primary" @click="submit">提交</el-button>
|
||||
<el-button @click="cancel">取消</el-button>
|
||||
<el-button type="primary" icon="el-icon-circle-check" @click="submit">提交</el-button>
|
||||
<el-button icon="el-icon-error" @click="cancel">取消</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="content-button">
|
||||
<el-button plain class="edit-button">新增</el-button>
|
||||
<el-button plain class="edit-button" icon="el-icon-circle-plus">新增</el-button>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<ul>
|
||||
<ul class="ul-align">
|
||||
|
||||
<!-- <li v-for="item in noticeAll" :key="item.noticeId" class="card">
|
||||
<div class="notice-top">
|
||||
|
@ -109,6 +109,10 @@ export default {
|
|||
|
||||
|
||||
<style scoped>
|
||||
.ul-align {
|
||||
margin-right: 3vw;
|
||||
}
|
||||
|
||||
.notice-top {
|
||||
display: flex;
|
||||
padding: 1vw 2vw 0vw;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="content-button">
|
||||
<el-button plain class="edit-button">新增</el-button>
|
||||
<el-button plain icon="el-icon-circle-plus" class="edit-button">新增</el-button>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
|
|
Loading…
Reference in New Issue