|
@@ -43,16 +43,12 @@
|
|
|
<el-input v-model="form.acceptTime" readonly />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
</el-row>
|
|
|
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="客户">
|
|
|
- <el-input
|
|
|
- v-model="form.customerName"
|
|
|
- readonly
|
|
|
- />
|
|
|
+ <el-input v-model="form.customerName" readonly />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
@@ -67,8 +63,6 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
|
-
|
|
|
-
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="安装总数量">
|
|
@@ -88,7 +82,6 @@
|
|
|
</el-row>
|
|
|
|
|
|
<el-row :gutter="10">
|
|
|
-
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="预计完成时间">
|
|
|
<el-input v-model="form.estimatedCompleteTime" readonly />
|
|
@@ -106,11 +99,14 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="10">
|
|
|
-
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="安装进度">
|
|
|
<div class="">
|
|
|
- <el-progress :percentage="Number(form.progress)" :stroke-width="15" style="line-height: unset;"/>
|
|
|
+ <el-progress
|
|
|
+ :percentage="Number(form.progress)"
|
|
|
+ :stroke-width="15"
|
|
|
+ style="line-height: unset"
|
|
|
+ />
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -129,20 +125,50 @@
|
|
|
<div class="detail-section">
|
|
|
<div class="table-header">
|
|
|
<div class="section-title">货品明细</div>
|
|
|
- <el-button type="text" class="fold-button" @click="isTableVisible = !isTableVisible">
|
|
|
- <span>{{ isTableVisible ? '收起' : '展开' }}</span>
|
|
|
- <i :class="isTableVisible ? 'el-icon-arrow-up' : 'el-icon-arrow-down'" />
|
|
|
+ <el-button
|
|
|
+ type="text"
|
|
|
+ class="fold-button"
|
|
|
+ @click="isTableVisible = !isTableVisible"
|
|
|
+ >
|
|
|
+ <span>{{ isTableVisible ? "收起" : "展开" }}</span>
|
|
|
+ <i
|
|
|
+ :class="
|
|
|
+ isTableVisible ? 'el-icon-arrow-up' : 'el-icon-arrow-down'
|
|
|
+ "
|
|
|
+ />
|
|
|
</el-button>
|
|
|
</div>
|
|
|
<div v-show="isTableVisible">
|
|
|
- <el-table :data="form.products" border style="width: 100%;">
|
|
|
- <el-table-column type="index" label="序号" width="50" align="center" />
|
|
|
- <el-table-column prop="goodsCode" label="货品编号" align="center" />
|
|
|
- <el-table-column prop="goodsName" label="货品名称" align="center" />
|
|
|
- <el-table-column prop="goodsSpecification" label="货品规格" align="center" width="50"/>
|
|
|
- <el-table-column prop="goodsImagePath" label="货品图片" align="center">
|
|
|
+ <el-table :data="form.products" border style="width: 100%">
|
|
|
+ <el-table-column
|
|
|
+ type="index"
|
|
|
+ label="序号"
|
|
|
+ width="50"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsCode"
|
|
|
+ label="货品编号"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsName"
|
|
|
+ label="货品名称"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsSpecification"
|
|
|
+ label="货品规格"
|
|
|
+ align="center"
|
|
|
+ width="50"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsImagePath"
|
|
|
+ label="货品图片"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
- <el-image
|
|
|
+ <el-image
|
|
|
v-if="scope.row.goodsImagePath"
|
|
|
:src="baseApi + scope.row.goodsImagePath"
|
|
|
style="width: 50px; height: 50px"
|
|
@@ -153,17 +179,62 @@
|
|
|
<i class="el-icon-picture-outline"></i>
|
|
|
</div>
|
|
|
</el-image>
|
|
|
- <div v-else class="image-slot" style="width: 50px; height: 50px; display: inline-flex; justify-content: center; align-items: center; background: #f5f7fa; border-radius: 4px;">
|
|
|
- <i class="el-icon-picture-outline" style="font-size: 20px; color: #909399;"></i>
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ class="image-slot"
|
|
|
+ style="
|
|
|
+ width: 50px;
|
|
|
+ height: 50px;
|
|
|
+ display: inline-flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ background: #f5f7fa;
|
|
|
+ border-radius: 4px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <i
|
|
|
+ class="el-icon-picture-outline"
|
|
|
+ style="font-size: 20px; color: #909399"
|
|
|
+ ></i>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="goodsUnit" label="计量单位" align="center" width="50"/>
|
|
|
- <el-table-column prop="stock" label="现有库存" align="center" width="60"/>
|
|
|
- <el-table-column prop="orderQuantity" label="订单数量" align="center" width="70"/>
|
|
|
- <el-table-column prop="shippedQuantity" label="已发货数量" align="center" width="70"/>
|
|
|
- <el-table-column prop="unshippedQuantity" label="未发货数量" align="center" width="70"/>
|
|
|
- <el-table-column prop="remark" label="备注" align="center" width="100"/>
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsUnit"
|
|
|
+ label="计量单位"
|
|
|
+ align="center"
|
|
|
+ width="50"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="stock"
|
|
|
+ label="现有库存"
|
|
|
+ align="center"
|
|
|
+ width="60"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="orderQuantity"
|
|
|
+ label="订单数量"
|
|
|
+ align="center"
|
|
|
+ width="70"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="shippedQuantity"
|
|
|
+ label="已发货数量"
|
|
|
+ align="center"
|
|
|
+ width="70"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="unshippedQuantity"
|
|
|
+ label="未发货数量"
|
|
|
+ align="center"
|
|
|
+ width="70"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="remark"
|
|
|
+ label="备注"
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ />
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -174,10 +245,10 @@
|
|
|
<div class="detail-section">
|
|
|
<div class="section-title">服务验收</div>
|
|
|
<div class="acceptance-image">
|
|
|
- <el-image
|
|
|
+ <el-image
|
|
|
v-if="form.acceptanceImagePath"
|
|
|
:src="baseApi + form.acceptanceImagePath"
|
|
|
- style="width: 120px; height: 120px;"
|
|
|
+ style="width: 120px; height: 120px"
|
|
|
:preview-src-list="[baseApi + form.acceptanceImagePath]"
|
|
|
fit="cover"
|
|
|
>
|
|
@@ -186,8 +257,8 @@
|
|
|
</div>
|
|
|
</el-image>
|
|
|
<div v-else class="empty-image">
|
|
|
- <i class="el-icon-picture-outline" style="font-size: 24px;"></i>
|
|
|
- <span style="margin-top: 8px;">暂无验收图片</span>
|
|
|
+ <i class="el-icon-picture-outline" style="font-size: 24px"></i>
|
|
|
+ <span style="margin-top: 8px">暂无验收图片</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -198,7 +269,11 @@
|
|
|
<div class="detail-section">
|
|
|
<div class="section-title">流程进度</div>
|
|
|
<div class="process-steps">
|
|
|
- <el-steps :active="form.currentStep" align-center finish-status="success">
|
|
|
+ <el-steps
|
|
|
+ :active="form.currentStep"
|
|
|
+ align-center
|
|
|
+ finish-status="success"
|
|
|
+ >
|
|
|
<el-step title="服务下单">
|
|
|
<template slot="description">
|
|
|
<div class="step-description">
|
|
@@ -207,24 +282,27 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<template slot="icon">
|
|
|
- <i :class="form.currentStep >= 1 ? 'el-icon-check' : ''" :style="{color: form.currentStep >= 1 ? '#67C23A' : ''}"></i>
|
|
|
+ <i
|
|
|
+ :class="form.currentStep >= 1 ? 'el-icon-check' : ''"
|
|
|
+ :style="{ color: form.currentStep >= 1 ? '#67C23A' : '' }"
|
|
|
+ ></i>
|
|
|
</template>
|
|
|
</el-step>
|
|
|
<el-step title="服务接单">
|
|
|
<template slot="description">
|
|
|
<div class="step-description">
|
|
|
- <div>{{ form.isRejected ? '已驳回' : '徐XX' }}</div>
|
|
|
+ <div>{{ form.isRejected ? "已驳回" : "徐XX" }}</div>
|
|
|
<div>{{ form.acceptTime }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template slot="icon" v-if="form.isRejected">
|
|
|
- <i class="el-icon-close" style="color: #F56C6C;"></i>
|
|
|
+ <i class="el-icon-close" style="color: #f56c6c"></i>
|
|
|
</template>
|
|
|
</el-step>
|
|
|
<el-step title="开始服务">
|
|
|
<template slot="description">
|
|
|
<div class="step-description">
|
|
|
- <div>{{ form.startTime ? '徐XX' : '' }}</div>
|
|
|
+ <div>{{ form.startTime ? "徐XX" : "" }}</div>
|
|
|
<div>{{ form.startTime }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -232,7 +310,7 @@
|
|
|
<el-step title="完成服务">
|
|
|
<template slot="description">
|
|
|
<div class="step-description">
|
|
|
- <div>{{ form.actualCompleteTime ? '徐XX' : '' }}</div>
|
|
|
+ <div>{{ form.actualCompleteTime ? "徐XX" : "" }}</div>
|
|
|
<div>{{ form.actualCompleteTime }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -240,7 +318,7 @@
|
|
|
<el-step title="验收">
|
|
|
<template slot="description">
|
|
|
<div class="step-description">
|
|
|
- <div>{{ form.acceptanceTime ? '孙xx' : '' }}</div>
|
|
|
+ <div>{{ form.acceptanceTime ? "孙xx" : "" }}</div>
|
|
|
<div>{{ form.acceptanceTime }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -257,57 +335,74 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { GetDataByNames } from '@/api/common'
|
|
|
+import { GetDataByNames } from "@/api/common";
|
|
|
|
|
|
export default {
|
|
|
- name: 'ViewDialog',
|
|
|
+ name: "ViewDialog",
|
|
|
props: {
|
|
|
visible: {
|
|
|
type: Boolean,
|
|
|
- default: false
|
|
|
+ default: false,
|
|
|
},
|
|
|
installerOptions: {
|
|
|
type: Array,
|
|
|
- default: () => []
|
|
|
+ default: () => [],
|
|
|
},
|
|
|
projectOptions: {
|
|
|
type: Array,
|
|
|
- default: () => []
|
|
|
+ default: () => [],
|
|
|
},
|
|
|
rowData: {
|
|
|
type: Object,
|
|
|
- default: () => ({})
|
|
|
- }
|
|
|
+ default: () => ({}),
|
|
|
+ },
|
|
|
},
|
|
|
computed: {
|
|
|
baseApi() {
|
|
|
- return process.env.VUE_APP_BASE_API
|
|
|
+ return process.env.VUE_APP_BASE_API;
|
|
|
},
|
|
|
ordererName() {
|
|
|
- return this.installerOptions.find(item => item.value === parseInt(this.form.orderer))?.label || ''
|
|
|
+ return (
|
|
|
+ this.installerOptions.find(
|
|
|
+ (item) => item.value === parseInt(this.form.orderer)
|
|
|
+ )?.label || ""
|
|
|
+ );
|
|
|
},
|
|
|
projectName() {
|
|
|
- return this.projectOptions.find(item => item.value === parseInt(this.form.serviceProject))?.label || ''
|
|
|
+ return (
|
|
|
+ this.projectOptions.find(
|
|
|
+ (item) => item.value === parseInt(this.form.serviceProject)
|
|
|
+ )?.label || ""
|
|
|
+ );
|
|
|
},
|
|
|
serviceStaffName() {
|
|
|
- return this.installerOptions.find(item => item.value === parseInt(this.form.serviceStaffIds))?.label || ''
|
|
|
+ return (
|
|
|
+ this.installerOptions.find(
|
|
|
+ (item) => item.value === parseInt(this.form.serviceStaffIds)
|
|
|
+ )?.label || ""
|
|
|
+ );
|
|
|
},
|
|
|
remainingTimeText() {
|
|
|
- if (this.form.remainingTime === null || this.form.remainingTime === undefined) return ''
|
|
|
+ if (
|
|
|
+ this.form.remainingTime === null ||
|
|
|
+ this.form.remainingTime === undefined
|
|
|
+ )
|
|
|
+ return "";
|
|
|
if (this.form.remainingTime < 0) {
|
|
|
- return `已逾期 ${Math.abs(this.form.remainingTime)} 天` }
|
|
|
- return `${this.form.remainingTime} 天`
|
|
|
- }
|
|
|
+ return `已逾期 ${Math.abs(this.form.remainingTime)} 天`;
|
|
|
+ }
|
|
|
+ return `${this.form.remainingTime} 天`;
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
visible(val) {
|
|
|
if (val) {
|
|
|
// 弹窗打开时初始化数据
|
|
|
this.$nextTick(() => {
|
|
|
- this.getOrderData()
|
|
|
- })
|
|
|
+ this.getOrderData();
|
|
|
+ });
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -315,127 +410,128 @@ export default {
|
|
|
isAcceptanceVisible: true,
|
|
|
isProcessVisible: true,
|
|
|
form: {
|
|
|
- orderNo: '',
|
|
|
- orderTime: '',
|
|
|
- orderer: '',
|
|
|
- serviceProject: '',
|
|
|
- serviceStaffIds: '',
|
|
|
- estimatedCompleteTime: '',
|
|
|
- deliveryNo: '',
|
|
|
- contractNo: '',
|
|
|
- customerName: '',
|
|
|
- remark: '',
|
|
|
+ orderNo: "",
|
|
|
+ orderTime: "",
|
|
|
+ orderer: "",
|
|
|
+ serviceProject: "",
|
|
|
+ serviceStaffIds: "",
|
|
|
+ estimatedCompleteTime: "",
|
|
|
+ deliveryNo: "",
|
|
|
+ contractNo: "",
|
|
|
+ customerName: "",
|
|
|
+ remark: "",
|
|
|
products: [],
|
|
|
totalQuantity: 0,
|
|
|
installedQuantity: 0,
|
|
|
uninstalledQuantity: 0,
|
|
|
progress: 0,
|
|
|
- acceptTime: '',
|
|
|
- actualCompleteTime: '',
|
|
|
+ acceptTime: "",
|
|
|
+ actualCompleteTime: "",
|
|
|
remainingTime: null,
|
|
|
- acceptanceImagePath: '',
|
|
|
+ acceptanceImagePath: "",
|
|
|
currentStep: 2,
|
|
|
isRejected: true,
|
|
|
- rejectReason: 'xxxxxxx',
|
|
|
- startTime: '',
|
|
|
- acceptanceTime: ''
|
|
|
- }
|
|
|
- }
|
|
|
+ rejectReason: "xxxxxxx",
|
|
|
+ startTime: "",
|
|
|
+ acceptanceTime: "",
|
|
|
+ },
|
|
|
+ };
|
|
|
},
|
|
|
methods: {
|
|
|
// 获取订单数据
|
|
|
async getOrderData() {
|
|
|
try {
|
|
|
- this.isTableVisible = true // 重置表格为展开状态
|
|
|
+ this.isTableVisible = true; // 重置表格为展开状态
|
|
|
const params = [
|
|
|
{
|
|
|
name: "getInstallationOrderById",
|
|
|
returntype: "Map",
|
|
|
parammaps: {
|
|
|
- id: this.rowData.id
|
|
|
- }
|
|
|
+ id: this.rowData.id,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
name: "getInstallationOrderDetail",
|
|
|
returntype: "Map",
|
|
|
parammaps: {
|
|
|
- orderId: this.rowData.id
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
+ orderId: this.rowData.id,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
|
|
|
- const response = await GetDataByNames(params)
|
|
|
- if (response.msg === 'ok') {
|
|
|
+ const response = await GetDataByNames(params);
|
|
|
+ if (response.msg === "ok") {
|
|
|
// 获取主表数据
|
|
|
- const mainData = response.data.getInstallationOrderById.list[0] || {}
|
|
|
+ const mainData = response.data.getInstallationOrderById.list[0] || {};
|
|
|
// 获取明细表数据
|
|
|
- const detailData = response.data.getInstallationOrderDetail.list || []
|
|
|
+ const detailData =
|
|
|
+ response.data.getInstallationOrderDetail.list || [];
|
|
|
|
|
|
// 初始化表单数据
|
|
|
this.form = {
|
|
|
- orderNo: mainData.orderNo || '',
|
|
|
- orderTime: mainData.orderTime || '',
|
|
|
+ orderNo: mainData.orderNo || "",
|
|
|
+ orderTime: mainData.orderTime || "",
|
|
|
orderer: mainData.dispatcherId,
|
|
|
serviceProject: mainData.projectId,
|
|
|
serviceStaffIds: mainData.serviceStaffIds,
|
|
|
- estimatedCompleteTime: mainData.estimatedCompleteTime || '',
|
|
|
- deliveryNo: mainData.deliveryNo || '',
|
|
|
- contractNo: mainData.contractNo || '',
|
|
|
- customerName: mainData.customerName || '',
|
|
|
- remark: mainData.remark || '',
|
|
|
+ estimatedCompleteTime: mainData.estimatedCompleteTime || "",
|
|
|
+ deliveryNo: mainData.deliveryNo || "",
|
|
|
+ contractNo: mainData.contractNo || "",
|
|
|
+ customerName: mainData.customerName || "",
|
|
|
+ remark: mainData.remark || "",
|
|
|
totalQuantity: mainData.totalQuantity || 0,
|
|
|
installedQuantity: mainData.installedQuantity || 0,
|
|
|
uninstalledQuantity: mainData.uninstalledQuantity || 0,
|
|
|
progress: mainData.progress || 0,
|
|
|
- acceptTime: mainData.acceptTime || '',
|
|
|
- actualCompleteTime: mainData.actualCompleteTime || '',
|
|
|
+ acceptTime: mainData.acceptTime || "",
|
|
|
+ actualCompleteTime: mainData.actualCompleteTime || "",
|
|
|
remainingTime: mainData.remainingTime,
|
|
|
- products: detailData.map(item => ({
|
|
|
+ products: detailData.map((item) => ({
|
|
|
goodsId: item.goodsId,
|
|
|
- goodsCode: item.goodsCode || '',
|
|
|
- goodsName: item.goodsName || '',
|
|
|
- goodsSpecification: item.goodsSpecification || '',
|
|
|
- goodsImagePath: item.goodsImagePath || '',
|
|
|
- goodsUnit: item.goodsUnit || '',
|
|
|
+ goodsCode: item.goodsCode || "",
|
|
|
+ goodsName: item.goodsName || "",
|
|
|
+ goodsSpecification: item.goodsSpecification || "",
|
|
|
+ goodsImagePath: item.goodsImagePath || "",
|
|
|
+ goodsUnit: item.goodsUnit || "",
|
|
|
stock: item.stock || 0,
|
|
|
orderQuantity: item.orderQuantity || 0,
|
|
|
shippedQuantity: item.shippedQuantity || 0,
|
|
|
unshippedQuantity: item.unshippedQuantity || 0,
|
|
|
- remark: item.remark || ''
|
|
|
+ remark: item.remark || "",
|
|
|
})),
|
|
|
- acceptanceImagePath: mainData.acceptanceImagePath || '',
|
|
|
+ acceptanceImagePath: mainData.acceptanceImagePath || "",
|
|
|
currentStep: mainData.currentStep || 2,
|
|
|
isRejected: mainData.isRejected || true,
|
|
|
- rejectReason: mainData.rejectReason || 'xxxxxxx',
|
|
|
- startTime: mainData.startTime || '',
|
|
|
- acceptanceTime: mainData.acceptanceTime || ''
|
|
|
- }
|
|
|
+ rejectReason: mainData.rejectReason || "xxxxxxx",
|
|
|
+ startTime: mainData.startTime || "",
|
|
|
+ acceptanceTime: mainData.acceptanceTime || "",
|
|
|
+ };
|
|
|
} else {
|
|
|
- this.$message.error('获取数据失败')
|
|
|
+ this.$message.error("获取数据失败");
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.error('获取数据失败:', error)
|
|
|
- this.$message.error('获取数据失败')
|
|
|
+ console.error("获取数据失败:", error);
|
|
|
+ this.$message.error("获取数据失败");
|
|
|
}
|
|
|
},
|
|
|
|
|
|
// 关闭弹窗
|
|
|
handleDialogClose() {
|
|
|
- this.$emit('update:visible', false)
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
+ this.$emit("update:visible", false);
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
:deep(.el-dialog) {
|
|
|
border-radius: 8px;
|
|
|
-
|
|
|
+
|
|
|
.el-dialog__header {
|
|
|
padding: 20px;
|
|
|
border-bottom: 1px solid #ebeef5;
|
|
|
margin-right: 0;
|
|
|
-
|
|
|
+
|
|
|
.el-dialog__title {
|
|
|
font-size: 16px;
|
|
|
font-weight: 500;
|
|
@@ -445,11 +541,11 @@ export default {
|
|
|
|
|
|
.el-dialog__body {
|
|
|
padding: 20px;
|
|
|
-
|
|
|
+
|
|
|
.el-form {
|
|
|
.el-form-item {
|
|
|
margin-bottom: 18px;
|
|
|
-
|
|
|
+
|
|
|
.el-form-item__label {
|
|
|
font-weight: normal;
|
|
|
color: #606266;
|
|
@@ -469,21 +565,21 @@ export default {
|
|
|
cursor: default;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.el-textarea {
|
|
|
width: 100%;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.el-table {
|
|
|
margin-top: 8px;
|
|
|
-
|
|
|
+
|
|
|
th {
|
|
|
background-color: #f5f7fa;
|
|
|
color: #333;
|
|
|
font-weight: 500;
|
|
|
padding: 8px 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
td {
|
|
|
padding: 8px 0;
|
|
|
}
|
|
@@ -495,7 +591,7 @@ export default {
|
|
|
padding: 15px 20px;
|
|
|
border-top: 1px solid #ebeef5;
|
|
|
text-align: right;
|
|
|
-
|
|
|
+
|
|
|
.el-button {
|
|
|
padding: 9px 20px;
|
|
|
font-size: 13px;
|
|
@@ -525,18 +621,18 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
margin-bottom: 15px;
|
|
|
-
|
|
|
+
|
|
|
.fold-button {
|
|
|
padding: 0;
|
|
|
font-size: 13px;
|
|
|
color: #909399;
|
|
|
-
|
|
|
+
|
|
|
span {
|
|
|
margin-right: 4px;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
&:hover {
|
|
|
- color: #409EFF;
|
|
|
+ color: #409eff;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -571,16 +667,16 @@ export default {
|
|
|
margin-bottom: 15px;
|
|
|
position: relative;
|
|
|
padding-left: 10px;
|
|
|
-
|
|
|
+
|
|
|
&::before {
|
|
|
- content: '';
|
|
|
+ content: "";
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
top: 50%;
|
|
|
transform: translateY(-50%);
|
|
|
width: 3px;
|
|
|
height: 15px;
|
|
|
- background-color: #409EFF;
|
|
|
+ background-color: #409eff;
|
|
|
border-radius: 2px;
|
|
|
}
|
|
|
}
|
|
@@ -607,12 +703,12 @@ export default {
|
|
|
.step-description {
|
|
|
font-size: 12px;
|
|
|
line-height: 1.5;
|
|
|
-
|
|
|
+
|
|
|
div:first-child {
|
|
|
- color: #409EFF;
|
|
|
+ color: #409eff;
|
|
|
margin-bottom: 2px;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
div:last-child {
|
|
|
color: #909399;
|
|
|
}
|
|
@@ -634,4 +730,3 @@ export default {
|
|
|
padding-left: 20px;
|
|
|
}
|
|
|
</style>
|
|
|
-
|