| | |
| | | </div> |
| | | </el-col> |
| | | <el-col :span="4"> |
| | | <el-input :placeholder="$t('common.pleaseInput')" |
| | | <el-input v-model="input" :placeholder="$t('common.pleaseInput')" |
| | | /></el-col> |
| | | <el-col :span="4" |
| | | ><el-button type="primary">{{ $t('common.iquery') }}</el-button> |
| | | <el-button v-if="archStatus.download" type="primary">{{ |
| | | ><el-button class="primary">{{ $t('common.iquery') }}</el-button> |
| | | <el-button v-if="archStatus.download" type="success">{{ |
| | | $t('common.download') |
| | | }}</el-button> |
| | | </el-col> |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | input: '', |
| | | tree: [ |
| | | { |
| | | label: '文献', |
| | |
| | | chilren: 'children', //"children"内的每个对象解析为一个子项; |
| | | label: 'label', //所有"label"所在的对象解析为一个父项 |
| | | }, |
| | | tableData: [ |
| | | { |
| | | timer: '2016-05-01', |
| | | name: 'Tom', |
| | | count: '3', |
| | | type: '业务图层', |
| | | state: 'x', |
| | | }, |
| | | { |
| | | timer: '2016-05-02', |
| | | name: 'Tom', |
| | | count: '2', |
| | | type: '业务图层', |
| | | state: 'x', |
| | | }, |
| | | { |
| | | timer: '2016-05-03', |
| | | name: 'Tom', |
| | | count: '1', |
| | | type: '业务图层', |
| | | state: 'x', |
| | | }, |
| | | ], |
| | | tableData: [], |
| | | archStatus: { |
| | | download: false, |
| | | }, |
| | |
| | | .archive .arch_card { |
| | | width: 100%; |
| | | height: 100%; |
| | | background: #303030; |
| | | } |
| | | .archive .arch_card .el-card__body { |
| | | padding: 10px; |
| | |
| | | width: 100%; |
| | | height: 81vh; |
| | | border: transparent; |
| | | background: #303030; |
| | | } |
| | | |
| | | .archive .el-table .warning-row { |
| | | --el-table-tr-bg-color: var(--el-color-warning-light-9); |
| | | } |
| | | .el-form-item__label { |
| | | color: white; |
| | | } |
| | | |
| | | .el-input__inner { |
| | | background-color: transparent !important ; |
| | | color: #fff !important ; |
| | | border: 1px solid !important ; |
| | | } |
| | | .primary { |
| | | background: #409eff; |
| | | border: #409eff; |
| | | color: white; |
| | | } |
| | | </style> |