|
@@ -1,5 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="safety-platform-container">
|
|
<div class="safety-platform-container">
|
|
|
|
|
+ <div class="back-header">
|
|
|
|
|
+ <BreadcrumbBack />
|
|
|
|
|
+ <span class="breadcrumb-title">查看发送对象</span>
|
|
|
|
|
+ </div>
|
|
|
<header class="safety-platform-container__header">
|
|
<header class="safety-platform-container__header">
|
|
|
<div class="breadcrumb-title"> {{ detail.workContent }}</div>
|
|
<div class="breadcrumb-title"> {{ detail.workContent }}</div>
|
|
|
<div class="breadcrumb-desc flex" style="margin-top: 20px">
|
|
<div class="breadcrumb-desc flex" style="margin-top: 20px">
|
|
@@ -10,12 +14,6 @@
|
|
|
<main class="safety-platform-container__main">
|
|
<main class="safety-platform-container__main">
|
|
|
<div class="search-table-container">
|
|
<div class="search-table-container">
|
|
|
<header class="header-wrapper">
|
|
<header class="header-wrapper">
|
|
|
- <div class="flex items-center">
|
|
|
|
|
- <el-icon size="20px">
|
|
|
|
|
- <Discount />
|
|
|
|
|
- </el-icon>
|
|
|
|
|
- <span style="margin-left: 10px">执行层单位</span>
|
|
|
|
|
- </div>
|
|
|
|
|
<div class="act-search">
|
|
<div class="act-search">
|
|
|
<section class="select-box">
|
|
<section class="select-box">
|
|
|
<div class="select-box--item">
|
|
<div class="select-box--item">
|
|
@@ -112,6 +110,7 @@
|
|
|
import BasicTable from '@/components/BasicTable.vue';
|
|
import BasicTable from '@/components/BasicTable.vue';
|
|
|
import useTableConfig from '@/hooks/useTableConfigHook';
|
|
import useTableConfig from '@/hooks/useTableConfigHook';
|
|
|
import ActionButton from '@/components/ActionButton.vue';
|
|
import ActionButton from '@/components/ActionButton.vue';
|
|
|
|
|
+import BreadcrumbBack from '@/components/BreadcrumbBack.vue';
|
|
|
import {
|
|
import {
|
|
|
TABLE_OPTIONS,
|
|
TABLE_OPTIONS,
|
|
|
VIEW_SENDS_TABLE_COLUMNS,
|
|
VIEW_SENDS_TABLE_COLUMNS,
|
|
@@ -321,4 +320,12 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+ .back-header {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ gap: 16px;
|
|
|
|
|
+ padding: 16px 22px;
|
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
|
+ background-color: white;
|
|
|
|
|
+ }
|
|
|
</style>
|
|
</style>
|