需求更改

This commit is contained in:
jingna 2026-03-06 16:18:09 +08:00
parent 6a678b8dd1
commit 4023082966
3 changed files with 7 additions and 19 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

View File

@ -286,7 +286,7 @@ $light_gray: #eee;
}
.login-container {
background: url('../../assets/login/beijing.jpg') no-repeat;
background: url('../../assets/login/beijings.png') no-repeat;
background-size: cover;
background-position: center center;
min-height: 100%;
@ -323,7 +323,7 @@ $light_gray: #eee;
-webkit-align-items: center;
text-align: center;
position: absolute;
left: 56%;
left: 69%;
margin-top: 90px;
border-radius: 5px;
.title-container{

View File

@ -55,7 +55,7 @@ function addproject() {
name: "",//
key: "",//id
remark: "",//
type: "",//
type: "local",//
filePath: "",//
accessKey: "",//AccessKey
secretKey: "",//SecretKey
@ -159,7 +159,7 @@ const projectForme: any = ref({
name: "",//
key: "",//id
remark: "",//
type: "",//
type: "local",//
filePath: "",//
accessKey: "",//AccessKey
secretKey: "",//SecretKey
@ -280,11 +280,6 @@ function comparePercentage(percentStr: any) {
<div class="sou_title_left">
<el-input style="margin-right: 10px ;" v-model="queryParams.name" clearable @change="getdata()"
placeholder="存储空间名称"></el-input>
<el-select v-model="queryParams.type" placeholder="存储策略" style="margin-right: 10px ;" clearable
@change="getdata()">
<el-option v-for="item in dictType" :key="item.itemcode" :label="item.dictname"
:value="item.itemcode" />
</el-select>
<el-button type="primary" @click="getdata()">搜索</el-button>
</div>
<div>
@ -310,13 +305,6 @@ function comparePercentage(percentStr: any) {
scope.row.name }}</span>
</template>
</el-table-column>
<el-table-column prop="type" label="存储策略" width="100">
<template #default="scope">
<span :style="{ color: scope.row.resar, 'font-size': scope.row.resar != '' ? '16px' : '' }">{{
typeName(dictType, scope.row.type) }}</span>
</template>
</el-table-column>
<el-table-column prop="valueData" label="存储路径" width="200">
<template #default="scope">
<span :style="{ color: scope.row.resar, 'font-size': scope.row.resar != '' ? '16px' : '' }">{{
@ -373,13 +361,13 @@ function comparePercentage(percentStr: any) {
<el-form-item label=" 存储源备注">
<el-input v-model="projectForme.remark" :disabled="storeContent != ''" />
</el-form-item>
<el-form-item label=" 存储策略" prop="type">
<!-- <el-form-item label=" 存储策略" prop="type">
<el-select v-model="projectForme.type" placeholder=" " :disabled="storeContent != ''" clearable>
<el-option v-for="item in dictType" :key="item.itemcode" :label="item.dictname"
:value="item.itemcode" />
</el-select>
</el-form-item>
<el-form-item v-if="projectForme.type == 'local' " label="存储空间绝对路径"
</el-form-item> -->
<el-form-item label="存储空间绝对路径"
prop="filePath">
<el-input v-model="projectForme.filePath" :disabled="storeContent != ''" />
</el-form-item>