CusContent.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  1. <template>
  2. <div class="cus-content" :class="{'cus-content-full': full !== false}">
  3. <div name="cus-table-resize-dom" class="cc-top-slot" v-if="$slots.top">
  4. <slot name="top"/>
  5. </div>
  6. <div name="cus-table-resize-dom" class="cc-field-out" id="field-out" v-if="$slots.fieldOut">
  7. <div class="field-out-slot cus-content-form">
  8. <slot name="fieldOut"/>
  9. </div>
  10. </div>
  11. <div name="cus-table-resize-dom" class="cc-center-slot" v-if="$slots.center">
  12. <slot name="center"/>
  13. </div>
  14. <div name="cus-table-resize-dom" class="cc-bottom">
  15. <div id="operation" class="operation" v-if="$slots.buttons || noFilter === false">
  16. <div class="table-title">
  17. <slot name="tableTitle"/>
  18. </div>
  19. <div class="buttons">
  20. <slot name="buttons"/>
  21. </div>
  22. <div class="filters" v-if="noFilter === false">
  23. <div class="tools __hover" @click="showFieldColumn = true">
  24. <SvgIcon name="cus-content_tools" size="18" color="#666666"/>
  25. </div>
  26. <!-- <el-dropdown :teleported="false">-->
  27. <!-- <div class="tools __hover">-->
  28. <!-- <SvgIcon name="cus-content_tools" size="18" color="#666666"/>-->
  29. <!-- </div>-->
  30. <!-- <template #dropdown>-->
  31. <!-- <el-dropdown-menu>-->
  32. <!-- <el-dropdown-item @click="showFieldIn = true" v-if="$slots.fieldIn" style="width: 170px;">-->
  33. <!-- <div class="tools-item">-->
  34. <!-- <svg-icon name="cus-content_field-in" size="18"/>高级筛选-->
  35. <!-- </div>-->
  36. <!-- </el-dropdown-item>-->
  37. <!-- <el-dropdown-item @click="showFieldColumn = true">-->
  38. <!-- <div class="tools-item">-->
  39. <!-- <svg-icon name="cus-content_field-column" size="18"/>字段筛选-->
  40. <!-- </div>-->
  41. <!-- </el-dropdown-item>-->
  42. <!-- <el-dropdown-item>-->
  43. <!-- <div class="tools-item" @click="showContentFixed = true">-->
  44. <!-- <svg-icon name="cus-content_field-fixed" size="18"/>冻结窗格-->
  45. <!-- </div>-->
  46. <!-- </el-dropdown-item>-->
  47. <!-- </el-dropdown-menu>-->
  48. <!-- </template>-->
  49. <!-- </el-dropdown>-->
  50. </div>
  51. <div class="filters-right" :style="`margin-left : ${(noFilter === false || $slots.buttons) ? 10 : 0}px`">
  52. <slot name="filtersRight"/>
  53. </div>
  54. </div>
  55. <div id="table" class="table">
  56. <slot name="table"/>
  57. </div>
  58. </div>
  59. <el-dialog
  60. v-model="showFieldIn"
  61. width="566px"
  62. align-center
  63. modal-class="field-dialog"
  64. :close-on-click-modal="false"
  65. :show-close="false"
  66. >
  67. <template #header>
  68. <span>高级筛选设置</span>
  69. <SvgIcon class="__hover" name="close_2" size="16" @click="showFieldIn = false"/>
  70. </template>
  71. <div class="field-in-slot">
  72. <slot name="fieldIn"/>
  73. </div>
  74. <template #footer>
  75. <div class="buttons">
  76. <div class="cancel __hover" @click="showFieldIn = false">取消</div>
  77. <div class="submit __hover" @click="$emit('handleSearch'), showFieldIn = false">确定</div>
  78. </div>
  79. </template>
  80. </el-dialog>
  81. <el-dialog
  82. v-model="showFieldColumn"
  83. width="790px"
  84. align-center
  85. modal-class="field-dialog"
  86. :close-on-click-modal="false"
  87. :show-close="false"
  88. >
  89. <template #header>
  90. <span>字段筛选设置</span>
  91. <SvgIcon class="__hover" name="close_2" size="16" @click="showFieldColumn = false"/>
  92. </template>
  93. <div class="field-column">
  94. <div class="fc-block fc-all">
  95. <div class="fcb-title">全部字段</div>
  96. <div class="fcb-content">
  97. <div class="fcbc-filter">
  98. <el-input v-model="columnAllInputFilter" placeholder="请输入关键词..." clearable>
  99. <template #suffix>
  100. <SvgIcon name="search"/>
  101. </template>
  102. </el-input>
  103. </div>
  104. <div class="fcbc-list">
  105. <template v-for="(item, index) in tableHeadTempDeep.filter(v => v.allLabel.includes(columnAllInputFilter))" :key="item.allLabel">
  106. <div class="table-head-item __hover" @click="item.show = !item.show">
  107. <div class="check" :class="{active: item.show}"/>
  108. <CusEllipsis class="label" :value="item.allLabel"/>
  109. </div>
  110. </template>
  111. </div>
  112. <div class="fcbc-bottom">
  113. <div>共 {{ tableHeadTempDeep.length }} 条</div>
  114. <div class="__hover" @click="handleCheckAllChange">
  115. <div class="check" :class="{active: columnIsAllCpt}"/>全选
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. <div class="fc-block fc-select">
  121. <div class="fcb-title">已选字段</div>
  122. <div class="fcb-content">
  123. <div class="fcbc-filter">
  124. <el-input v-model="columnSelectInputFilter" placeholder="请输入关键词..." clearable>
  125. <template #suffix>
  126. <SvgIcon name="search"/>
  127. </template>
  128. </el-input>
  129. </div>
  130. <div class="fcbc-list">
  131. <template v-for="(item, index) in tableHeadTempDeep.filter(v => v.show && v.allLabel.includes(columnSelectInputFilter))" :key="item.allLabel">
  132. <div class="table-head-select-item">
  133. <SvgIcon name="cus-content_field-column-select" size="12" color="#e4e4e4"/>
  134. <CusEllipsis class="label" :value="item.allLabel"/>
  135. <SvgIcon class="__hover" name="close_2" size="12" color="#e4e4e4" @click="item.show = false"/>
  136. </div>
  137. </template>
  138. </div>
  139. <div class="fcbc-bottom">
  140. <div>已选 {{ tableHeadTempDeep.filter(v => v.show).length }} 条</div>
  141. <div v-if="tableHeadTempDeep.filter(v => v.show).length > 0" @click="tableHeadTempDeep.forEach(v => v.show = false)" class="clear __hover">清空</div>
  142. </div>
  143. </div>
  144. </div>
  145. </div>
  146. <template #footer>
  147. <div class="buttons">
  148. <div class="cancel __hover" @click="showFieldColumn = false">取消</div>
  149. <div class="submit __hover" @click="$emit('update:tableHead', tableHeadTemp), showFieldColumn = false">确定</div>
  150. </div>
  151. </template>
  152. </el-dialog>
  153. <el-dialog
  154. v-model="showContentFixed"
  155. width="790px"
  156. align-center
  157. modal-class="field-dialog"
  158. :close-on-click-modal="false"
  159. :show-close="false"
  160. >
  161. <template #header>
  162. <span>表格冻结</span>
  163. <SvgIcon class="__hover" name="close_2" size="16" @click="showContentFixed = false"/>
  164. </template>
  165. <div class="content-fixed">
  166. <div class="cf-item">
  167. <el-checkbox v-model="tempContentFixed.full">内容</el-checkbox>
  168. </div>
  169. <div class="cf-item">
  170. <el-checkbox v-model="tempContentFixed.leftFixed">表格左侧</el-checkbox>
  171. </div>
  172. <div class="cf-item">
  173. <el-checkbox v-model="tempContentFixed.rightFixed">表格右侧</el-checkbox>
  174. </div>
  175. </div>
  176. <template #footer>
  177. <div class="buttons">
  178. <div class="cancel __hover" @click="showContentFixed = false">取消</div>
  179. <div class="submit __hover" @click="handleContentFixed">确定</div>
  180. </div>
  181. </template>
  182. </el-dialog>
  183. </div>
  184. </template>
  185. <script lang="ts">
  186. import {
  187. defineComponent,
  188. computed,
  189. onMounted,
  190. ref,
  191. reactive,
  192. watch,
  193. getCurrentInstance,
  194. ComponentInternalInstance,
  195. toRefs
  196. } from 'vue'
  197. export default defineComponent({
  198. name: 'CusContent',
  199. components: {},
  200. props: {
  201. tableHead: {
  202. default: () => []
  203. },
  204. text: {},
  205. showText: {
  206. default: false
  207. },
  208. searchTip: {
  209. default: '请输入查询关键词'
  210. },
  211. full: {
  212. default: false
  213. },
  214. noFilter: {
  215. default: false
  216. }
  217. },
  218. setup(props, { emit }) {
  219. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  220. const state = reactive({
  221. textTemp: '',
  222. showFieldIn: false,
  223. showFieldColumn: false,
  224. showContentFixed: false,
  225. columnAllInputFilter: '',
  226. columnSelectInputFilter: '',
  227. tableHeadTemp: [],
  228. contentFixed: {
  229. full: props.full,
  230. leftFixed: true,
  231. rightFixed: true
  232. },
  233. tempContentFixed: {
  234. full: props.full,
  235. leftFixed: true,
  236. rightFixed: true
  237. }
  238. });
  239. watch(() => props.text, (nV: any) => {
  240. state.textTemp = nV
  241. })
  242. watch(() => state.showFieldColumn, (n) => {
  243. if (n) {
  244. state.tableHeadTemp = JSON.parse(JSON.stringify(props.tableHead))
  245. }
  246. })
  247. watch(() => state.showContentFixed, (n) => {
  248. if (n) {
  249. state.tempContentFixed = JSON.parse(JSON.stringify(state.contentFixed))
  250. }
  251. })
  252. const tableHeadTempDeep = computed(() => {
  253. const list: any = []
  254. const deep = (arr: any[], pLabel: string = '') => {
  255. arr.forEach(v => {
  256. v.allLabel = pLabel ? `${pLabel}-${v.label}` : v.label
  257. if (!v.tempFixed && v.fixed) {
  258. v.tempFixed = JSON.parse(JSON.stringify(v.fixed))
  259. }
  260. if (v.children && v.children.length > 0) {
  261. deep(v.children, v.allLabel)
  262. } else {
  263. list.push(v)
  264. }
  265. })
  266. }
  267. deep(state.tableHeadTemp)
  268. return list
  269. })
  270. const columnIsAllCpt = computed(() => {
  271. return tableHeadTempDeep.value.every(v => v.show)
  272. })
  273. const handleCheckAllChange = () => {
  274. if (columnIsAllCpt.value) {
  275. tableHeadTempDeep.value.forEach(v => {
  276. v.show = false
  277. })
  278. } else {
  279. tableHeadTempDeep.value.forEach(v => {
  280. v.show = true
  281. })
  282. }
  283. }
  284. const handleContentFixed = () => {
  285. state.contentFixed = JSON.parse(JSON.stringify(state.tempContentFixed))
  286. tableHeadTempDeep.value.forEach((v: any) => {
  287. if (v.tempFixed === 'left') {
  288. v.fixed = state.contentFixed.leftFixed ? 'left' : false
  289. } else if (v.tempFixed === 'right') {
  290. v.fixed = state.contentFixed.rightFixed ? 'right' : false
  291. }
  292. })
  293. emit('update:full', state.contentFixed.full)
  294. emit('update:tableHead', state.tableHeadTemp)
  295. state.showContentFixed = false
  296. }
  297. onMounted(() => {
  298. state.tableHeadTemp = JSON.parse(JSON.stringify(props.tableHead))
  299. state.tempContentFixed = JSON.parse(JSON.stringify(state.contentFixed))
  300. })
  301. return {
  302. ...toRefs(state),
  303. tableHeadTempDeep,
  304. handleCheckAllChange,
  305. columnIsAllCpt,
  306. handleContentFixed
  307. }
  308. },
  309. })
  310. </script>
  311. <style scoped lang="scss">
  312. .cus-content {
  313. width: 100%;
  314. height: 100%;
  315. display: flex;
  316. flex-direction: column;
  317. background-color: #F5FBFF;
  318. box-sizing: border-box;
  319. .cc-top-slot {
  320. background-color: #FFFFFF;
  321. }
  322. .cc-field-out {
  323. border-radius: 8px 8px 0 0;
  324. background-color: #FFFFFF;
  325. height: auto;
  326. padding: 14px 24px 0 0;
  327. .field-out-slot {
  328. flex: 1;
  329. :deep(.el-form-item) {
  330. margin-bottom: 12px;
  331. }
  332. }
  333. }
  334. .cc-center-slot {
  335. margin-bottom: 10px;
  336. background-color: #FFFFFF;
  337. }
  338. .cc-bottom {
  339. border-radius: 0 0 8px 8px;
  340. background-color: #FFFFFF;
  341. flex: 1;
  342. z-index: 1;
  343. display: flex;
  344. flex-direction: column;
  345. padding: 12px 16px;
  346. .operation {
  347. display: flex;
  348. align-items: center;
  349. justify-content: space-between;
  350. margin-bottom: 12px;
  351. .table-title {
  352. margin-right: auto;
  353. display: flex;
  354. align-items: center;
  355. }
  356. .buttons {
  357. margin-left: auto;
  358. display: flex;
  359. :deep(>*) {
  360. margin-right: 10px;
  361. }
  362. }
  363. .filters {
  364. height: 36px;
  365. display: flex;
  366. align-items: center;
  367. :deep(.el-dropdown) {
  368. .tools {
  369. width: 36px;
  370. height: 36px;
  371. box-sizing: border-box;
  372. border-radius: 4px;
  373. border: 1px solid #E4E4E4;
  374. display: flex;
  375. align-items: center;
  376. justify-content: center;
  377. }
  378. .el-dropdown-menu {
  379. padding: 8px 4px;
  380. }
  381. .el-dropdown-menu__item {
  382. padding: 0;
  383. .tools-item {
  384. padding: 0 8px;
  385. display: flex;
  386. align-items: center;
  387. width: 170px;
  388. height: 40px;
  389. box-sizing: border-box;
  390. .svg-icon {
  391. margin-right: 8px;
  392. }
  393. }
  394. }
  395. }
  396. }
  397. }
  398. .table {
  399. flex: 1;
  400. z-index: 1;
  401. display: flex;
  402. }
  403. }
  404. :deep(.field-dialog) {
  405. .el-overlay-dialog {
  406. overflow: hidden;
  407. .el-dialog {
  408. border-radius: 8px;
  409. .el-dialog__header {
  410. padding: 30px 28px 38px 28px;
  411. margin: 0;
  412. font-size: 18px;
  413. font-family: Microsoft YaHei;
  414. font-weight: bold;
  415. color: #333333;
  416. display: flex;
  417. justify-content: space-between;
  418. }
  419. .el-dialog__body {
  420. padding: 0 28px;
  421. }
  422. .el-dialog__footer {
  423. padding: 22px 28px 20px 28px;
  424. .buttons {
  425. width: 100%;
  426. display: flex;
  427. justify-content: flex-end;
  428. >div {
  429. display: flex;
  430. align-items: center;
  431. justify-content: center;
  432. box-sizing: border-box;
  433. }
  434. .cancel {
  435. margin-right: 10px;
  436. width: 72px;
  437. height: 36px;
  438. background: #F8F8F8;
  439. border: 1px solid #E4E4E4;
  440. border-radius: 4px;
  441. font-size: 14px;
  442. font-family: Microsoft YaHei;
  443. font-weight: 400;
  444. color: #999999;
  445. }
  446. .submit {
  447. width: 72px;
  448. height: 36px;
  449. background: #0062E9;
  450. border-radius: 4px;
  451. font-size: 14px;
  452. font-family: Microsoft YaHei;
  453. font-weight: 400;
  454. color: #FFFFFF;
  455. }
  456. }
  457. }
  458. }
  459. }
  460. }
  461. .field-column {
  462. display: flex;
  463. justify-content: space-between;
  464. .fc-block {
  465. .fcb-title {
  466. font-size: 14px;
  467. font-family: Microsoft YaHei;
  468. font-weight: 400;
  469. color: #666666;
  470. margin-bottom: 18px;
  471. }
  472. .fcb-content {
  473. height: 488px;
  474. border: 1px solid #E4E4E4;
  475. border-radius: 4px;
  476. display: flex;
  477. flex-direction: column;
  478. .fcbc-filter {
  479. padding: 10px 12px 0 12px;
  480. }
  481. .check {
  482. width: 18px;
  483. height: 18px;
  484. box-sizing: border-box;
  485. border: 1px solid #d3d3d3;
  486. border-radius: 2px;
  487. margin: 0 10px;
  488. cursor: pointer;
  489. font-size: 16px;
  490. &.active {
  491. background-color: #6587ff;
  492. border-color: #6587ff;
  493. display: grid;
  494. place-items: center;
  495. &:after {
  496. content: '✔';
  497. color: #ffffff;
  498. font-size: 14px;
  499. }
  500. }
  501. &:hover {
  502. opacity: 0.8;
  503. }
  504. }
  505. .fcbc-bottom {
  506. margin-top: auto;
  507. display: flex;
  508. justify-content: space-between;
  509. align-items: center;
  510. height: 40px;
  511. min-height: 40px;
  512. background: #FFFFFF;
  513. border-top: 1px solid #E4E4E4;
  514. border-radius: 0px 0px 4px 4px;
  515. padding: 0 10px 0 12px;
  516. font-size: 14px;
  517. font-family: Microsoft YaHei;
  518. font-weight: 400;
  519. color: #666666;
  520. box-sizing: border-box;
  521. }
  522. }
  523. &.fc-all {
  524. width: 480px;
  525. .fcbc-list {
  526. display: grid;
  527. grid-template-columns: repeat(2, 1fr);
  528. padding: 20px 12px;
  529. row-gap: 22px;
  530. column-gap: 30px;
  531. overflow-y: auto;
  532. .table-head-item {
  533. height: 18px;
  534. display: flex;
  535. align-items: center;
  536. line-height: 1;
  537. .label {
  538. width: 164px;
  539. }
  540. }
  541. }
  542. .fcbc-bottom {
  543. >div:nth-child(2) {
  544. display: flex;
  545. align-items: center;
  546. .check:after {
  547. transform: translateY(-2px);
  548. }
  549. }
  550. }
  551. }
  552. &.fc-select {
  553. width: 244px;
  554. .fcbc-list {
  555. overflow-y: auto;
  556. display: grid;
  557. row-gap: 26px;
  558. padding: 20px 12px;
  559. grid-template-columns: repeat(1, 1fr);
  560. .table-head-select-item {
  561. display: flex;
  562. align-items: center;
  563. .svg-icon:first-child {
  564. margin-right: 10px;
  565. }
  566. .label {
  567. width: 164px;
  568. }
  569. .svg-icon:last-child {
  570. margin-left: auto;
  571. }
  572. }
  573. }
  574. .fcbc-bottom {
  575. .clear {
  576. font-size: 14px;
  577. font-family: Microsoft YaHei;
  578. font-weight: 400;
  579. color: #0062E9;
  580. }
  581. }
  582. }
  583. }
  584. }
  585. &.cus-content-full {
  586. overflow-y: auto;
  587. position: absolute;
  588. }
  589. }
  590. </style>