mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 05:23:55 +08:00
feat: 完成参数管理页面改造
This commit is contained in:
@@ -80,7 +80,7 @@ export default {
|
|||||||
}).send()
|
}).send()
|
||||||
},
|
},
|
||||||
// 保存
|
// 保存
|
||||||
addParam(data, callback) {
|
addParam(data, callback, failCallback) {
|
||||||
RequestService.sendRequest()
|
RequestService.sendRequest()
|
||||||
.url(`${getServiceUrl()}/admin/params`)
|
.url(`${getServiceUrl()}/admin/params`)
|
||||||
.method('POST')
|
.method('POST')
|
||||||
@@ -89,6 +89,10 @@ export default {
|
|||||||
RequestService.clearRequestTime()
|
RequestService.clearRequestTime()
|
||||||
callback(res)
|
callback(res)
|
||||||
})
|
})
|
||||||
|
.fail((err) => {
|
||||||
|
RequestService.clearRequestTime()
|
||||||
|
failCallback(err)
|
||||||
|
})
|
||||||
.networkFail((err) => {
|
.networkFail((err) => {
|
||||||
console.error('添加参数失败:', err)
|
console.error('添加参数失败:', err)
|
||||||
RequestService.reAjaxFun(() => {
|
RequestService.reAjaxFun(() => {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ export default {
|
|||||||
type: {
|
type: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'default',
|
default: 'default',
|
||||||
validator: (val) => ['default', 'confirm'].includes(val)
|
validator: (val) => ['default', 'confirm', 'delete'].includes(val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -23,29 +23,33 @@ export default {
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.custom-button--default {
|
.custom-button--default {
|
||||||
background: transparent;
|
width: fit-content;
|
||||||
color: #8099fc;
|
background: #4998ff;
|
||||||
border: 1px solid #adbdff;
|
color: #ffffff;
|
||||||
|
border: none;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
|
|
||||||
&.el-button--small {
|
&.el-button--small {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
&.el-button--medium {
|
||||||
|
padding: 12px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #f1f2ff;
|
background: #62a4fc;
|
||||||
color: #8099fc;
|
color: #ffffff;
|
||||||
border-color: #adbdff;
|
border-color: transparent;
|
||||||
box-shadow: 0 2px 8px rgba(128, 153, 252, 0.3);
|
box-shadow: 0 2px 8px rgba(74, 124, 253, 0.2);
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.is-disabled,
|
&.is-disabled,
|
||||||
&.is-disabled:hover {
|
&.is-disabled:hover {
|
||||||
background: transparent;
|
background: linear-gradient(to right, #f0f3fe, #f5f6fe);
|
||||||
color: #c0c4cc;
|
color: rgba(74, 124, 253, 0.5);
|
||||||
border-color: #e4e7ed;
|
border-color: transparent;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
transform: none;
|
transform: none;
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
@@ -63,9 +67,11 @@ export default {
|
|||||||
&.el-button--small {
|
&.el-button--small {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
&.el-button--medium {
|
||||||
|
padding: 12px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: linear-gradient(to right, #6b8cff, #9a7cff);
|
|
||||||
color: white;
|
color: white;
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
box-shadow: 0 2px 8px rgba(74, 124, 253, 0.3);
|
box-shadow: 0 2px 8px rgba(74, 124, 253, 0.3);
|
||||||
@@ -82,4 +88,37 @@ export default {
|
|||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.custom-button--delete {
|
||||||
|
width: fit-content;
|
||||||
|
background: linear-gradient(to right, #ff6b6b, #ff8e8e);
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 6px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
|
||||||
|
&.el-button--small {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
&.el-button--medium {
|
||||||
|
padding: 12px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
border-color: transparent;
|
||||||
|
box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
|
||||||
|
transform: translateY(-2px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.is-disabled,
|
||||||
|
&.is-disabled:hover {
|
||||||
|
background: linear-gradient(to right, #ffaaaa, #ffcaca);
|
||||||
|
color: rgba(255, 255, 255, 0.6);
|
||||||
|
border-color: transparent;
|
||||||
|
box-shadow: none;
|
||||||
|
transform: none;
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -21,19 +21,20 @@
|
|||||||
<slot></slot>
|
<slot></slot>
|
||||||
<template slot="footer">
|
<template slot="footer">
|
||||||
<div v-if="footer" class="dialog-footer">
|
<div v-if="footer" class="dialog-footer">
|
||||||
<el-button @click="handleCancel">{{ cancelText }}</el-button>
|
<CustomButton @click="handleCancel">{{ cancelText }}</CustomButton>
|
||||||
<el-button :loading="confirmLoading" type="primary" @click="handleConfirm">
|
<CustomButton :loading="confirmLoading" type="confirm" @click="handleConfirm">
|
||||||
<span class="confirm-inner">
|
<span class="confirm-inner">
|
||||||
<img src="@/assets/knowledge-base/star.png" class="confirm-icon" />
|
<img src="@/assets/knowledge-base/star.png" class="confirm-icon" />
|
||||||
{{ confirmText }}
|
{{ confirmText }}
|
||||||
</span>
|
</span>
|
||||||
</el-button>
|
</CustomButton>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import CustomButton from './CustomButton.vue';
|
||||||
export default {
|
export default {
|
||||||
name: "CustomDialog",
|
name: "CustomDialog",
|
||||||
props: {
|
props: {
|
||||||
@@ -91,6 +92,9 @@ export default {
|
|||||||
dialogVisible: this.visible
|
dialogVisible: this.visible
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
components: {
|
||||||
|
CustomButton
|
||||||
|
},
|
||||||
watch: {
|
watch: {
|
||||||
visible(val) {
|
visible(val) {
|
||||||
this.dialogVisible = val;
|
this.dialogVisible = val;
|
||||||
@@ -195,7 +199,6 @@ export default {
|
|||||||
.dialog-footer {
|
.dialog-footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
gap: 12px;
|
|
||||||
|
|
||||||
.el-button {
|
.el-button {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
|
|||||||
@@ -46,9 +46,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.pagination-wrapper {
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
::v-deep .el-pagination {
|
::v-deep .el-pagination {
|
||||||
.btn-next,
|
.btn-next,
|
||||||
.btn-prev,
|
.btn-prev,
|
||||||
|
|||||||
@@ -0,0 +1,278 @@
|
|||||||
|
<template>
|
||||||
|
<div class="custom-table-wrapper">
|
||||||
|
<el-table
|
||||||
|
ref="tableRef"
|
||||||
|
:data="data"
|
||||||
|
:class="['custom-table', tableClass]"
|
||||||
|
height="100%"
|
||||||
|
v-loading="loading"
|
||||||
|
:element-loading-text="loadingText"
|
||||||
|
:element-loading-spinner="loadingSpinner"
|
||||||
|
:element-loading-background="loadingBackground"
|
||||||
|
:header-cell-class-name="headerCellClassName"
|
||||||
|
:row-class-name="rowClassName"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
@row-click="handleRowClick"
|
||||||
|
>
|
||||||
|
<!-- 选择列 -->
|
||||||
|
<el-table-column
|
||||||
|
v-if="showSelection"
|
||||||
|
width="55"
|
||||||
|
align="center"
|
||||||
|
label="选择"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<slot
|
||||||
|
v-if="$scopedSlots.selection"
|
||||||
|
name="selection"
|
||||||
|
:row="scope.row"
|
||||||
|
:$index="scope.$index"
|
||||||
|
/>
|
||||||
|
<el-checkbox
|
||||||
|
v-else
|
||||||
|
:value="scope.row.selected"
|
||||||
|
@change="handleCheckboxChange(scope.row)"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<!-- 动态列 -->
|
||||||
|
<el-table-column
|
||||||
|
v-for="column in columns"
|
||||||
|
:key="column.prop"
|
||||||
|
:prop="column.prop"
|
||||||
|
:label="column.label"
|
||||||
|
:width="column.width"
|
||||||
|
:min-width="column.minWidth"
|
||||||
|
:align="column.align || 'center'"
|
||||||
|
:show-overflow-tooltip="column.showOverflowTooltip !== false"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<!-- 自定义插槽:优先使用 column.slot 指定的插槽名,否则用 column.prop 作为插槽名 -->
|
||||||
|
<slot
|
||||||
|
v-if="$scopedSlots[column.slot] || $scopedSlots[column.prop]"
|
||||||
|
:name="column.slot || column.prop"
|
||||||
|
:row="scope.row"
|
||||||
|
:$index="scope.$index"
|
||||||
|
:column="column"
|
||||||
|
/>
|
||||||
|
<!-- 默认显示 -->
|
||||||
|
<template v-else>
|
||||||
|
{{ scope.row[column.prop] }}
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<!-- 操作列 -->
|
||||||
|
<el-table-column
|
||||||
|
v-if="showOperations"
|
||||||
|
:label="operationsLabel"
|
||||||
|
align="center"
|
||||||
|
:width="operationsWidth"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<slot name="operations" :row="scope.row" :$index="scope.$index" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="table-footer">
|
||||||
|
<slot name="footer-btns"></slot>
|
||||||
|
<CustomPagination
|
||||||
|
v-if="showPagination"
|
||||||
|
:total="total"
|
||||||
|
:current-page="currentPage"
|
||||||
|
:page-size="pageSize"
|
||||||
|
:page-size-options="pageSizeOptions"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
@page-change="handlePageChange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import CustomPagination from './CustomPagination.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'CustomTable',
|
||||||
|
components: {
|
||||||
|
CustomPagination
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
// 表格数据
|
||||||
|
data: {
|
||||||
|
type: Array,
|
||||||
|
default: () => []
|
||||||
|
},
|
||||||
|
// 列配置
|
||||||
|
columns: {
|
||||||
|
type: Array,
|
||||||
|
default: () => []
|
||||||
|
},
|
||||||
|
// 是否显示选择框
|
||||||
|
showSelection: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
// 是否显示操作列
|
||||||
|
showOperations: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
operationsLabel: {
|
||||||
|
type: String,
|
||||||
|
default: '操作'
|
||||||
|
},
|
||||||
|
operationsWidth: {
|
||||||
|
type: [String, Number],
|
||||||
|
default: 180
|
||||||
|
},
|
||||||
|
// 分页相关
|
||||||
|
showPagination: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true
|
||||||
|
},
|
||||||
|
total: {
|
||||||
|
type: Number,
|
||||||
|
default: 0
|
||||||
|
},
|
||||||
|
currentPage: {
|
||||||
|
type: Number,
|
||||||
|
default: 1
|
||||||
|
},
|
||||||
|
pageSize: {
|
||||||
|
type: Number,
|
||||||
|
default: 10
|
||||||
|
},
|
||||||
|
pageSizeOptions: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [10, 20, 50, 100]
|
||||||
|
},
|
||||||
|
// 加载状态
|
||||||
|
loading: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
loadingText: {
|
||||||
|
type: String,
|
||||||
|
default: 'Loading'
|
||||||
|
},
|
||||||
|
loadingSpinner: {
|
||||||
|
type: String,
|
||||||
|
default: 'el-icon-loading'
|
||||||
|
},
|
||||||
|
loadingBackground: {
|
||||||
|
type: String,
|
||||||
|
default: 'rgba(255, 255, 255, 0.7)'
|
||||||
|
},
|
||||||
|
// 自定义类名
|
||||||
|
tableClass: {
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
|
},
|
||||||
|
headerCellClassName: {
|
||||||
|
type: String,
|
||||||
|
default: ''
|
||||||
|
},
|
||||||
|
rowClassName: {
|
||||||
|
type: [String, Function],
|
||||||
|
default: ''
|
||||||
|
},
|
||||||
|
// 敏感值相关
|
||||||
|
hideText: {
|
||||||
|
type: String,
|
||||||
|
default: '隐藏'
|
||||||
|
},
|
||||||
|
viewText: {
|
||||||
|
type: String,
|
||||||
|
default: '查看'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 掩码处理
|
||||||
|
maskValue(value) {
|
||||||
|
if (!value) return '';
|
||||||
|
return '*'.repeat(Math.min(value.length, 8));
|
||||||
|
},
|
||||||
|
// 切换显示/隐藏
|
||||||
|
toggleValue(row, prop) {
|
||||||
|
this.$set(row, 'showValue', !row.showValue);
|
||||||
|
},
|
||||||
|
// 复选框变化
|
||||||
|
handleCheckboxChange(row) {
|
||||||
|
this.$set(row, 'selected', !row.selected);
|
||||||
|
},
|
||||||
|
// 分页事件
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.$emit('size-change', val);
|
||||||
|
},
|
||||||
|
handlePageChange(page) {
|
||||||
|
this.$emit('page-change', page);
|
||||||
|
},
|
||||||
|
// 选择事件
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.$emit('selection-change', selection);
|
||||||
|
},
|
||||||
|
// 行点击事件
|
||||||
|
handleRowClick(row, column, event) {
|
||||||
|
this.$emit('row-click', row, column, event);
|
||||||
|
},
|
||||||
|
// 获取表格实例
|
||||||
|
getTable() {
|
||||||
|
return this.$refs.tableRef;
|
||||||
|
},
|
||||||
|
// 清除选择
|
||||||
|
clearSelection() {
|
||||||
|
this.$refs.tableRef && this.$refs.tableRef.clearSelection();
|
||||||
|
},
|
||||||
|
// 切换选择
|
||||||
|
toggleRowSelection(row, selected) {
|
||||||
|
this.$refs.tableRef && this.$refs.tableRef.toggleRowSelection(row, selected);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.custom-table-wrapper {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
.custom-table {
|
||||||
|
width: 100%;
|
||||||
|
border: 1px solid #eef3fd;
|
||||||
|
border-bottom: none;
|
||||||
|
border-radius: 6px;
|
||||||
|
.el-table__body-wrapper {
|
||||||
|
overflow-y: auto;
|
||||||
|
&::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
}
|
||||||
|
&::-webkit-scrollbar-thumb {
|
||||||
|
background: #a1c9fd;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
&::-webkit-scrollbar-track {
|
||||||
|
background: #f0f3fe;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.el-table__header {
|
||||||
|
th {
|
||||||
|
color: #342f45;
|
||||||
|
background: #edf2fc !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.table-footer {
|
||||||
|
padding: 20px 0px 0px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,16 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog :title="title" :visible.sync="visible" width="520px" class="param-dialog-wrapper" :append-to-body="true"
|
<CustomDialog
|
||||||
:close-on-click-modal="false" :key="dialogKey" custom-class="custom-param-dialog" :show-close="false">
|
:title="title"
|
||||||
|
:visible.sync="visible"
|
||||||
|
width="600px"
|
||||||
|
class="param-dialog-wrapper"
|
||||||
|
@confirm="submit"
|
||||||
|
@close="cancel"
|
||||||
|
:confirmLoading="saving"
|
||||||
|
>
|
||||||
<div class="dialog-container">
|
<div class="dialog-container">
|
||||||
<div class="dialog-header">
|
|
||||||
<h2 class="dialog-title">{{ title }}</h2>
|
|
||||||
<button class="custom-close-btn" @click="cancel">
|
|
||||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M13 1L1 13M1 1L13 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<el-form :model="form" :rules="rules" ref="form" label-width="auto" label-position="left" class="param-form">
|
<el-form :model="form" :rules="rules" ref="form" label-width="auto" label-position="left" class="param-form">
|
||||||
<el-form-item :label="$t('paramDialog.paramCode')" prop="paramCode" class="form-item">
|
<el-form-item :label="$t('paramDialog.paramCode')" prop="paramCode" class="form-item">
|
||||||
<el-input v-model="form.paramCode" :placeholder="$t('paramDialog.paramCodePlaceholder')"
|
<el-input v-model="form.paramCode" :placeholder="$t('paramDialog.paramCodePlaceholder')"
|
||||||
@@ -54,20 +52,12 @@
|
|||||||
class="custom-textarea"></el-input>
|
class="custom-textarea"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<div class="dialog-footer">
|
|
||||||
<el-button type="primary" @click="submit" class="save-btn" :loading="saving" :disabled="saving">
|
|
||||||
{{ $t('paramDialog.save') }}
|
|
||||||
</el-button>
|
|
||||||
<el-button @click="cancel" class="cancel-btn">
|
|
||||||
{{ $t('paramDialog.cancel') }}
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</CustomDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import CustomDialog from './CustomDialog.vue';
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
title: {
|
title: {
|
||||||
@@ -89,6 +79,9 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
components: {
|
||||||
|
CustomDialog
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
dialogKey: Date.now(),
|
dialogKey: Date.now(),
|
||||||
@@ -210,61 +203,9 @@ export default {
|
|||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.param-dialog-wrapper {
|
.param-dialog-wrapper {
|
||||||
.dialog-container {
|
|
||||||
padding: 24px 32px;
|
|
||||||
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog-header {
|
|
||||||
position: relative;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog-title {
|
|
||||||
font-size: 20px;
|
|
||||||
color: #1e293b;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-weight: 600;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.custom-close-btn {
|
|
||||||
position: absolute;
|
|
||||||
top: -8px;
|
|
||||||
right: -8px;
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
border-radius: 50%;
|
|
||||||
border: none;
|
|
||||||
background: #f1f5f9;
|
|
||||||
color: #64748b;
|
|
||||||
cursor: pointer;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 0;
|
|
||||||
outline: none;
|
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: #ffffff;
|
|
||||||
background: #ef4444;
|
|
||||||
transform: rotate(90deg);
|
|
||||||
box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
svg {
|
|
||||||
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.param-form {
|
.param-form {
|
||||||
.form-item {
|
.form-item {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
|
||||||
:deep(.el-form-item__label) {
|
:deep(.el-form-item__label) {
|
||||||
color: #475569;
|
color: #475569;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@@ -355,65 +296,5 @@ export default {
|
|||||||
margin-top: -4px;
|
margin-top: -4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dialog-footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 16px 0 0;
|
|
||||||
margin-top: 16px;
|
|
||||||
|
|
||||||
.save-btn {
|
|
||||||
width: 120px;
|
|
||||||
height: 42px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
border-radius: 8px;
|
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
background: #3b82f6;
|
|
||||||
color: white;
|
|
||||||
border: none;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background: #2563eb;
|
|
||||||
transform: translateY(-1px);
|
|
||||||
box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
transform: translateY(0);
|
|
||||||
box-shadow: 0 2px 3px rgba(59, 130, 246, 0.2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.cancel-btn {
|
|
||||||
width: 120px;
|
|
||||||
height: 42px;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
border-radius: 8px;
|
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
background: #ffffff;
|
|
||||||
color: #64748b;
|
|
||||||
border: 1px solid #e2e8f0;
|
|
||||||
margin-left: 16px;
|
|
||||||
letter-spacing: 0.5px;
|
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background: #f8fafc;
|
|
||||||
color: #475569;
|
|
||||||
border-color: #cbd5e1;
|
|
||||||
transform: translateY(-1px);
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
transform: translateY(0);
|
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -72,6 +72,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<CustomPagination
|
<CustomPagination
|
||||||
|
class="pagination-wrapper"
|
||||||
:total="total"
|
:total="total"
|
||||||
:current-page="currentPage"
|
:current-page="currentPage"
|
||||||
:page-size="pageSize"
|
:page-size="pageSize"
|
||||||
@@ -605,6 +606,10 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pagination-wrapper {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 1144px) {
|
@media (max-width: 1144px) {
|
||||||
.doc-grid {
|
.doc-grid {
|
||||||
grid-template-columns: repeat(3, 1fr);
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
|||||||
@@ -1126,6 +1126,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.slice-pagination {
|
.slice-pagination {
|
||||||
|
margin-top: 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user