SharedSheet.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <script setup>
  2. // import Sheet from '@/components/Sheet.vue'
  3. import { ref, reactive, computed, onMounted, watch } from 'vue'
  4. import Sheet from './Sheet.vue';
  5. // 定义 props
  6. const props = defineProps({
  7. TableInfo:{
  8. type:Object,
  9. default:{}
  10. }
  11. })
  12. //手机端pc端不同样式
  13. const dynamicSty = computed(()=>{
  14. return isMobile() ? 'mobile-sty' : 'pc-sty';
  15. })
  16. //判断是否是手机设备
  17. function isMobile() {
  18. // 判断是否是移动设备的正则表达式
  19. const mobileRegex = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i;
  20. // 获取用户代理信息
  21. const userAgent = navigator.userAgent;
  22. // 使用正则表达式检查用户代理信息
  23. return mobileRegex.test(userAgent);
  24. }
  25. </script>
  26. <template>
  27. <div class="sheet-show-wrapper">
  28. <div :class="['table-wrapper',dynamicSty ]" >
  29. <Sheet
  30. :limit="{
  31. disabled:true
  32. }"
  33. :sheetInfo="{
  34. ExcelInfoId: TableInfo.ExcelInfoId,
  35. ExcelName: TableInfo.ExcelName,
  36. ExcelClassifyId: TableInfo.ExcelClassifyId,
  37. Source: TableInfo.Source
  38. }"
  39. :option="{
  40. data: [{
  41. ...JSON.parse(TableInfo.Content),
  42. scrollTop: 0,
  43. scrollLeft: 0
  44. }]
  45. }"
  46. >
  47. </Sheet>
  48. </div>
  49. <div class="tool sheet-bottom">
  50. <div class="sheet-source"
  51. v-if="TableInfo.SourcesFrom&&JSON.parse(TableInfo.SourcesFrom).isShow"
  52. :style="`
  53. color: ${ JSON.parse(TableInfo.SourcesFrom).color };
  54. font-size: ${ JSON.parse(TableInfo.SourcesFrom).fontSize }px;
  55. `"
  56. >
  57. source:<em>{{ JSON.parse(TableInfo.SourcesFrom).text}}</em>
  58. </div>
  59. </div>
  60. </div>
  61. </template>
  62. <style lang='scss' scoped>
  63. .sheet-show-wrapper {
  64. max-width: 1200px;
  65. overflow: hidden;
  66. position: relative;
  67. margin: 0 auto;
  68. background: #fff;
  69. .tool{
  70. // text-align: right;
  71. margin-top: 5px;
  72. span{
  73. cursor: pointer;
  74. }
  75. }
  76. .sheet-bottom{
  77. display: flex;
  78. align-items: center;
  79. justify-content: space-between;
  80. white-space: nowrap;
  81. padding: 0 10px;
  82. .sheet-source{
  83. width: 30%;
  84. min-width: 150px;
  85. overflow: hidden;
  86. text-overflow: ellipsis;
  87. }
  88. .right-btns {
  89. display: flex;
  90. align-items: center;
  91. gap:15px;
  92. color: #666;
  93. }
  94. }
  95. }
  96. </style>
  97. <style scoped lang="scss">
  98. .table td,th {
  99. width: 104px;
  100. min-width: 104px;
  101. height: 35px;
  102. background: #fff;
  103. text-align: center;
  104. word-break: break-all;
  105. border: none;
  106. outline-color: #dcdfe6;
  107. outline-style: solid;
  108. outline-width: 1px;
  109. word-wrap: break-word;
  110. word-break: break-all;
  111. white-space: nowrap;
  112. overflow: hidden;
  113. text-overflow: ellipsis;
  114. position: relative;
  115. &.td-chose::after {
  116. position: absolute;
  117. top: 0;
  118. left: 0;
  119. right: 0;
  120. bottom: 0;
  121. content: "";
  122. display: block;
  123. outline: 0;
  124. border: 2px solid #0033FF;
  125. box-shadow: 0 0 5px rgba(73, 177, 249, .5)
  126. }
  127. // &.td-col-select::after {
  128. // position: absolute;
  129. // top: 0;
  130. // left: 0;
  131. // right: 0;
  132. // bottom: 0;
  133. // content: "";
  134. // display: block;
  135. // outline: 0;
  136. // border: 1px solid rgb(24, 173, 24);
  137. // border-bottom: none;
  138. // border-top: none;
  139. // }
  140. // &.td-row-select::after {
  141. // position: absolute;
  142. // top: 0;
  143. // left: 0;
  144. // right: 0;
  145. // bottom: 0;
  146. // content: "";
  147. // display: block;
  148. // outline: 0;
  149. // border: 1px solid rgb(24, 173, 24);
  150. // border-left: none;
  151. // border-right: none;
  152. // }
  153. &.insert {
  154. background: #FFEFDD;
  155. }
  156. .edbname-td {
  157. &:hover {
  158. text-decoration: underline;
  159. }
  160. }
  161. &.fix-col {
  162. position:sticky;
  163. left: 0;
  164. z-index: 98; // 表格右键操作弹窗为99
  165. }
  166. }
  167. .th-tg {
  168. background: #EBEEF5;
  169. &:hover {
  170. cursor: pointer;
  171. background: #ddd;
  172. /* border: 2px solid #409eff; */
  173. }
  174. &.sm {
  175. width: 36px;
  176. min-width: 36px;
  177. max-width: 36px;
  178. }
  179. }
  180. //整行选中
  181. tr {
  182. // position: relative;
  183. // &.choose-all::after {
  184. // position: absolute;
  185. // top: 0;
  186. // left: 0;
  187. // right: 0;
  188. // bottom: 0;
  189. // content: "";
  190. // display: block;
  191. // outline: 0;
  192. // border: 2px solid #5897fb;
  193. // box-shadow: 0 0 5px rgba(73, 177, 249, .5)
  194. // }
  195. &.fix {
  196. position:sticky;
  197. top: 0;
  198. z-index: 98; // 表格右键操作弹窗为99
  199. }
  200. }
  201. .el-icon-sort {
  202. color: #409eff;
  203. cursor: pointer;
  204. font-size: 16px;
  205. }
  206. </style>
  207. <style lang='scss' scoped>
  208. ::-webkit-scrollbar {
  209. width: 6px;
  210. height: 6px;
  211. }
  212. ::-webkit-scrollbar-track {
  213. background: rgb(239, 239, 239);
  214. border-radius: 2px;
  215. }
  216. ::-webkit-scrollbar-thumb {
  217. background: #ccc;
  218. border-radius: 10px;
  219. }
  220. ::-webkit-scrollbar-thumb:hover {
  221. background: #888;
  222. }
  223. ::-webkit-scrollbar-corner {
  224. background: #666;
  225. }
  226. .table-wrapper {
  227. max-width: calc(100vw - 20px);
  228. height: calc(100vh - 400px);
  229. margin: 0 auto;
  230. // margin-right: -5px;
  231. overflow: auto;
  232. }
  233. table {
  234. width: 100%;
  235. font-size: 14px;
  236. color: #333;
  237. td,
  238. th {
  239. // min-width: 120px;
  240. word-break: break-all;
  241. word-wrap: break-word;
  242. line-height: 1.2em;
  243. border: 1px solid #dcdfe6;
  244. // height: 40px;
  245. text-align: center;
  246. border-left: none;
  247. border-top: none;
  248. &:first-child {
  249. border-left: 1px solid #dcdfe6;
  250. }
  251. }
  252. .data-cell{
  253. color: #333;
  254. &.one-bg {
  255. background-color: #EFEEF1;
  256. }
  257. &.two-bg {
  258. background-color: #fff;
  259. }
  260. }
  261. .thead-sticky {
  262. position: sticky;
  263. top: 0;
  264. }
  265. .head-column {
  266. background-color: #505B78;
  267. color: #fff;
  268. }
  269. .split-word {
  270. span { display: inline; }
  271. }
  272. }
  273. .no-water{
  274. td,
  275. th {
  276. background-color: #fff;
  277. }
  278. .head-column {
  279. background-color: #505B78;
  280. color: #fff;
  281. }
  282. }
  283. .pc-sty table {
  284. table-layout: auto;
  285. td,th {
  286. width: auto;
  287. height: auto;
  288. padding: 0.4em 0;
  289. }
  290. }
  291. .mobile-sty table {
  292. table-layout: auto;
  293. td,th {
  294. min-width: 120px;
  295. height: 40px;
  296. }
  297. }
  298. .background-watermark{
  299. background-repeat: no-repeat;
  300. background-position: center center;
  301. background-size: 100%;
  302. }
  303. </style>