|
@@ -1,241 +1,440 @@
|
|
|
<template>
|
|
|
<div class="center">
|
|
|
- <div class="main_css">
|
|
|
- <div class="formData">
|
|
|
- <el-form ref="form" :model="form" label-width="80px">
|
|
|
- <el-form-item label="公告标题">
|
|
|
- <el-input v-model="form.title" clearable placeholder="请输入标题"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="公告日期">
|
|
|
- <el-date-picker v-model="form.issuingDate" type="date" value-format="yyyy-MM-dd" style='width: 100%;'
|
|
|
- placeholder="选择日期时间">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="发布机构">
|
|
|
- <el-input v-model="form.issuingAgency" clearable placeholder=""></el-input>
|
|
|
- </el-form-item>
|
|
|
- <div class="quill-editor">
|
|
|
- <!-- 图片上传组件辅助,组件内添加v-show=“false”属性,把该组件隐藏起来。-->
|
|
|
- <el-upload class="avatar-uploader" :action="uploadPath" :show-file-list="false" :on-success="uploadSuccess">
|
|
|
- </el-upload>
|
|
|
- <!--富文本编辑器组件-->
|
|
|
- <quill-editor v-model="form.releaseContent" :content="form.releaseContent" :options="editorOption"
|
|
|
- @blur="onEditorBlur($event)" @focus="onEditorFocus($event)" @ready="onEditorReady($event)"
|
|
|
- ref="QuillEditor">
|
|
|
- </quill-editor>
|
|
|
- <div v-html="form.releaseContent" />
|
|
|
+ <div class="center_css">
|
|
|
+ <div class="top_css">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="14">
|
|
|
+ <el-date-picker class='date' v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
|
|
|
+ range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="10">
|
|
|
+ <div class="screen">
|
|
|
+ <el-input class='find' v-model="searchkeyWord" @keyup.enter.native="find" placeholder="可按司机姓名和订单编号查找" clearable />
|
|
|
+ <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
|
|
|
+ src="../../../public/img/sousuo.png"></el-button>
|
|
|
</div>
|
|
|
- <!-- <quill-editor v-model="form.releaseContent" res="myQuillEditor" :options="editorOption" id="editor">
|
|
|
- </quill-editor> -->
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <div class="btn">
|
|
|
- <el-button @click="submit">提交</el-button>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col>
|
|
|
+ <div class="search_btn">
|
|
|
+ <div :class="search == '' ? 'search' : 'searchNo'" class="search_item search_block"
|
|
|
+ @click="searchBtn('')">
|
|
|
+ 全部
|
|
|
+ </div>
|
|
|
+ <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
|
|
|
+ 待还款
|
|
|
+ </div>
|
|
|
+ <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
|
|
|
+ 已还款
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</div>
|
|
|
+ <el-table :data="tableData" style="width: 98%; margin: 0 auto; border-radius: 10px" height="55.8vh" border highlight-current-row>
|
|
|
+ <!-- <el-table-column prop="index" label="序号" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.$index}}
|
|
|
+ </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column type="index" width="60" label="序号" align="center">
|
|
|
+ <template scope="scope">
|
|
|
+ <span>{{scope.$index + 1}}</span>
|
|
|
+ <!-- <span v-else>{{scope.$index}}</span> -->
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="number" label="订单编号" />
|
|
|
+ <el-table-column prop="title" label="货主" />
|
|
|
+ <el-table-column prop="issuingDate" label="账号" />
|
|
|
+ <el-table-column prop="issuingAgency" label="所属企业" />
|
|
|
+ <el-table-column prop="updateDate" label="垫付金额(元)" />
|
|
|
+ <el-table-column prop="updateDate" label="超期金额(元)" />
|
|
|
+ <el-table-column prop="updateDate" label="合计应还(元)" />
|
|
|
+ <el-table-column prop="updateDate" label="已还金额(元)" />
|
|
|
+ <el-table-column prop="updateDate" label="未还金额(元)" />
|
|
|
+ <el-table-column prop="updateDate" label="还款时间" />
|
|
|
+ <el-table-column prop="status" label="状态" >
|
|
|
+ <template scope="scope">
|
|
|
+ <span>{{scope.row.status}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
</div>
|
|
|
+ <el-pagination :current-page="currentPage" style="text-align: center; margin-top: 10px"
|
|
|
+ :page-size="deptCircularPage.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal"
|
|
|
+ @size-change="handleSizeChange" @current-change="handleCurrentChange" />
|
|
|
</div>
|
|
|
</template>
|
|
|
-
|
|
|
<script>
|
|
|
- import {
|
|
|
- seeData,
|
|
|
- editFormData,
|
|
|
- uploadPath
|
|
|
- } from '@/api/officialWebsiteManagement'
|
|
|
- import quillEditor from 'vue-quill-editor';
|
|
|
- const toolbarOptions = [
|
|
|
- ['bold', 'italic', 'underline', 'strike'], // 加粗,斜体,下划线,删除线
|
|
|
- ['blockquote', 'code-block'], //引用,代码块
|
|
|
- [{
|
|
|
- 'header': 1
|
|
|
- }, {
|
|
|
- 'header': 2
|
|
|
- }], // 几级标题
|
|
|
- [{
|
|
|
- 'list': 'ordered'
|
|
|
- }, {
|
|
|
- 'list': 'bullet'
|
|
|
- }], // 有序列表,无序列表
|
|
|
- [{
|
|
|
- 'script': 'sub'
|
|
|
- }, {
|
|
|
- 'script': 'super'
|
|
|
- }], // 下角标,上角标
|
|
|
- [{
|
|
|
- 'indent': '-1'
|
|
|
- }, {
|
|
|
- 'indent': '+1'
|
|
|
- }], // 缩进
|
|
|
- [{
|
|
|
- 'direction': 'rtl'
|
|
|
- }], // 文字输入方向
|
|
|
- [{
|
|
|
- 'size': ['small', false, 'large', 'huge']
|
|
|
- }], // 字体大小
|
|
|
- [{
|
|
|
- 'header': [1, 2, 3, 4, 5, 6, false]
|
|
|
- }], // 标题
|
|
|
- [{
|
|
|
- 'color': []
|
|
|
- }, {
|
|
|
- 'background': []
|
|
|
- }], // 颜色选择
|
|
|
- [{
|
|
|
- 'font': ['SimSun', 'SimHei', 'Microsoft-YaHei', 'KaiTi', 'FangSong', 'Arial']
|
|
|
- }], // 字体
|
|
|
- [{
|
|
|
- 'align': []
|
|
|
- }], // 居中
|
|
|
- ['clean'], // 清除样式,
|
|
|
- ['link', 'image'], // 上传图片、上传视频
|
|
|
- ]
|
|
|
+import {
|
|
|
+ getListwithdrawal
|
|
|
+} from '@/api/settlementManagement'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
- uploadPath,
|
|
|
- editorOption: {
|
|
|
- modules: {
|
|
|
- toolbar: {
|
|
|
- container: toolbarOptions,
|
|
|
- handlers: {
|
|
|
- image: function(value) {
|
|
|
- if (value) {
|
|
|
- // 调用element的图片上传组件
|
|
|
- document.querySelector('.avatar-uploader input').click()
|
|
|
- } else {
|
|
|
- this.quill.format('image', false)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- form: {
|
|
|
- issuingAgency: ''
|
|
|
- },
|
|
|
- regulations: {},
|
|
|
- version: [],
|
|
|
- count: ""
|
|
|
+ startDate: '',
|
|
|
+ endDate: '',
|
|
|
+ value1: '',
|
|
|
+ tableData: [],
|
|
|
+ // 分页
|
|
|
+ searchkeyWord: '',
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ deptBudgetTotal: 0,
|
|
|
+ deptCircularPage: {},
|
|
|
+ search: 1,
|
|
|
+ disabled: false,
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
- this.form.makeUser = JSON.parse(localStorage.getItem('UserInfo')).deptName
|
|
|
- },
|
|
|
mounted() {
|
|
|
- this.id = this.$route.query.id
|
|
|
+ this.getPassYearFormatDate()
|
|
|
this.getList()
|
|
|
},
|
|
|
methods: {
|
|
|
+ dateChange(e) {
|
|
|
+ this.startDate = e[0]
|
|
|
+ this.endDate = e[1]
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ // 默认日期
|
|
|
+ getPassYearFormatDate() {
|
|
|
+ var nowDate = new Date()
|
|
|
+ var _date = new Date()
|
|
|
+ var year = nowDate.getFullYear()-1
|
|
|
+ var year1 = _date.getFullYear()
|
|
|
+ var month = nowDate.getMonth() + 1
|
|
|
+ var month1 = _date.getMonth() + 1
|
|
|
+ var strDate = nowDate.getDate()
|
|
|
+ var strDate1 = _date.getDate()
|
|
|
+ if (month >= 1 && month <= 9) {
|
|
|
+ month = '0' + month
|
|
|
+ }
|
|
|
+ if (month1 >= 1 && month1 <= 9) {
|
|
|
+ month1 = '0' + month1
|
|
|
+ }
|
|
|
+
|
|
|
+ if (strDate >= 0 && strDate <= 9) {
|
|
|
+ strDate = '0' + strDate
|
|
|
+ }
|
|
|
+ if (strDate1 >= 0 && strDate1 <= 9) {
|
|
|
+ strDate1 = '0' + strDate1
|
|
|
+ }
|
|
|
+ this.startDate = year + '-' + month + '-' + strDate
|
|
|
+ this.endDate = year1 + '-' + month1 + '-' + strDate1
|
|
|
+ this.value1 = [this.startDate, this.endDate]
|
|
|
+ },
|
|
|
getList() {
|
|
|
- this.listLoading = true
|
|
|
- var _obj = {}
|
|
|
- _obj.id = this.id
|
|
|
- seeData(_obj).then(response => {
|
|
|
- this.form = response.data
|
|
|
- console.log(this.form)
|
|
|
+ this.loading = true
|
|
|
+ const _obj = {}
|
|
|
+ _obj.currentPage = this.currentPage
|
|
|
+ _obj.pageSize = this.pageSize
|
|
|
+ _obj.searchKeyWord = this.searchkeyWord
|
|
|
+ _obj.startDate = this.startDate
|
|
|
+ _obj.endDate= this.endDate
|
|
|
+ _obj.searchType = '公告'
|
|
|
+ getList(_obj).then(response => {
|
|
|
+ this.tableData = response.data.records
|
|
|
+ this.deptBudgetTotal = response.data.total
|
|
|
this.listLoading = false
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.loading = false
|
|
|
})
|
|
|
},
|
|
|
- // 失去焦点
|
|
|
- onEditorBlur(editor) {},
|
|
|
- // 获得焦点
|
|
|
- onEditorFocus(editor) {},
|
|
|
- // 开始
|
|
|
- onEditorReady(editor) {},
|
|
|
- // 值发生变化
|
|
|
- onEditorChange(editor) {
|
|
|
- this.form.releaseContent = editor.html;
|
|
|
- console.log(editor);
|
|
|
+ find() {
|
|
|
+ this.getList()
|
|
|
},
|
|
|
- beforeUpload(file) {
|
|
|
- const isIMAGE = ''
|
|
|
- file.type === 'image/jpeg' || 'image/gif' || 'image/png' || 'image/jpg'
|
|
|
- const isLt1M = file.size / 1024 / 1024 < 1
|
|
|
+ handleSizeChange(val) {
|
|
|
+ console.log(`每页 ${val} 条`)
|
|
|
+ this.pageSize = val
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val
|
|
|
+ console.log(`当前页: ${val}`)
|
|
|
+ this.getList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .center {
|
|
|
+ padding: 10px 20px;
|
|
|
+ background: #f5f6f7;
|
|
|
+ height: calc(100vh - 5vh);
|
|
|
|
|
|
- if (!isIMAGE) {
|
|
|
- this.$message.error('上传文件只能是图片格式!')
|
|
|
+ .top_css {
|
|
|
+ padding: 10px;
|
|
|
+
|
|
|
+ .search_btn {
|
|
|
+ display: flex;
|
|
|
+ margin-top: 20px;
|
|
|
+
|
|
|
+ .search_item {
|
|
|
+ text-align: center;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 40px;
|
|
|
+ width: 112px;
|
|
|
+ height: 40px;
|
|
|
+ background: #f7f8f9;
|
|
|
+ cursor: pointer
|
|
|
}
|
|
|
- if (!isLt1M) {
|
|
|
- this.$message.error('上传文件大小不能超过 1MB!')
|
|
|
+
|
|
|
+ .searchNo {
|
|
|
+ color: #323233;
|
|
|
}
|
|
|
- return isIMAGE && isLt1M
|
|
|
- },
|
|
|
- uploadSuccess(res) {
|
|
|
- // 获取富文本组件实例
|
|
|
- let quill = this.$refs.QuillEditor.quill
|
|
|
- // 如果上传成功
|
|
|
- if (res.data.errno = 200 && res.data.url) {
|
|
|
- // 获取光标所在位置
|
|
|
- let length = quill.getSelection().index;
|
|
|
- // 插入图片,res为服务器返回的图片链接地址
|
|
|
- quill.insertEmbed(length, 'image', res.data.url)
|
|
|
- // 调整光标到最后
|
|
|
- quill.setSelection(length + 1)
|
|
|
- } else {
|
|
|
- // 提示信息,需引入Message
|
|
|
- this.$message.error('图片插入失败!')
|
|
|
+
|
|
|
+ .search {
|
|
|
+ color: #2f53eb;
|
|
|
+ background: #ffffff;
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- submit() {
|
|
|
- this.listLoading = true
|
|
|
- this.form.contentType = '公告'
|
|
|
- this.form.id = this.id
|
|
|
- delete this.form.createDate
|
|
|
- delete this.form.createUserId
|
|
|
- delete this.form.updateDate
|
|
|
- delete this.form.deleteFlag
|
|
|
- delete this.form.number
|
|
|
- editFormData(this.form).then(response => {
|
|
|
- this.$notify({
|
|
|
- title: '成功',
|
|
|
- message: '添加成功!',
|
|
|
- type: 'success'
|
|
|
- });
|
|
|
- this.listLoading = false
|
|
|
- this.$router.go(-1)
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.loading = false
|
|
|
- })
|
|
|
+ .ask_css {
|
|
|
+ position: absolute;
|
|
|
+ margin: 3px 0 0 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .center_css {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 1px;
|
|
|
+ margin-top: 10px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .screen {
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ .search {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ background: #2f53eb;
|
|
|
+ border-radius: 0px 2px 2px 0px;
|
|
|
+ border: 1px solid #DCDFE6;
|
|
|
+ margin-left:-1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .count_css {
|
|
|
+ width: 80px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 40px;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ padding: 10px 20px !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .center_css {
|
|
|
+
|
|
|
+ ::v-deep .el-table th,
|
|
|
+ ::v-deep .el-table td {
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .fujian {
|
|
|
+ font-size: 24px;
|
|
|
+ color: #409eff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .warning {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ed1d1d;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-</script>
|
|
|
|
|
|
-<style lang="scss" scoped>
|
|
|
- .center {
|
|
|
- background: #F5F6F7;
|
|
|
- height: calc(100vh - 4.5vh);
|
|
|
- padding-top: 20px;
|
|
|
+ .car_css {
|
|
|
+ width: 50%;
|
|
|
+ display: inline-block;
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 30px;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ .status_css {
|
|
|
+ background: #3AC602;
|
|
|
+ width: 50px;
|
|
|
+ height: 17px;
|
|
|
+ position: absolute;
|
|
|
+ top: 0px;
|
|
|
+ right: 15px;
|
|
|
+ border-radius: 3px;
|
|
|
+ }
|
|
|
|
|
|
+ .carno_css {
|
|
|
+ padding: 1px 5px;
|
|
|
+ background-color: #F5F6F7;
|
|
|
+ color: #666666;
|
|
|
+ border-radius: 12px;
|
|
|
+ text-align: center;
|
|
|
+ width: 100px;
|
|
|
+ margin: 10px auto 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .carborder_css {
|
|
|
+ border: 1px solid #F0F1F2;
|
|
|
+ margin: 15px auto 0;
|
|
|
+ width: 90%;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- .main_css {
|
|
|
- width: 96%;
|
|
|
- height: 90vh;
|
|
|
- overflow-y: scroll;
|
|
|
- background: #FFFFFF;
|
|
|
- margin: 20px auto;
|
|
|
- padding-top: 20px;
|
|
|
+ .tips {
|
|
|
+ color: #999999;
|
|
|
+ font-size: 14px;
|
|
|
}
|
|
|
|
|
|
- .formData {
|
|
|
- width: 50%;
|
|
|
- margin: 20px 0 0 140px;
|
|
|
+ .car_item {
|
|
|
+ width: 200px;
|
|
|
+ height: 160px;
|
|
|
+ border-radius: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .user {
|
|
|
+ margin-bottom: 20px;
|
|
|
+
|
|
|
+ .id_css {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .id_css,
|
|
|
+ .name_css {
|
|
|
+ margin: 5px 0;
|
|
|
+ color: #0D0D0D;
|
|
|
+ }
|
|
|
+
|
|
|
+ .pay_name {
|
|
|
+ color: #9D9D9D;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .name_css {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .user_item {
|
|
|
+ margin: 25px 0;
|
|
|
+ width: 450px;
|
|
|
+ height: 300px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .border_css {
|
|
|
+ width: 100%;
|
|
|
+ border: 1px solid #F0F1F2;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep .el-table--border .el-table__header th {
|
|
|
+ background: #f7f8f9;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn_css {
|
|
|
+ color: #409EFF;
|
|
|
+ cursor: pointer
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn_css1 {
|
|
|
+ margin-left: -20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sign {
|
|
|
+ font-size: 14px;
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form_css {
|
|
|
+ width: 100%;
|
|
|
+ margin: 20px auto 20px;
|
|
|
+
|
|
|
+ ::v-deep .el-checkbox {
|
|
|
+ width: 40%;
|
|
|
+ height: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ // ::v-deep .el-dialog__body{
|
|
|
+ // padding: 10px 20px;
|
|
|
+ // }
|
|
|
+ ::v-deep .el-dialog__title {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep .el-textarea__inner {
|
|
|
+ background: #F0F1F2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form_btn {
|
|
|
+ text-align: right;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- .btn {
|
|
|
- text-align: right;
|
|
|
- position: absolute;
|
|
|
- right: 200px;
|
|
|
- bottom: 100px;
|
|
|
+ //发送信息
|
|
|
+ .Info_css {
|
|
|
+ .Info_title {
|
|
|
+ color: #323233;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .Info_item {
|
|
|
+ margin: 20px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .Info_btn {
|
|
|
+ text-align: right;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- .ql-editor {
|
|
|
- height: 400px !important;
|
|
|
+ //附件
|
|
|
+ .file {
|
|
|
+ .fujian_css {
|
|
|
+ width: 631px;
|
|
|
+ display: flex;
|
|
|
+ margin: 0 auto;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 32px;
|
|
|
+ border: 1px solid #F0F1F2;
|
|
|
+ border-right: 0px;
|
|
|
+ border-radius: 2px 0px 0px 2px;
|
|
|
+
|
|
|
+ .fujian_item {
|
|
|
+ cursor: pointer;
|
|
|
+ width: 90px;
|
|
|
+ height: 32px;
|
|
|
+ border-right: 1px solid #F0F1F2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .file_btn {
|
|
|
+ color: #2F53EB;
|
|
|
+ background-color: #CFDBFE;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .file_img {
|
|
|
+ width: 525px;
|
|
|
+ height: 332px;
|
|
|
+ margin: 20px auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .img_css {
|
|
|
+ width: 525px;
|
|
|
+ height: 332px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn {
|
|
|
+ width: 400px;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .date{
|
|
|
+ margin:0 10px;
|
|
|
+ }
|
|
|
+ .find::v-deep input.el-input__inner{
|
|
|
+ border-radius:0;
|
|
|
}
|
|
|
</style>
|