refactor(售后工单页面): 全面优化页面UI与功能体验
1. api层优化:新增驳回接口,优化提交接口过滤无用参数 2. 页面重构:统一页面布局为左右分栏拖拽面板,替换原有弹窗模式 3. 样式升级:采用类Word文档风格重构所有页面样式,新增中英双语标题 4. 功能新增:添加流程总览组件,新增PDF导出功能,新增驳回操作 5. 交互优化:调整卡片布局与间距,优化空状态提示,统一标签样式
This commit is contained in:
@@ -1,127 +1,141 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
|
||||
<el-form-item label="售后编号" prop="complaintNo">
|
||||
<el-input v-model="queryParams.complaintNo" placeholder="请输入售后编号" clearable @keyup.enter.native="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="执行状态" prop="executeStatus">
|
||||
<el-select v-model="queryParams.executeStatus" placeholder="请选择" clearable>
|
||||
<el-option label="待执行反馈" :value="0" />
|
||||
<el-option label="已反馈完成" :value="1" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div class="app-container objection-container">
|
||||
<DragResizePanel :initialSize="280" :minSize="280" :maxSize="600">
|
||||
<template #panelA>
|
||||
<div class="left-panel">
|
||||
<div class="panel-header">
|
||||
<div class="header-title">
|
||||
<i class="el-icon-s-promotion"></i>
|
||||
<span>待执行反馈</span>
|
||||
<el-button size="mini" type="text" icon="el-icon-refresh" @click="getList" style="margin-left:4px;"
|
||||
title="刷新列表"></el-button>
|
||||
</div>
|
||||
<el-select v-model="queryParams.executeStatus" placeholder="执行状态" clearable size="mini" @change="handleQuery"
|
||||
class="header-filter">
|
||||
<el-option label="待执行反馈" :value="0" />
|
||||
<el-option label="已反馈完成" :value="1" />
|
||||
</el-select>
|
||||
</div>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
<div class="search-row">
|
||||
<el-input v-model="queryParams.complaintNo" placeholder="搜索售后编号..." clearable prefix-icon="el-icon-search"
|
||||
size="small" @keyup.enter.native="handleQuery" @clear="handleQuery" />
|
||||
</div>
|
||||
|
||||
<el-table v-loading="loading" :data="dataList" border>
|
||||
<el-table-column label="售后编号" align="center" width="150">
|
||||
<template slot-scope="scope">
|
||||
{{ (scope.row.acceptInfo || {}).complaintNo || '' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="投诉日期" align="center" width="110">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime((scope.row.acceptInfo || {}).complaintDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="执行部门" align="center" prop="deptId" width="100">
|
||||
<template slot-scope="scope">
|
||||
{{ getDeptName(scope.row.deptId) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="执行状态" align="center" prop="executeStatus" width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-tag v-if="scope.row.executeStatus === 0" type="warning">待执行</el-tag>
|
||||
<el-tag v-else-if="scope.row.executeStatus === 1" type="success">已反馈</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="执行结果" align="center" min-width="200" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<div v-html="scope.row.executeResult"></div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="反馈时间" align="center" prop="feedbackTime" width="160">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.feedbackTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" width="120" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button v-if="scope.row.executeStatus === 0" size="mini" type="text" icon="el-icon-edit" @click="handleExecute(scope.row, true)">执行反馈</el-button>
|
||||
<el-button v-else size="mini" type="text" icon="el-icon-view" @click="handleExecute(scope.row, false)">查看</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div v-loading="loading" class="list-body">
|
||||
<div v-for="item in dataList" :key="item.relId" class="list-item"
|
||||
:class="{ active: currentRel && currentRel.relId === item.relId }" @click="handleRowClick(item)">
|
||||
<div class="item-main">
|
||||
<span class="item-title">{{ (item.acceptInfo || {}).complaintNo || '' }}</span>
|
||||
<span class="item-sub">{{ getDeptName(item.deptId) }} · {{ parseTime((item.acceptInfo || {}).complaintDate, '{y}-{m}-{d}') }}</span>
|
||||
</div>
|
||||
<div class="item-meta">
|
||||
<el-tag v-if="item.rejectMark === 1" type="danger" size="mini">已驳回</el-tag>
|
||||
<el-tag v-else-if="item.rejectMark === 2" type="info" size="mini">已隐藏</el-tag>
|
||||
<el-tag v-else-if="item.executeStatus === 0" type="warning" size="mini">待执行</el-tag>
|
||||
<el-tag v-else-if="item.executeStatus === 1" type="success" size="mini">已反馈</el-tag>
|
||||
</div>
|
||||
<div class="item-actions">
|
||||
<el-button v-if="item.executeStatus === 0" size="mini" type="text" icon="el-icon-edit" @click.stop="handleRowClick(item)"></el-button>
|
||||
<el-button v-else size="mini" type="text" icon="el-icon-view" @click.stop="handleRowClick(item)"></el-button>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="dataList.length === 0 && !loading" class="list-empty">
|
||||
<i class="el-icon-folder-opened"></i>
|
||||
<span>暂无待执行反馈</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
|
||||
|
||||
<el-dialog :title="(isEditable ? '执行反馈 - ' : '查看反馈 - ') + getDeptLabel()" :visible.sync="execOpen" width="900px" append-to-body :close-on-click-modal="false">
|
||||
<div v-loading="detailLoading" class="exec-dialog">
|
||||
<HeaderControlSection
|
||||
:complaintNo="acceptDetail.complaintNo"
|
||||
:flowStatus="acceptDetail.flowStatus"
|
||||
:meta="acceptDetail"
|
||||
>
|
||||
<template #basic-info>
|
||||
<BasicInfoSection :data="acceptDetail" />
|
||||
</template>
|
||||
</HeaderControlSection>
|
||||
|
||||
<el-divider />
|
||||
|
||||
<CoilInfoSection :coilList="dialogCoilList" :loading="coilLoading" :editable="false" />
|
||||
|
||||
<ContractInfoSection :coilList="dialogCoilList" />
|
||||
|
||||
<div v-if="acceptDetail.planContent">
|
||||
<div class="section-title">处理方案</div>
|
||||
<div class="plan-content" v-html="acceptDetail.planContent"></div>
|
||||
<div class="list-footer">
|
||||
<pagination :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
|
||||
@pagination="getList" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<div v-if="isEditable">
|
||||
<div class="section-title">填写执行反馈</div>
|
||||
<el-form ref="execForm" :model="execForm" label-width="100px">
|
||||
<el-form-item label="执行结果" prop="executeResult">
|
||||
<editor v-model="execForm.executeResult" :min-height="200" />
|
||||
</el-form-item>
|
||||
<el-form-item label="反馈文件">
|
||||
<file-upload v-model="execForm.feedbackFile" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #panelB>
|
||||
<div class="right-panel">
|
||||
<div v-if="!currentRel.relId" class="empty-tip">
|
||||
<i class="el-icon-info"></i>
|
||||
<span>请在左侧列表中选择一条任务查看详情</span>
|
||||
</div>
|
||||
<div v-else v-loading="detailLoading" class="detail-content">
|
||||
<HeaderControlSection
|
||||
:complaintNo="acceptDetail.complaintNo"
|
||||
:flowStatus="acceptDetail.flowStatus"
|
||||
:meta="acceptDetail"
|
||||
>
|
||||
<template #actions>
|
||||
<el-button size="mini" type="text" icon="el-icon-refresh" @click="refreshDetail" title="刷新">刷新</el-button>
|
||||
</template>
|
||||
|
||||
<template #basic-info>
|
||||
<BasicInfoSection :data="acceptDetail" />
|
||||
</template>
|
||||
</HeaderControlSection>
|
||||
|
||||
<el-divider />
|
||||
|
||||
<FlowOverviewSection :flowStatus="acceptDetail.flowStatus" />
|
||||
|
||||
<CoilInfoSection :coilList="dialogCoilList" :loading="coilLoading" :editable="false" />
|
||||
|
||||
<ContractInfoSection :coilList="dialogCoilList" />
|
||||
|
||||
<div v-if="acceptDetail.planContent" class="section-gap" />
|
||||
<div v-if="acceptDetail.planContent">
|
||||
<div class="section-title">
|
||||
<span>处理方案 <span class="en-sub">· Handling Scheme</span></span>
|
||||
</div>
|
||||
<div class="plan-content" v-html="acceptDetail.planContent"></div>
|
||||
</div>
|
||||
|
||||
<div v-if="isEditable" class="section-gap" />
|
||||
<div v-if="isEditable" class="exec-form-wrapper">
|
||||
<div class="section-title">
|
||||
<span>填写执行反馈 <span class="en-sub">· Execution Feedback</span></span>
|
||||
</div>
|
||||
<el-form ref="execForm" :model="execForm" label-width="100px">
|
||||
<el-form-item label="执行结果" prop="executeResult">
|
||||
<editor v-model="execForm.executeResult" :min-height="200" />
|
||||
</el-form-item>
|
||||
<el-form-item label="反馈文件">
|
||||
<file-upload v-model="execForm.feedbackFile" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div class="form-actions">
|
||||
<el-button :loading="rejectLoading" type="danger" @click="handleReject">驳 回</el-button>
|
||||
<el-button :loading="submitLoading" type="primary" @click="submitExecute">提 交</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="closeDialog">{{ isEditable ? '取 消' : '关 闭' }}</el-button>
|
||||
<el-button v-if="isEditable" :loading="submitLoading" type="primary" @click="submitExecute">提 交</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
</DragResizePanel>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listPlanExecuteRel, getPlanExecuteRel, updatePlanExecuteRel } from "@/api/flow/planExecuteRel";
|
||||
import { listAcceptCoilRel } from "@/api/flow/acceptCoilRel";
|
||||
import { feedbackReject } from "@/api/flow/complaintAccept";
|
||||
import DragResizePanel from "@/components/DragResizePanel/index.vue";
|
||||
import HeaderControlSection from "./components/HeaderControlSection.vue";
|
||||
import BasicInfoSection from "./components/BasicInfoSection.vue";
|
||||
import CoilInfoSection from "./components/CoilInfoSection.vue";
|
||||
import ContractInfoSection from "./components/ContractInfoSection.vue";
|
||||
import FlowOverviewSection from "./components/FlowOverviewSection.vue";
|
||||
|
||||
export default {
|
||||
name: "AftermarketTodo",
|
||||
components: { HeaderControlSection, BasicInfoSection, CoilInfoSection, ContractInfoSection },
|
||||
components: { DragResizePanel, HeaderControlSection, BasicInfoSection, CoilInfoSection, ContractInfoSection, FlowOverviewSection },
|
||||
data() {
|
||||
return {
|
||||
loading: false,
|
||||
detailLoading: false,
|
||||
coilLoading: false,
|
||||
submitLoading: false,
|
||||
showSearch: true,
|
||||
rejectLoading: false,
|
||||
total: 0,
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
@@ -131,11 +145,9 @@ export default {
|
||||
executeStatus: undefined
|
||||
},
|
||||
dataList: [],
|
||||
execOpen: false,
|
||||
isEditable: false,
|
||||
acceptDetail: {},
|
||||
dialogCoilList: [],
|
||||
coilLoading: false,
|
||||
execForm: { executeResult: '', feedbackFile: '' },
|
||||
currentRel: {}
|
||||
};
|
||||
@@ -147,7 +159,7 @@ export default {
|
||||
methods: {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
const params = { ...this.queryParams };
|
||||
const params = { ...this.queryParams, rejectMark: 0 };
|
||||
if (params.executeStatus === '' || params.executeStatus === undefined) {
|
||||
delete params.executeStatus;
|
||||
}
|
||||
@@ -164,8 +176,8 @@ export default {
|
||||
return no.indexOf(complaintNoFilter) !== -1;
|
||||
});
|
||||
}
|
||||
this.dataList = rows;
|
||||
this.total = response.total;
|
||||
this.dataList = rows;
|
||||
}).finally(() => { this.loading = false; });
|
||||
},
|
||||
getDeptName(deptId) {
|
||||
@@ -184,9 +196,9 @@ export default {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
handleExecute(row, editable) {
|
||||
handleRowClick(row) {
|
||||
this.currentRel = row;
|
||||
this.isEditable = editable;
|
||||
this.isEditable = row.executeStatus === 0;
|
||||
this.acceptDetail = row.acceptInfo || {};
|
||||
this.execForm = { executeResult: '', feedbackFile: '' };
|
||||
this.dialogCoilList = [];
|
||||
@@ -197,7 +209,7 @@ export default {
|
||||
this.dialogCoilList = r.rows || [];
|
||||
}).finally(() => { this.coilLoading = false; });
|
||||
|
||||
if (!editable) {
|
||||
if (!this.isEditable) {
|
||||
getPlanExecuteRel(row.relId).then(response => {
|
||||
const rel = response.data || {};
|
||||
this.execForm = {
|
||||
@@ -208,11 +220,29 @@ export default {
|
||||
} else {
|
||||
this.detailLoading = false;
|
||||
}
|
||||
this.execOpen = true;
|
||||
},
|
||||
closeDialog() {
|
||||
this.execOpen = false;
|
||||
this.isEditable = false;
|
||||
refreshDetail() {
|
||||
if (!this.currentRel.acceptId) return;
|
||||
this.detailLoading = true;
|
||||
this.coilLoading = true;
|
||||
listAcceptCoilRel({ acceptId: this.currentRel.acceptId, pageNum: 1, pageSize: 999 }).then(r => {
|
||||
this.dialogCoilList = r.rows || [];
|
||||
}).finally(() => { this.coilLoading = false; this.detailLoading = false; });
|
||||
},
|
||||
handleReject() {
|
||||
this.$prompt('请输入驳回原因', '反馈驳回', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
inputType: 'textarea',
|
||||
inputValidator: (val) => val ? true : '驳回原因不能为空'
|
||||
}).then(({ value }) => {
|
||||
this.rejectLoading = true;
|
||||
return feedbackReject(this.currentRel.relId, value);
|
||||
}).then(() => {
|
||||
this.$modal.msgSuccess("驳回成功");
|
||||
this.getList();
|
||||
this.currentRel = {};
|
||||
}).catch(() => { }).finally(() => { this.rejectLoading = false; });
|
||||
},
|
||||
submitExecute() {
|
||||
if (!this.execForm.executeResult) {
|
||||
@@ -230,9 +260,8 @@ export default {
|
||||
feedbackTime: this.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
|
||||
}).then(() => {
|
||||
this.$modal.msgSuccess("执行反馈提交成功");
|
||||
this.execOpen = false;
|
||||
this.isEditable = false;
|
||||
this.getList();
|
||||
this.currentRel = {};
|
||||
}).finally(() => { this.submitLoading = false; });
|
||||
}
|
||||
}
|
||||
@@ -240,36 +269,226 @@ export default {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.exec-dialog {
|
||||
max-height: 65vh;
|
||||
overflow-y: auto;
|
||||
.objection-container {
|
||||
height: calc(100vh - 84px);
|
||||
}
|
||||
.exec-dialog /deep/ .section-title {
|
||||
margin-top: 16px;
|
||||
|
||||
/* ========== 左侧面板(复用 index.vue 风格) ========== */
|
||||
.left-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
background: #f5f7fa;
|
||||
border-right: 1px solid #e4e7ed;
|
||||
}
|
||||
.section-title {
|
||||
font-size: 15px;
|
||||
|
||||
.panel-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 12px 14px 8px;
|
||||
background: #f5f7fa;
|
||||
}
|
||||
|
||||
.header-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: #1d2129;
|
||||
margin: 16px 0 12px 0;
|
||||
padding: 0 0 10px 0;
|
||||
border-bottom: 2px solid transparent;
|
||||
border-image: linear-gradient(to right, #c0c4cc, transparent) 1;
|
||||
white-space: nowrap;
|
||||
color: #303133;
|
||||
}
|
||||
|
||||
.header-title i {
|
||||
color: #409eff;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.header-filter {
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.search-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 0 14px 10px;
|
||||
background: #f5f7fa;
|
||||
}
|
||||
|
||||
.list-body {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
.list-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 10px 12px;
|
||||
margin-bottom: 2px;
|
||||
cursor: pointer;
|
||||
border-radius: 6px;
|
||||
transition: all 0.15s;
|
||||
}
|
||||
|
||||
.list-item:hover {
|
||||
background: #ebeef5;
|
||||
}
|
||||
|
||||
.list-item.active {
|
||||
background: #d9ecff;
|
||||
}
|
||||
|
||||
.list-item.active .item-title {
|
||||
color: #409eff;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.item-main {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: #303133;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.item-sub {
|
||||
font-size: 12px;
|
||||
color: #909399;
|
||||
}
|
||||
|
||||
.item-meta {
|
||||
flex-shrink: 0;
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
.item-actions {
|
||||
flex-shrink: 0;
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s;
|
||||
}
|
||||
|
||||
.list-item:hover .item-actions {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.list-empty {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 60px 0;
|
||||
color: #c0c4cc;
|
||||
font-size: 13px;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.list-empty i {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.list-footer {
|
||||
border-top: 1px solid #e4e7ed;
|
||||
padding: 2px 8px 0;
|
||||
background: #f5f7fa;
|
||||
}
|
||||
|
||||
/* ========== 右侧面板(复用 index.vue 风格) ========== */
|
||||
.right-panel {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
padding: 12px 16px;
|
||||
background: #faf8f5;
|
||||
}
|
||||
|
||||
.right-panel .detail-content {
|
||||
margin: 0 auto;
|
||||
background: #ffffff;
|
||||
padding: 28px 32px 36px;
|
||||
box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.empty-tip {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
color: #909399;
|
||||
font-size: 14px;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
/* section-title 与 index.vue 统一 */
|
||||
.section-title {
|
||||
font-family: 'Georgia', 'Times New Roman', 'Noto Serif SC', 'SimSun', serif;
|
||||
width: 100%;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
color: #1a1a1a;
|
||||
margin: 22px 0 12px 0;
|
||||
padding: 0 0 10px 0;
|
||||
border-bottom: 1px solid #d4d0c8;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
.section-title:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.plan-content {
|
||||
padding: 12px;
|
||||
background: #f5f7fa;
|
||||
border-radius: 4px;
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
|
||||
.section-title .en-sub {
|
||||
font-size: 11px;
|
||||
font-weight: 400;
|
||||
color: #8c8c8c;
|
||||
letter-spacing: 0.5px;
|
||||
font-family: 'Georgia', 'Times New Roman', serif;
|
||||
font-style: italic;
|
||||
}
|
||||
.empty-data {
|
||||
color: #909399;
|
||||
|
||||
.section-gap {
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
/* ========== 执行反馈填写区 ========== */
|
||||
.exec-form-wrapper {
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
padding: 16px 0 0;
|
||||
border-top: 1px solid #e0dcd6;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.plan-content {
|
||||
padding: 12px 16px;
|
||||
background: #faf8f5;
|
||||
border: 1px solid #e8e4de;
|
||||
border-radius: 2px;
|
||||
font-size: 13px;
|
||||
padding: 8px 0;
|
||||
line-height: 1.8;
|
||||
color: #1a1a1a;
|
||||
}
|
||||
|
||||
/* el-divider 样式与 index.vue 统一 */
|
||||
.right-panel .el-divider--horizontal {
|
||||
margin: 8px 0 4px;
|
||||
background-color: #e0dcd6;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user