123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746 |
- <template>
- <el-dialog
- title="组件库"
- :visible.sync="dialogVisible"
- width="80%"
- :modal="true"
- :modal-append-to-body="false"
- :appen-to-body="true"
- class="bs-dialog-wrap bs-el-dialog"
- @closed="close"
- >
- <div class="content">
- <el-tabs v-model="activeName">
- <el-tab-pane
- label="自定义组件"
- name="combination"
- >
- <div class="big-screen-list-wrap">
- <div class="top-search-wrap">
- <el-input
- v-model="searchKey"
- class="bs-el-input"
- placeholder="请输入组件名称"
- prefix-icon="el-icon-search"
- clearable
- @clear="reSearch"
- @keyup.enter.native="reSearch"
- />
- <el-select
- v-model="code"
- class="bs-el-select"
- popper-class="bs-el-select"
- placeholder="请选择分组"
- clearable
- @change="reSearch"
- >
- <el-option
- v-for="item in options"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- />
- </el-select>
- <el-button
- size="small"
- type="primary"
- @click="reSearch"
- >
- 搜索
- </el-button>
- </div>
- <div
- v-if="list.length !== 0"
- v-loading="loading"
- class="list-wrap bs-scrollbar"
- element-loading-text="加载中"
- :style="{
- display: gridComputed ? 'grid' : 'flex',
- justifyContent: gridComputed ? 'space-around' : 'flex-start',
- height: 'calc(100vh - 430px)'
- }"
- >
- <!-- <div v-if="list.length !== 0"> -->
- <div
- v-for="screen in list"
- :key="screen.id"
- class="big-screen-card-wrap"
- :style="{
- width: gridComputed ? 'auto' : '290px'
- }"
- @click="chooseComponent(screen)"
- >
- <div
- :class="focus.id == screen.id ? 'focus' : ''"
- class="big-screen-card-inner"
- >
- <div class="big-screen-card-img">
- <el-image
- :src="screen.coverPicture"
- fit="contain"
- style="width: 100%; height: 100%"
- >
- <div
- slot="placeholder"
- class="image-slot"
- >
- 加载中···
- </div>
- <div
- slot="error"
- class="image-slot"
- style="font-size: 20px"
- >
- <div class="error-img-text">
- {{ screen.name }}
- </div>
- </div>
- </el-image>
- </div>
- <div class="big-screen-bottom">
- <div
- class="left-bigscreen-title"
- :title="screen.name"
- >
- {{ screen.name }}
- </div>
- </div>
- </div>
- </div>
- </div>
- <div
- v-else
- class="empty"
- >
- 暂无数据
- </div>
- <div class="footer-pagination-wrap">
- <div class="bs-pagination">
- <el-pagination
- class="bs-el-pagination"
- popper-class="bs-el-pagination"
- background
- layout="total, prev, pager, next, sizes"
- :page-size="size"
- prev-text="上一页"
- next-text="下一页"
- :total="totalCount"
- :page-sizes="[10, 20, 50, 100]"
- :current-page="current"
- @current-change="currentChangeHandle"
- @size-change="sizeChangeHandle"
- />
- </div>
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane
- label="业务组件"
- name="bizComponent"
- >
- <div class="big-screen-list-wrap">
- <div class="top-search-wrap">
- <el-input
- v-model="name"
- class="bs-el-input"
- placeholder="请输入组件名称"
- prefix-icon="el-icon-search"
- clearable
- @clear="reSearch"
- @keyup.enter.native="reSearch"
- />
- <el-select
- v-model="code"
- class="bs-el-select"
- popper-class="bs-el-select"
- placeholder="请选择分组"
- clearable
- @change="reSearch"
- >
- <el-option
- v-for="item in options"
- :key="item.code"
- :label="item.name"
- :value="item.code"
- />
- </el-select>
- <el-button
- size="small"
- type="primary"
- @click="reSearch"
- >
- 搜索
- </el-button>
- </div>
- <div
- v-if="bizComponentList.length !== 0"
- v-loading="loading"
- class="list-wrap bs-scrollbar"
- element-loading-text="加载中"
- :style="{
- display: bizFridComputed ? 'grid' : 'flex',
- justifyContent: bizFridComputed ? 'space-around' : 'flex-start',
- height: 'calc(100vh - 430px)'
- }"
- >
- <!-- <div v-if="list.length !== 0"> -->
- <div
- v-for="screen in bizComponentList"
- :key="screen.id"
- class="big-screen-card-wrap"
- :style="{
- width: bizFridComputed ? 'auto' : '290px'
- }"
- @click="chooseComponent(screen)"
- >
- <div
- :class="focus.id == screen.id ? 'focus' : ''"
- class="big-screen-card-inner"
- >
- <div class="big-screen-card-img">
- <el-image
- :src="screen.coverPicture"
- fit="contain"
- style="width: 100%; height: 100%"
- >
- <div
- slot="placeholder"
- class="image-slot"
- >
- 加载中···
- </div>
- <div
- slot="error"
- class="image-slot"
- style="font-size: 20px"
- >
- <div class="error-img-text">
- {{ screen.name }}
- </div>
- </div>
- </el-image>
- </div>
- <div class="big-screen-bottom">
- <div
- class="left-bigscreen-title"
- :title="screen.name"
- >
- {{ screen.name }}
- </div>
- </div>
- </div>
- </div>
- </div>
- <div
- v-else
- class="empty"
- >
- 暂无数据
- </div>
- <div class="footer-pagination-wrap">
- <div class="bs-pagination">
- <el-pagination
- class="bs-el-pagination"
- popper-class="bs-el-pagination"
- background
- layout="total, prev, pager, next, sizes"
- :page-size="size"
- prev-text="上一页"
- next-text="下一页"
- :total="bizComponenTotalCount"
- :page-sizes="[10, 20, 50, 100]"
- :current-page="current"
- @current-change="currentChangeHandle"
- @size-change="sizeChangeHandle"
- />
- </div>
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane
- label="系统组件"
- name="remote"
- >
- <div class="big-screen-list-wrap">
- <div
- v-if="remoteComponentlist.length !== 0"
- class="list-wrap bs-scrollbar"
- :style="{
- display: remoteComponentsGridComputed ? 'grid' : 'flex',
- justifyContent: remoteComponentsGridComputed ? 'space-around' : 'flex-start',
- height: 'calc(100vh - 430px)'
- }"
- >
- <div
- v-for="component in remoteComponentlist"
- :key="component.title"
- class="big-screen-card-wrap"
- :style="{
- width: remoteComponentsGridComputed ? 'auto' : '290px'
- }"
- @click="chooseComponent(component)"
- >
- <div
- :class="component.title == focus.title ? 'focus' : ''"
- class="big-screen-card-inner"
- >
- <div class="big-screen-card-img">
- <el-image
- :src="component.img"
- fit="contain"
- style="width: 100%; height: 100%"
- >
- <div
- slot="placeholder"
- class="image-slot"
- >
- 加载中···
- </div>
- </el-image>
- </div>
- <div class="big-screen-bottom">
- <div
- class="left-bigscreen-title"
- :title="component.title"
- >
- {{ component.title }}
- </div>
- </div>
- </div>
- </div>
- </div>
- <div
- v-else
- class="empty"
- >
- 暂无数据
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- <div
- slot="footer"
- class="dialog-footer"
- >
- <el-button
- class="bs-el-button-default"
- @click="dialogVisible = false"
- >
- 取消
- </el-button>
- <el-button
- type="primary"
- @click="confirm"
- >
- 确定
- </el-button>
- <el-button
- type="primary"
- @click="jumpto"
- >
- 组件管理
- </el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- import { displayOption } from 'data-room-ui/js/config'
- import { pageMixins } from 'data-room-ui/js/mixins/page'
- // import _ from 'lodash'
- import isEmpty from 'lodash/isEmpty'
- import cloneDeep from 'lodash/cloneDeep'
- import innerRemoteComponents, { getRemoteComponents, getRemoteComponentConfig } from 'data-room-ui/RemoteComponents/remoteComponentsList'
- import { getBizComponentPage } from 'data-room-ui/js/api/bigScreenApi'
- export default {
- name: 'ComponentDialog',
- mixins: [pageMixins],
- props: {},
- data () {
- return {
- dialogVisible: false,
- loading: false,
- options: [], // 分组列表
- code: '',
- focus: -1,
- list: [],
- searchKey: '',
- name: '', // 业务组件搜索关键字
- activeName: 'combination',
- remoteComponentlist: [],
- // 业务组件列表
- bizComponentList: [],
- bizComponenTotalCount: 0
- }
- },
- computed: {
- gridComputed () {
- return this.list.length > 3
- },
- remoteComponentsGridComputed () {
- return this.remoteComponentlist.length > 3
- },
- bizFridComputed () {
- return this.bizComponentList.length > 3
- }
- },
- watch: {
- activeName () {
- this.getCatalogList()
- this.current = 1
- this.size = 10
- this.getDataList()
- }
- },
- mounted () {
- this.remoteComponentlist = [...innerRemoteComponents, ...getRemoteComponents()]
- },
- methods: {
- jumpto () {
- const { href } = this.$router.resolve('/dataRoom-redirect?edit=component')
- window.open(href, '_blank')
- },
- chooseComponent (component) {
- this.focus = cloneDeep(component)
- },
- close () { },
- init () {
- this.dialogVisible = true
- this.current = 1
- this.searchKey = ''
- this.code = ''
- this.focus = -1
- this.getDataList()
- this.getCatalogList()
- },
- // 点击确定
- confirm () {
- this.dialogVisible = false
- if (this.activeName === 'combination') {
- if (Object.keys(this.focus).length) {
- this.$emit('setComponent', this.focus)
- }
- } else if (['remote'].includes(this.activeName)) {
- if (isEmpty(this.focus)) {
- return
- }
- this.$emit('setRemoteComponent', this.focus)
- } if (['bizComponent'].includes(this.activeName)) {
- let config = {
- setting: [],
- option: {}
- }
- if (isEmpty(this.focus)) {
- return
- }
- config.code = this.focus.code
- config.name = this.focus.name
- config = cloneDeep(getRemoteComponentConfig(this.focus.code, this.focus.name))
- const settingContent = cloneDeep(this.resolveStrSetting(this.focus.settingContent))
- config.setting = settingContent.setting
- config.option = settingContent.option
- this.$emit('setRemoteComponent', config)
- // config = getRemoteComponentConfig(this.focus.code, this.focus.name)
- // this.$emit('setRemoteComponent', config)
- }
- },
- getDataList () {
- if (this.activeName === 'combination') {
- this.loading = true
- this.$dataRoomAxios.get('/bigScreen/design/page', {
- parentCode: this.code || null,
- current: this.current,
- size: this.size,
- searchKey: this.searchKey,
- type: 'component'
- })
- .then((data) => {
- this.loading = false
- this.list = data.list
- this.totalCount = data.totalCount
- })
- .catch(() => {
- this.loading = false
- })
- } else if (this.activeName === 'bizComponent') {
- this.loading = true
- getBizComponentPage({
- parentCode: this.code || null,
- current: this.current,
- size: this.size,
- searchKey: this.searchKey,
- name: this.name
- })
- .then((data) => {
- this.loading = false
- this.bizComponentList = data.list
- this.bizComponenTotalCount = data.totalCount
- })
- .catch(() => {
- this.loading = false
- })
- }
- },
- /**
- * 处理当前组件的字符串配置
- */
- resolveStrSetting (settingContent) {
- // eslint-disable-next-line prefer-const
- let option = {}
- // eslint-disable-next-line prefer-const
- let setting = []
- // eslint-disable-next-line prefer-const, no-unused-vars
- let title = []
- // eslint-disable-next-line prefer-const, no-unused-vars
- let data = []
- // eslint-disable-next-line prefer-const
- settingContent = settingContent.replaceAll('const ', '')
- // 去掉 export default及后面代码
- settingContent = settingContent.replace(/export default[\s\S]*/, '')
- eval(settingContent)
- option = {
- data,
- displayOption,
- ...option
- }
- return {
- option,
- setting
- }
- },
- // 获取目录的列表
- getCatalogList () {
- const url = this.activeName === 'combination' ? '/bigScreen/type/list/componentCatalog' : '/bigScreen/type/list/bizComponentCatalog'
- this.$dataRoomAxios.get(url)
- .then((data) => {
- this.options = data
- })
- .catch(() => { })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '../../assets/style/bsTheme.scss';
- .content{
- height: calc(100vh - 290px);
- }
- .big-screen-list-wrap {
- .el-select {
- display: inline-block !important;
- position: relative !important;
- width: auto !important;
- }
- position: relative;
- height: 100%;
- // margin:0 16px;
- // padding: 16px;
- margin-bottom: 56px;
- color: #9ea9b2;
- background-color: var(--bs-background-2) !important;
- .top-search-wrap {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- margin-bottom: 12px;
- .el-input {
- width: 200px;
- margin-right: 20px;
- ::v-deep.el-input__inner {
- background-color: var(--bs-background-1) !important;
- }
- }
- .el-select {
- margin-right: 20px;
- ::v-deep.el-input__inner {
- background-color: var(--bs-background-1) !important;
- }
- }
- }
- .list-wrap {
- /* display: grid; */
- overflow: auto;
- // 间隙自适应
- justify-content: space-around;
- // max-height: calc(100vh - 270px);
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
- grid-gap: 15px;
- .big-screen-card-wrap {
- position: relative;
- height: 230px;
- cursor: pointer;
- &:hover {
- .screen-card__hover {
- height: 180px;
- }
- }
- .screen-card__hover {
- position: absolute;
- z-index: 999;
- top: 0;
- right: 0;
- left: 0;
- display: flex;
- overflow: hidden;
- align-items: center;
- justify-content: center;
- height: 0;
- transition: height 0.4s;
- background: #00000099;
- }
- .focus {
- color: var(--bs-el-text) !important;
- border: 1px solid var(--bs-el-color-primary) !important;
- }
- .big-screen-card-inner {
- overflow: hidden;
- width: 100%;
- height: 100%;
- cursor: pointer;
- background-color: var(--bs-background-2);
- box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
- color: var(--bs-el-title);
- border: 1px solid var(--bs-background-1);
- &:hover {
- color: var(--bs-el-text);
- border: 1px solid var(--bs-el-color-primary);
- }
- .add-big-screen-card-text {
- color: var(--bs-el-color-primary);
- font-size: 24px;
- }
- .big-screen-card-img {
- width: 100%;
- height: 180px;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- ::v-deep.image-slot {
- height: 100%;
- background-color: var(--bs-background-2);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- ::v-deep.el-image__error {
- background-color: #1d1d1d;
- }
- }
- .big-screen-bottom {
- display: flex;
- align-items: center;
- flex-direction: row;
- justify-content: space-between;
- box-sizing: border-box;
- width: 100%;
- /*height: 26px;*/
- padding: 0 10px;
- height: calc(100% - 180px);
- color: var(--bs-el-title);
- background-color: var(--bs-background-2);
- .left-bigscreen-title {
- font-size: 14px;
- overflow: hidden;
- width: 120px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .right-bigscreen-time-title {
- font-size: 14px;
- overflow: hidden;
- width: 140px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .big-screen-card-text {
- font-size: 14px;
- padding: 10px;
- text-align: center;
- color: #333;
- }
- }
- .big-screen-card-inner-add {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- .el-loading-parent--relative {
- position: unset !important;
- }
- .footer-pagination-wrap {
- margin-top: 16px;
- position: absolute;
- width: 100%;
- }
- }
- .bs-pagination {
- ::v-deep .el-input__inner {
- width: 110px !important;
- border: none;
- background: var(--bs-el-background-1);
- }
- }
- .empty {
- width: 100%;
- height: 70%;
- min-height: 300px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- ::v-deep .el-tabs__item {
- color: var(--bs-el-text);
- }
- .error-img-text {
- overflow: hidden;
- padding: 0 10px;
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
- }
- ::v-deep .el-tabs__nav-wrap {
- &:after {
- display: none;
- }
- }
- .empty{
- height: calc(100vh - 430px);
- }
- </style>
|