|
@@ -26,7 +26,7 @@ const sheetActions = computed(() => {
|
|
|
else if (Source === 2) authList = [ etaTablePermission.etaTable_customize_data_refresh, etaTablePermission.etaTable_customize_data_download, etaTablePermission.etaTable_customize_data_del]
|
|
|
else authList = [ etaTablePermission.etaTable_customize_mix_refresh, etaTablePermission.etaTable_excel_download, etaTablePermission.etaTable_excel_del]
|
|
|
return [
|
|
|
- { label: globalProperties.$t('shared_table.refresh'), types:'flushed', src: getStaticImg('table/flushed.png'), isAuth: Source === 2 ? true : checkAuthBtn(authList[0]) }, /* 因为pc端时间序列表格没有刷新这个权限,所以暂时直接给true */
|
|
|
+ // { label: globalProperties.$t('shared_table.refresh'), types:'flushed', src: getStaticImg('table/flushed.png'), isAuth: Source === 2 ? true : checkAuthBtn(authList[0]) }, /* 因为pc端时间序列表格没有刷新这个权限,所以暂时直接给true */
|
|
|
{ label: globalProperties.$t('shared_table.download'), types:'download', src: getStaticImg('table/download.png'), isAuth: checkAuthBtn(authList[1])},
|
|
|
{ label: globalProperties.$t('shared_table.delete'), types:'delete', src: getStaticImg('table/delete.png'), isAuth: checkAuthBtn(authList[2])},
|
|
|
]
|
|
@@ -210,7 +210,7 @@ function Base64() {
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="sheet-box" v-if="queryData.UniqueCode">
|
|
|
- <iframe :src="link + '/sheetshow?code=' + queryData.UniqueCode" frameborder="0" width="100%" height="100%"></iframe>
|
|
|
+ <iframe v-if="link" :src="link + '/sheetshow?code=' + queryData.UniqueCode" frameborder="0" width="100%" height="100%"></iframe>
|
|
|
</div>
|
|
|
<div class="bottom">
|
|
|
<div v-for="item in sheetActions" :key="item.types">
|
|
@@ -300,6 +300,7 @@ function Base64() {
|
|
|
}
|
|
|
}
|
|
|
.bottom {
|
|
|
+ margin-top: 10px;
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
.bottom-item {
|