基本配置修改 优化
This commit is contained in:
parent
a2c5ceaf41
commit
cb18f8232d
|
|
@ -88,6 +88,13 @@
|
||||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="addConfig" style="margin-bottom:10px;">
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="addConfig" style="margin-bottom:10px;">
|
||||||
添加配置
|
添加配置
|
||||||
</el-button>
|
</el-button>
|
||||||
|
<div class="config-table-header">
|
||||||
|
<span class="config-th" style="width:180px;">配置类型</span>
|
||||||
|
<span class="config-th" style="width:180px;">数字配置</span>
|
||||||
|
<span class="config-th" style="width:180px;">装备配置率</span>
|
||||||
|
<span class="config-th" style="width:180px;">配置说明</span>
|
||||||
|
<span class="config-th" style="width:80px;">操作</span>
|
||||||
|
</div>
|
||||||
<div v-for="(item, index) in configForm.configs" :key="index"
|
<div v-for="(item, index) in configForm.configs" :key="index"
|
||||||
style="border:1px solid #eee;padding:10px;margin-bottom:10px;"
|
style="border:1px solid #eee;padding:10px;margin-bottom:10px;"
|
||||||
>
|
>
|
||||||
|
|
@ -446,4 +453,26 @@ export default {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
border: 1px dashed #dcdfe6;
|
border: 1px dashed #dcdfe6;
|
||||||
}
|
}
|
||||||
|
/* 配置弹窗表头样式 */
|
||||||
|
.config-table-header {
|
||||||
|
display: flex;
|
||||||
|
background: #f5f7fa;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
padding: 8px 0 8px 8px;
|
||||||
|
border: 1px solid #ebeef5;
|
||||||
|
}
|
||||||
|
.config-th {
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.config-table-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue