|
@@ -7,7 +7,7 @@
|
|
|
v-show="showSearch"
|
|
|
label-width="68px"
|
|
|
>
|
|
|
- <el-form-item label="文件名称" prop="fileName">
|
|
|
+ <el-form-item label="" prop="fileName">
|
|
|
<el-input
|
|
|
v-model="queryParams.fileName"
|
|
|
placeholder="请输入文件名称"
|
|
@@ -16,7 +16,7 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="上传日期" prop="createtime">
|
|
|
+ <el-form-item label="" prop="createtime">
|
|
|
<el-input
|
|
|
v-model="queryParams.createtime"
|
|
|
placeholder="请输入上传日期"
|
|
@@ -25,7 +25,7 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="更新日期" prop="updatetime">
|
|
|
+ <el-form-item label="" prop="updatetime">
|
|
|
<el-input
|
|
|
v-model="queryParams.updatetime"
|
|
|
placeholder="请输入更新日期"
|
|
@@ -37,12 +37,11 @@
|
|
|
<el-form-item>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
- icon="el-icon-search"
|
|
|
- size="mini"
|
|
|
+ size="btn"
|
|
|
@click="handleQuery"
|
|
|
>搜索</el-button
|
|
|
>
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
|
|
+ <el-button size="btr" @click="resetQuery"
|
|
|
>重置</el-button
|
|
|
>
|
|
|
</el-form-item>
|
|
@@ -96,16 +95,17 @@
|
|
|
>导出</el-button
|
|
|
>
|
|
|
</el-col>
|
|
|
- <right-toolbar
|
|
|
+ <!-- <right-toolbar
|
|
|
:showSearch.sync="showSearch"
|
|
|
@queryTable="getList"
|
|
|
- ></right-toolbar>
|
|
|
+ ></right-toolbar> -->
|
|
|
</el-row>
|
|
|
|
|
|
<el-table
|
|
|
v-loading="loading"
|
|
|
:data="announcementList"
|
|
|
@selection-change="handleSelectionChange"
|
|
|
+ :header-cell-style="{ background: '#003C69', color: 'white' }"
|
|
|
>
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="更新日期" align="center" prop="id" />
|
|
@@ -120,17 +120,15 @@
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
- size="mini"
|
|
|
+ size="btu"
|
|
|
type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['medicalhealth:announcement:edit']"
|
|
|
>修改</el-button
|
|
|
>
|
|
|
<el-button
|
|
|
- size="mini"
|
|
|
+ size="btd"
|
|
|
type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['medicalhealth:announcement:remove']"
|
|
|
>删除</el-button
|
|
@@ -333,3 +331,43 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
+<style scoped>
|
|
|
+/* 对话框背景颜色 */
|
|
|
+::v-deep .el-dialog {
|
|
|
+ background: #004d86 !important;
|
|
|
+}
|
|
|
+::v-deep .el-textarea__inner {
|
|
|
+ width: 920px;
|
|
|
+ height: 104px;
|
|
|
+ margin: auto;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__header {
|
|
|
+ border-bottom: 1px solid #718a9d;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__title {
|
|
|
+ color: #fff;
|
|
|
+ font: 18px;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__headerbtn .el-dialog__close {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+::v-deep .el-form-item__label {
|
|
|
+ font: 16px;
|
|
|
+ color: #fff;
|
|
|
+ width: 100px !important;
|
|
|
+}
|
|
|
+::v-deep .el-input__inner {
|
|
|
+ /* width: 200px !important;
|
|
|
+ height: 36px; */
|
|
|
+ background: transparent;
|
|
|
+ color: #fff;
|
|
|
+ border: 1px solid white !important;
|
|
|
+}
|
|
|
+/* 单位框背景颜色 */
|
|
|
+::v-deep .vue-treeselect__control {
|
|
|
+ background: #004d86 !important;
|
|
|
+}
|
|
|
+::v-deep .el-upload__tip{
|
|
|
+ color: #bcc5cc !important;
|
|
|
+}
|
|
|
+</style>
|