管道基础大数据平台系统开发-【前端】-新系統界面
1
Surpriseplus
2022-11-29 271d931fc950745d37554528324cbc8a636d85c3
src/views/Archive/index.vue
@@ -22,11 +22,11 @@
            </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>
@@ -87,6 +87,7 @@
export default {
  data() {
    return {
      input: '',
      tree: [
        {
          label: '文献',
@@ -144,29 +145,7 @@
        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,
      },
@@ -214,6 +193,7 @@
.archive .arch_card {
  width: 100%;
  height: 100%;
  background: #303030;
}
.archive .arch_card .el-card__body {
  padding: 10px;
@@ -234,9 +214,24 @@
  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>