|
@@ -136,9 +136,6 @@
|
|
|
<!-- 表格详情 -->
|
|
|
<div class="sheet-detail-wrapper" v-if="select_id">
|
|
|
<div class="detail-top">
|
|
|
- <span class="author"
|
|
|
- >作者:{{ sheetDetailInfo.SysUserRealName }}</span
|
|
|
- >
|
|
|
<!-- <el-input
|
|
|
ref="sheetEditTitRef"
|
|
|
style="width: 400px"
|
|
@@ -156,50 +153,59 @@
|
|
|
{{ sheetDetailInfo.ExcelName }}
|
|
|
<i class="el-icon-edit" v-if="sheetDetailInfo.Source === 1" />
|
|
|
</span> -->
|
|
|
- <span class="sheet-name">
|
|
|
+ <div class="sheet-name">
|
|
|
{{ sheetDetailInfo.ExcelName }}
|
|
|
- </span>
|
|
|
- <ul class="action-ul">
|
|
|
- <li style="color:#999999 ;">最近保存时间:{{ saveTime }}</li>
|
|
|
- <li
|
|
|
- class="editsty"
|
|
|
- @click="goEditHandle"
|
|
|
- v-if="isCreator ||
|
|
|
- (sheetDetailInfo.Button && sheetDetailInfo.Button.OpButton&&isSheetBtnShow('edit'))"
|
|
|
- >
|
|
|
- {{ editButtonText?editButtonText:'编辑' }}
|
|
|
- </li>
|
|
|
- <template v-if="[2, 3].includes(sheetDetailInfo.Source)">
|
|
|
+ </div>
|
|
|
+ <div class="sheet-anothor-info">
|
|
|
+ <span class="author">作者:{{ sheetDetailInfo.SysUserRealName }}</span>
|
|
|
+ <ul class="action-ul">
|
|
|
+ <li style="color:#999999 ;">最近保存时间:{{ saveTime }}</li>
|
|
|
<li
|
|
|
class="editsty"
|
|
|
- @click="refreshSheetEdb"
|
|
|
- v-if="sheetDetailInfo.Button.RefreshButton&&isSheetBtnShow('refresh')"
|
|
|
+ @click="goEditHandle"
|
|
|
+ v-if="isCreator ||
|
|
|
+ (sheetDetailInfo.Button && sheetDetailInfo.Button.OpButton&&isSheetBtnShow('edit'))"
|
|
|
>
|
|
|
- 刷新
|
|
|
+ <img src="~@/assets/img/icons/edit_blue_new.png" v-if="!editButtonText"/>
|
|
|
+ <span>{{ editButtonText?editButtonText:'编辑' }}</span>
|
|
|
+ </li>
|
|
|
+ <template v-if="[2, 3].includes(sheetDetailInfo.Source)">
|
|
|
+ <li
|
|
|
+ class="editsty"
|
|
|
+ @click="refreshSheetEdb"
|
|
|
+ v-if="sheetDetailInfo.Button.RefreshButton&&isSheetBtnShow('refresh')"
|
|
|
+ >
|
|
|
+ <img src="~@/assets/img/icons/refresh_blue_new.png"/>
|
|
|
+ <span>刷新</span>
|
|
|
+ </li>
|
|
|
+ <li
|
|
|
+ class="editsty"
|
|
|
+ @click="saveOtherHandle"
|
|
|
+ v-if="sheetDetailInfo.Button.CopyButton&&isSheetBtnShow('otherSave')"
|
|
|
+ >
|
|
|
+ <img src="~@/assets/img/icons/save_as_blue_new.png"/>
|
|
|
+ <span>另存为</span>
|
|
|
+ </li>
|
|
|
+ </template>
|
|
|
+ <li v-if="isDownLoadShow(sheetDetailInfo)"
|
|
|
+ class="editsty" @click="downloadExcel(sheetDetailInfo)">
|
|
|
+ <img src="~@/assets/img/icons/download_blue.png"/>
|
|
|
+ <span>下载</span>
|
|
|
</li>
|
|
|
<li
|
|
|
- class="editsty"
|
|
|
- @click="saveOtherHandle"
|
|
|
- v-if="sheetDetailInfo.Button.CopyButton&&isSheetBtnShow('otherSave')"
|
|
|
+ class="deletesty"
|
|
|
+ v-if="
|
|
|
+ isCreator || (sheetDetailInfo.Button && sheetDetailInfo.Button.DeleteButton
|
|
|
+ &&isDeleteShow(sheetDetailInfo))
|
|
|
+ "
|
|
|
+ @click="delSheetHandle({cell:sheetDetailInfo, type:'del'})"
|
|
|
>
|
|
|
- 另存为
|
|
|
+ <img src="~@/assets/img/icons/delete-red.png"/>
|
|
|
+ <span>删除</span>
|
|
|
</li>
|
|
|
- </template>
|
|
|
- <li v-if="isDownLoadShow(sheetDetailInfo)"
|
|
|
- class="editsty" @click="downloadExcel(sheetDetailInfo)">
|
|
|
- 下载
|
|
|
- </li>
|
|
|
- <li
|
|
|
- class="deletesty"
|
|
|
- v-if="
|
|
|
- isCreator || (sheetDetailInfo.Button && sheetDetailInfo.Button.DeleteButton
|
|
|
- &&isDeleteShow(sheetDetailInfo))
|
|
|
- "
|
|
|
- @click="delSheetHandle({cell:sheetDetailInfo, type:'del'})"
|
|
|
- >
|
|
|
- 删除
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+
|
|
|
</div>
|
|
|
|
|
|
<!-- 表格 -->
|
|
@@ -214,12 +220,6 @@
|
|
|
scrollLeft: 0
|
|
|
}]
|
|
|
}"
|
|
|
- :sheetInfo="{
|
|
|
- ExcelInfoId: sheetDetailInfo.ExcelInfoId,
|
|
|
- ExcelName: sheetDetailInfo.ExcelName,
|
|
|
- ExcelClassifyId: sheetDetailInfo.ExcelClassifyId,
|
|
|
- Source: sheetDetailInfo.Source
|
|
|
- }"
|
|
|
:limit="{disabled:true}"
|
|
|
/>
|
|
|
|
|
@@ -751,8 +751,12 @@ export default {
|
|
|
this.saveTime = this.$moment(this.sheetDetailInfo.ModifyTime).format('YYYY-MM-DD HH:mm:ss')||''
|
|
|
this.excelAdminId = this.sheetDetailInfo.SysUserId
|
|
|
this.editButtonText = this.sheetDetailInfo.CanEdit?'':`${this.sheetDetailInfo.Editor}编辑中`
|
|
|
+ //从nextTick里面拉出来 更多功能按钮 才显示的出来
|
|
|
+ this.sheetDetailInfo.Source === 1 && this.$refs.sheetRef && this.$refs.sheetRef.init();
|
|
|
+
|
|
|
this.$nextTick(() => {
|
|
|
- this.sheetDetailInfo.Source === 1 && this.$refs.sheetRef.init();
|
|
|
+
|
|
|
+ // this.sheetDetailInfo.Source === 1 && this.$refs.sheetRef.init();
|
|
|
|
|
|
this.sheetDetailInfo.Source === 2 &&
|
|
|
this.$refs.customTableRef.initSheetData(res.Data.TableData);
|
|
@@ -907,7 +911,7 @@ $normal-font: 14px;
|
|
|
|
|
|
.main-left {
|
|
|
width: 400px;
|
|
|
- min-width: 350px;
|
|
|
+ min-width: 300px;
|
|
|
background: #fff;
|
|
|
margin-right: 20px;
|
|
|
border: 1px solid #ececec;
|
|
@@ -977,6 +981,7 @@ $normal-font: 14px;
|
|
|
|
|
|
.main-right {
|
|
|
width: 80%;
|
|
|
+ min-width: 800px;
|
|
|
.sheet-detail-wrapper {
|
|
|
height: 100%;
|
|
|
border: 1px solid #ececec;
|
|
@@ -986,28 +991,47 @@ $normal-font: 14px;
|
|
|
background: #fff;
|
|
|
.detail-top {
|
|
|
padding: 20px;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
+ // display: flex;
|
|
|
+ // justify-content: space-between;
|
|
|
+ // align-items: center;
|
|
|
border-bottom: 1px solid #ececec;
|
|
|
.sheet-name {
|
|
|
- font-size: 17px;
|
|
|
+ font-size: 18px;
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom: 6px;
|
|
|
// cursor: pointer;
|
|
|
- max-width: 450px;
|
|
|
+ // max-width: 450px;
|
|
|
// &:hover {
|
|
|
// text-decoration: underline;
|
|
|
// }
|
|
|
}
|
|
|
- .action-ul {
|
|
|
+ .sheet-anothor-info{
|
|
|
display: flex;
|
|
|
- li {
|
|
|
- margin: 0 10px;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ .author{
|
|
|
+ color: #666666;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ .action-ul {
|
|
|
+ display: flex;
|
|
|
+ li {
|
|
|
+ margin: 0 10px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ img{
|
|
|
+ height: 16px;
|
|
|
+ width: 16px;
|
|
|
+ margin-right: 4px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
.sheet-wrap {
|
|
|
position: relative;
|
|
|
- height: calc(100vh - 190px);
|
|
|
+ height: calc(100vh - 210px);
|
|
|
padding: 15px;
|
|
|
/* min-height: 500px; */
|
|
|
}
|