@@ -281,6 +281,7 @@ | |||
:showBackBtn="true" | |||
> | |||
<div | |||
v-if="isProjManager" | |||
slot="right" | |||
class="edit-template-btn" | |||
@click.stop="handleEditTemplate" | |||
@@ -1718,45 +1719,7 @@ function generateTreeNode(plainFolderList) { | |||
font-family: PingFangSC-Regular; | |||
} | |||
} | |||
.item { | |||
display: flex; | |||
width: 100%; | |||
margin: 12px 0; | |||
font-size: 14px; | |||
line-height: 24px; | |||
font-family: PingFangSC-Regular; | |||
color: #32323c; | |||
.item-title { | |||
color: #62492f; | |||
width: 24%; | |||
text-align: right; | |||
} | |||
.item-value { | |||
position: relative; | |||
margin: 0 0 0 12px; | |||
&:not(.cover-img-wrap) { | |||
flex: 1; | |||
display: flex; | |||
} | |||
&.edit { | |||
display: inline-flex; | |||
} | |||
} | |||
.field-input { | |||
flex: 1; | |||
width: 140px; | |||
margin-right: 10px; | |||
line-height: 0; | |||
::v-deep .el-input__inner { | |||
margin-top: 0; | |||
height: 24px; | |||
line-height: 24px; | |||
} | |||
} | |||
.float-button { | |||
margin-left: 10px; | |||
} | |||
} | |||
.proj-main-template + .item-value { | |||
position: relative; | |||
@@ -1766,6 +1729,46 @@ function generateTreeNode(plainFolderList) { | |||
} | |||
} | |||
.item { | |||
display: flex; | |||
width: 100%; | |||
margin: 12px 0; | |||
font-size: 14px; | |||
line-height: 24px; | |||
font-family: PingFangSC-Regular; | |||
color: #32323c; | |||
.item-title { | |||
color: #62492f; | |||
width: 24%; | |||
text-align: right; | |||
} | |||
.item-value { | |||
position: relative; | |||
margin: 0 0 0 12px; | |||
&:not(.cover-img-wrap) { | |||
flex: 1; | |||
display: flex; | |||
} | |||
&.edit { | |||
display: inline-flex; | |||
} | |||
} | |||
.field-input { | |||
flex: 1; | |||
width: 140px; | |||
margin-right: 10px; | |||
line-height: 0; | |||
::v-deep .el-input__inner { | |||
margin-top: 0; | |||
height: 24px; | |||
line-height: 24px; | |||
} | |||
} | |||
.float-button { | |||
margin-left: 10px; | |||
} | |||
} | |||
.nest-project-modal { | |||
::v-deep { | |||
.el-dialog { | |||
@@ -96,7 +96,7 @@ | |||
> | |||
<!-- 面包屑导航 --> | |||
<div class="section_item section_item_aside_fl"> | |||
<span class="yiyun_text-title-workspace" style="height: 56px;line-height: 56px;"> | |||
<span class="yiyun_text-title-workspace" style="padding: 8px 0"> | |||
<el-breadcrumb | |||
class="folder_breadcrumb" | |||
separator-class="el-icon-arrow-right" | |||
@@ -208,7 +208,7 @@ | |||
v-for="file in selectedFileList" | |||
:key="file.id" | |||
> | |||
<span :title="file.archName">{{file.archName}}</span> | |||
<span :title="file.archName">{{file.archName}}.{{file.extension}}</span> | |||
<el-button | |||
class="archive_box_list_item_button" | |||
type="text" | |||
@@ -220,7 +220,7 @@ | |||
<div class="archive_box_bottom"> | |||
<el-button | |||
class="archive_box_bottom_button" | |||
type="success" | |||
:type="selectedFileIdList.length ? 'success':'info'" | |||
:disabled="selectedFileIdList.length === 0" | |||
@click.stop="authModalVisible = true" | |||
>交付并认证</el-button> | |||
@@ -6,9 +6,9 @@ | |||
<app-header | |||
:backBtnTitle="appHeaderTitle" | |||
:isWorkspaceTopBar="true" | |||
:showUserCenter="true" | |||
:showUserCenter="!selectMode" | |||
class="app-header-style workspace-header" | |||
:showRecycleBin="!workFlowVisible" | |||
:showRecycleBin="!workFlowVisible && !selectMode" | |||
:onBackBtnClick="appHeaderBackBtnClick" | |||
> | |||
<template v-if="viewType === 'archive-view' || selectMode" #left> | |||
@@ -46,7 +46,7 @@ | |||
</template> | |||
<template #right> | |||
<search-bar | |||
v-show="!workFlowVisible" | |||
v-show="!workFlowVisible && !selectMode" | |||
class="proj-search-bar" | |||
placeholder="请输入要搜索的文件名" | |||
:maxLength="35" | |||
@@ -416,7 +416,7 @@ export default { | |||
} | |||
.button-like { | |||
position: relative; | |||
top: -6px; | |||
top: -8px; | |||
padding: 6px 8px; | |||
margin-right: 16px; | |||
color: rgba(143, 143, 143, 100); | |||