diff --git a/back/src/components/ren-process-detail/src/ren-process-detail.vue b/back/src/components/ren-process-detail/src/ren-process-detail.vue index 6215354e..860655f2 100644 --- a/back/src/components/ren-process-detail/src/ren-process-detail.vue +++ b/back/src/components/ren-process-detail/src/ren-process-detail.vue @@ -2,7 +2,7 @@ * @Author: hisense.wuhongjian * @Date: 2022-04-11 16:30:04 * @LastEditors: Light - * @LastEditTime: 2022-10-26 11:05:07 + * @LastEditTime: 2022-12-13 11:10:46 * @Description: 告诉大家这是什么 --> diff --git a/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue b/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue index 9733e857..0b2fbbc3 100644 --- a/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue +++ b/back/src/views/modules/hasToDoTasks/AbilityResourceShelf.vue @@ -115,7 +115,7 @@ export default { data () { return { mixinViewModuleOptions: { - getDataListURL: '/act/his/getMyHandledInstancePage', + getDataListURL: '/act/his/getMyHandledInstancePage?ended=1', getDataListIsPage: true, deleteIsBatch: true, deleteIsBatchKey: 'deploymentId' diff --git a/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue b/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue index 1b54ab9b..a2eb4a62 100644 --- a/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue +++ b/back/src/views/modules/hasToDoTasks/AbilityResourcesRemoved.vue @@ -115,7 +115,7 @@ export default { data () { return { mixinViewModuleOptions: { - getDataListURL: '/act/his/getMyHandledInstancePage', + getDataListURL: '/act/his/getMyHandledInstancePage?ended=1', getDataListIsPage: true, deleteIsBatch: true, deleteIsBatchKey: 'deploymentId' diff --git a/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue b/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue index be222352..f0aebf5b 100644 --- a/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue +++ b/back/src/views/modules/hasToDoTasks/ApplicationForCompetencyRequirements.vue @@ -115,7 +115,7 @@ export default { data () { return { mixinViewModuleOptions: { - getDataListURL: '/act/his/getMyHandledInstancePage', + getDataListURL: '/act/his/getMyHandledInstancePage?ended=1', getDataListIsPage: true, deleteIsBatch: true, deleteIsBatchKey: 'deploymentId' diff --git a/back/src/views/modules/hasToDoTasks/CommentModeration.vue b/back/src/views/modules/hasToDoTasks/CommentModeration.vue index cbb0d0fb..9f9597ae 100644 --- a/back/src/views/modules/hasToDoTasks/CommentModeration.vue +++ b/back/src/views/modules/hasToDoTasks/CommentModeration.vue @@ -115,7 +115,7 @@ export default { data () { return { mixinViewModuleOptions: { - getDataListURL: '/act/his/getMyHandledInstancePage', + getDataListURL: '/act/his/getMyHandledInstancePage?ended=1', getDataListIsPage: true, deleteIsBatch: true, deleteIsBatchKey: 'deploymentId' diff --git a/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue b/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue index 26de944d..99bc8075 100644 --- a/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue +++ b/back/src/views/modules/hasToDoTasks/CompetencyApplication.vue @@ -116,7 +116,7 @@ export default { data () { return { mixinViewModuleOptions: { - getDataListURL: '/act/his/getMyHandledInstancePage', + getDataListURL: '/act/his/getMyHandledInstancePage?ended=1', getDataListIsPage: true, deleteIsBatch: true, deleteIsBatchKey: 'deploymentId' diff --git a/back/src/views/modules/notice/PortalAnnouncement.vue b/back/src/views/modules/notice/PortalAnnouncement.vue index 1fe26f22..9de92679 100644 --- a/back/src/views/modules/notice/PortalAnnouncement.vue +++ b/back/src/views/modules/notice/PortalAnnouncement.vue @@ -3,7 +3,7 @@
- + {{ $t('query') }} @@ -23,10 +23,17 @@ @@ -38,7 +45,7 @@
@@ -60,10 +67,11 @@ :visible.sync="dialogVisible2" width="30%" :close-on-click-modal="false"> - 天 + 取 消 确 定 @@ -120,11 +128,12 @@ export default { handleClose () { this.dialogVisible = false this.dialogVisible2 = false - this.submitData.content = '' + this.submitData = { + content: '' + } this.getCycle() }, submit () { - console.log(this.submitData) if (this.submitData.content.length < 6) { this.$message({ message: '最少发布6个字的公告!', @@ -132,10 +141,15 @@ export default { }) return } - this.$http.post('/sysnoticemanagement', this.submitData).then(res => { - console.log('获取通知数据', res.data.data) - this.clear() - }) + if (this.submitData.id) { + this.$http.post('/sysnoticemanagement/update', this.submitData).then(res => { + this.clear() + }) + } else { + this.$http.post('/sysnoticemanagement', this.submitData).then(res => { + this.clear() + }) + } }, submitCycle () { this.$http.put('/sys/dict/data', { @@ -156,23 +170,16 @@ export default { this.getCycle() }, deleteHandle (item) { - console.log(item) + console.log('点击', item) this.$http.post('/sysnoticemanagement/delete', [item.id]).then(res => { this.clear() }) }, - viewHandle (row) { - // 路由参数 - const routeParams = { - routeName: `${this.$route.name}__${row.id}`, - title: this.$t('notice.view1'), - path: 'notice/notice-view', - params: { - id: row.id - } - } - // 动态路由 - addDynamicRoute(routeParams, this.$router) + update (row) { + console.log(row) + this.submitData.id = row.id + this.submitData.content = row.content + this.dialogVisible = true } }, created () { diff --git a/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue b/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue index 955f18f6..4d649f4e 100644 --- a/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue +++ b/back/src/views/modules/putOnTheShelf/components/inputSelectCheckbox.vue @@ -19,7 +19,7 @@ js: {{item.dictLabel}} --> +
+ + +
+ + diff --git a/back/src/views/modules/sys/role.vue b/back/src/views/modules/sys/role.vue index 72da927a..d08cb4dd 100644 --- a/back/src/views/modules/sys/role.vue +++ b/back/src/views/modules/sys/role.vue @@ -73,12 +73,12 @@ export default { AddOrUpdate }, methods: { - resetHandle() { - this.dataForm.name = ''; + resetHandle () { + this.dataForm.name = '' this.$nextTick(() => { this.getDataList() }) - }, + } } } diff --git a/back/src/views/modules/workBench/components/bottom-view.vue b/back/src/views/modules/workBench/components/bottom-view.vue index d52be568..e3adf2d0 100644 --- a/back/src/views/modules/workBench/components/bottom-view.vue +++ b/back/src/views/modules/workBench/components/bottom-view.vue @@ -61,8 +61,8 @@ export default { }, { title: '单位', - key: 'deptContacts', - dataIndex: 'deptContacts', + key: 'deptName', + dataIndex: 'deptName', width: 144 }, { diff --git a/back/src/views/modules/workBench/components/dept-todo-view.vue b/back/src/views/modules/workBench/components/dept-todo-view.vue index 15a3fbce..d35d65cf 100644 --- a/back/src/views/modules/workBench/components/dept-todo-view.vue +++ b/back/src/views/modules/workBench/components/dept-todo-view.vue @@ -28,10 +28,9 @@ v-if="dataInfo.type === 'todo'" :content=" (item.userDeptName || '--') + - '提交“' + - (item.applyTitle || '--') + - '”' + - (item.processDefinitionName || '--') + + '提交' + + (item.applyTitle?'“'+item.applyTitle+'”': '') + + (item.processDefinitionName || item.resourceType || '--') + (item.processDefinitionName !== '能力申请' && item.processDefinitionName !== '能力需求申请' ? '申请' @@ -46,14 +45,13 @@ {{ (item.userDeptName || '--') + - '提交“' + - (item.applyTitle || '--') + - '”' + - (item.processDefinitionName || '--') + - (item.processDefinitionName !== '能力申请' && - item.processDefinitionName !== '能力需求申请' - ? '申请' - : '') + '提交' + + (item.applyTitle?'“'+item.applyTitle+'”': '') + + (item.processDefinitionName || item.resourceType || '--') + + (item.processDefinitionName !== '能力申请' && + item.processDefinitionName !== '能力需求申请' + ? '申请' + : '') }} @@ -64,7 +62,7 @@ :content=" (item.startUserDeptName || '--') + '提交的' + - (item.processDefinitionName || '--') + + (item.processDefinitionName || item.resourceType || '--') + (item.processDefinitionName !== '能力申请' && item.processDefinitionName !== '能力需求申请' ? '申请' @@ -79,7 +77,7 @@ {{ (item.startUserDeptName || '--') + '提交的' + - (item.processDefinitionName || '--') + + (item.processDefinitionName || item.resourceType || '--') + (item.processDefinitionName !== '能力申请' && item.processDefinitionName !== '能力需求申请' ? '申请' diff --git a/back/src/views/modules/workBench/workBench.vue b/back/src/views/modules/workBench/workBench.vue index 6c11bf07..db89b9e5 100644 --- a/back/src/views/modules/workBench/workBench.vue +++ b/back/src/views/modules/workBench/workBench.vue @@ -90,7 +90,7 @@ export default { created () { bus.$off('workInit') bus.$on('workInit', () => { - console.log("刷新工作台===================") + console.log('刷新工作台===================') this.getToDo() this.getHasToDo() }) @@ -140,7 +140,7 @@ export default { // page: 1 // } this.loadingHasToDo = true - this.$http.get('/act/his/getMyHandledInstancePage?page=1&limit=5').then(res => { + this.$http.get('/act/his/getMyHandledInstancePage?ended=1?page=1&limit=5').then(res => { this.loadingHasToDo = false this.hasToDodoData.list = res.data.data.list || [] this.hasToDodoData.num = res.data.data.total || 0 diff --git a/front/public/static/css/modal.css b/front/public/static/css/modal.css index 130de93b..07187f4d 100644 --- a/front/public/static/css/modal.css +++ b/front/public/static/css/modal.css @@ -89,6 +89,12 @@ z-index: 10010!important; .ant-tooltip{ z-index: 10010!important; } +.ant-image-preview-wrap { + z-index: 10012!important; +} +.ant-picker-dropdown { + z-index: 10010!important; +} .model-container .confirmChrome { width: 140px; diff --git a/front/src/App.vue b/front/src/App.vue index d79a7ccd..2b0dc11b 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -2,7 +2,7 @@ * @Author: hisense.wuhongjian * @Date: 2022-05-06 11:12:0011-18 19:07:53 * @LastEditors: Light - * @LastEditTime: 2022-12-08 13:43:12 + * @LastEditTime: 2022-12-15 13:48:34 * @Description: 告诉大家这是什么 --> 申请使用 - + diff --git a/front/src/views/detailsAll/components/Application/ApplicationTopDetails.vue b/front/src/views/detailsAll/components/Application/ApplicationTopDetails.vue index e273bad5..8cb9ea2b 100644 --- a/front/src/views/detailsAll/components/Application/ApplicationTopDetails.vue +++ b/front/src/views/detailsAll/components/Application/ApplicationTopDetails.vue @@ -62,6 +62,12 @@ diff --git a/front/src/views/detailsAll/components/Business/BusinessTopDetails.vue b/front/src/views/detailsAll/components/Business/BusinessTopDetails.vue index ff59cccb..57e8dd97 100644 --- a/front/src/views/detailsAll/components/Business/BusinessTopDetails.vue +++ b/front/src/views/detailsAll/components/Business/BusinessTopDetails.vue @@ -56,7 +56,8 @@ 申请使用 - + diff --git a/front/src/views/detailsAll/components/Developer/DeveloperTopDetails.vue b/front/src/views/detailsAll/components/Developer/DeveloperTopDetails.vue index e939e841..18243621 100644 --- a/front/src/views/detailsAll/components/Developer/DeveloperTopDetails.vue +++ b/front/src/views/detailsAll/components/Developer/DeveloperTopDetails.vue @@ -54,7 +54,8 @@ 申请使用 - + {{ props.dataList.isInShoppingCart ? '已' : '' }}加入购物车 diff --git a/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelInformation.vue b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelInformation.vue new file mode 100644 index 00000000..64090a6c --- /dev/null +++ b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelInformation.vue @@ -0,0 +1,178 @@ + + + + + + diff --git a/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelInputData.vue b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelInputData.vue new file mode 100644 index 00000000..f352d604 --- /dev/null +++ b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelInputData.vue @@ -0,0 +1,108 @@ + + + + + + + diff --git a/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelNavigation.vue b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelNavigation.vue new file mode 100644 index 00000000..97a5485d --- /dev/null +++ b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelNavigation.vue @@ -0,0 +1,88 @@ + + + + diff --git a/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelTopDetails.vue b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelTopDetails.vue new file mode 100644 index 00000000..e2f7bdab --- /dev/null +++ b/front/src/views/detailsAll/components/GovernanceModel/GovernanceModelTopDetails.vue @@ -0,0 +1,189 @@ + + + + diff --git a/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue b/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue index 3de36d1f..e2ca4100 100644 --- a/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue +++ b/front/src/views/detailsAll/components/LayerService/LayerServiceTopDetails.vue @@ -62,6 +62,8 @@ (val) => val.attrType == '外部服务地址' ).length === 0 " + :style="{ cursor: !props.dataList.isInShoppingCart ? 'pointer': 'not-allowed', }" + > {{ props.dataList.isInShoppingCart ? '已' : '' }}加入申购车 diff --git a/front/src/views/detailsAll/components/StandardDoc/StandardDocInformation.vue b/front/src/views/detailsAll/components/StandardDoc/StandardDocInformation.vue new file mode 100644 index 00000000..e56cf76c --- /dev/null +++ b/front/src/views/detailsAll/components/StandardDoc/StandardDocInformation.vue @@ -0,0 +1,203 @@ + + + + + + diff --git a/front/src/views/detailsAll/components/StandardDoc/StandardDocTopDetails.vue b/front/src/views/detailsAll/components/StandardDoc/StandardDocTopDetails.vue new file mode 100644 index 00000000..319755d1 --- /dev/null +++ b/front/src/views/detailsAll/components/StandardDoc/StandardDocTopDetails.vue @@ -0,0 +1,169 @@ + + + + diff --git a/front/src/views/home/DetailsPageconetent.vue b/front/src/views/home/DetailsPageconetent.vue index d4dd53e1..346c6eaa 100644 --- a/front/src/views/home/DetailsPageconetent.vue +++ b/front/src/views/home/DetailsPageconetent.vue @@ -1006,7 +1006,6 @@ paramsGetResources, flag ) - getAppResources() } //跳转链接 @@ -1167,10 +1166,8 @@ } console.log('selectSubType------------>', selectSubType) console.log('ListContent.records------------>', ListContent.records) - ListContent.records.forEach((val) => { console.log('val-----ddd------->', val) - if (!val) { return } @@ -1202,7 +1199,6 @@ } } }) - // 智能算法-特殊处理 if (whoShow1.value.itShowXiHaiAn) { if (!storageSearchInfo) { @@ -1341,7 +1337,6 @@ globalData.data = [] } select = router.currentRoute.value.query.select - if ( (select == '应用资源' && (paramsGetResources.orderField == '' || @@ -1649,7 +1644,6 @@ val.createTime = val.createTime.split('.')[0] val.createDate = val.createTime // 发布时间 }) - console.log('接口数据', data) resourceList.data = data || [] console.log('接口数据2', resourceList.data) @@ -1820,7 +1814,6 @@ listKey.value++ } } - // 如果有搜索条件但是没有类型 全局搜索 if (str && !router.currentRoute.value.query.select) { globalSearch() @@ -2029,11 +2022,9 @@ font-family: 'webfont'; src: url('~@/assets/capacitySquare/webfont.ttf'); } - .resultListSearchInput-father { background: #f3f5f9; padding: 0.2rem; - .resultListSearchInput-son { background: #fff; padding: 0.2rem 0.2rem 0rem 0.3rem; @@ -2054,17 +2045,14 @@ } } } - .resultListSearchInput { margin-left: 0.1rem; - :deep(.ant-input) { width: 4rem; height: 0.32rem; background: #fff; border-radius: 0.02rem; } - :deep(.ant-input-search-button) { width: 0.8rem; height: 0.32rem; @@ -2076,12 +2064,10 @@ line-height: 0.32rem; margin-left: 0.1rem; } - :deep(.ant-input-group-addon) { left: 0 !important; } } - .button-reset { border: 0; outline: none; @@ -2098,7 +2084,6 @@ margin-left: 2.5rem; cursor: pointer; } - .details-pageconetent { height: 100%; width: 100%; @@ -2108,7 +2093,6 @@ margin-top: 0.67rem; position: relative; background: rgba(245, 243, 243, 0.3); - .details-pageconetent-left { // max-height: 8.5rem; height: 100%; @@ -2122,7 +2106,6 @@ margin-right: 0.17rem; overflow: auto; } - .top { min-height: 7.2rem; position: relative; @@ -2134,33 +2117,26 @@ justify-content: left; margin-left: 2.5rem; background: #f3f5f9; - .pagination { background: #f3f5f9; padding-bottom: 0.6rem; } - .jichusheshi { height: 4.45rem; - .yunziyuan { width: 100%; position: relative; - .shuoming { position: absolute; right: 0.2rem; top: 0.15rem; font-size: 0.12rem; } - .yunziyuan-title { display: flex; align-items: center; - .tupian { } - .title { margin-left: 0.1rem; font-weight: 600; @@ -2168,44 +2144,35 @@ cursor: pointer; } } - .fenlei { display: flex; margin-left: 0.2rem; margin-right: 0.3rem; justify-content: space-between; } - .keyongziyuan { display: flex; justify-content: space-between; margin-left: 0.3rem; margin-right: 0.3rem; - div { display: flex; - div:last-child { font-weight: 600; } } } } - .yunziyuan > div { margin-bottom: 0.1rem; } - .shipin { width: 100%; - .shipin-title { display: flex; align-items: center; - .tupian { } - .title { margin-left: 0.1rem; font-weight: 600; @@ -2213,58 +2180,47 @@ cursor: pointer; } } - .fenlei { display: flex; margin-left: 0.2rem; - div { margin-right: 0.6rem; } - .shuzi { font-weight: 600; } } } - .shipin > div { margin-bottom: 0.1rem; } } - .jichusheshi > div { padding-top: 0.1rem; border-radius: 0.04rem; margin-bottom: 0.2rem; padding-bottom: 0.4rem; } - .shujuziyuan { display: flex; flex-direction: column; justify-content: center; padding-top: 0.4rem; - .yunziyuan { width: 100%; position: relative; - .shuoming { position: absolute; right: 0.2rem; top: 0.15rem; font-size: 0.12rem; } - .yunziyuan-title { display: flex; align-items: center; margin-left: 0.2rem; - .tupian { } - .title { margin-left: 0.1rem; font-weight: 600; @@ -2272,35 +2228,29 @@ cursor: pointer; } } - .fenlei { display: flex; margin-left: 0.2rem; margin-right: 0.3rem; justify-content: space-between; } - .keyongziyuan { display: flex; justify-content: space-between; margin-left: 0.3rem; margin-right: 0.3rem; - div { display: flex; - div:last-child { font-weight: 600; } } } } - .yunziyuan > div { margin-bottom: 0.1rem; } } - .shujuziyuan > div { background: #eaf4ff; padding-top: 0.1rem; @@ -2308,7 +2258,6 @@ margin-bottom: 0.2rem; padding-bottom: 0.4rem; } - .top-title { display: flex; justify-content: space-around; @@ -2318,47 +2267,39 @@ color: #000000; line-height: 0.34rem; margin-bottom: 0.2rem; - .photo { display: inline-block; height: 0.44rem; width: 0.44rem; margin-right: 0.1rem; } - div { padding: 0 0.1rem; cursor: pointer; display: flex; align-items: center; } - div:hover { color: #0087ff; } - .sel { font-weight: 600; color: #0087ff; border-bottom: 0.02rem solid #0087ff; } } - .top-content-father { width: 100%; padding: 0 0.2rem 0.2rem 0.2rem; background: #f3f5f9; margin-bottom: 0.2rem; - .top-content-son { background: #fff; padding: 0.2rem 0; } - .top-content { display: flex; margin-top: 0rem; - span:nth-child(1) { display: inline-block; position: relative; @@ -2367,7 +2308,6 @@ text-align: center; vertical-align: middle; } - .leixingsumfather { margin-left: -13px; width: 9.4rem; @@ -2375,17 +2315,14 @@ height: 0.3014rem; overflow: hidden; } - .leixingsumfather2 { width: 9.2rem; } - .leixingsum { display: inline-block; cursor: pointer; text-align: center; margin-top: 0.05rem; - .ant-tag-checkable { width: 1rem; height: 0.25rem; @@ -2403,13 +2340,11 @@ text-align: center; line-height: 0.14rem; } - :deep(.ant-tag-checkable-checked) { margin-left: 0.15rem; margin-right: 0.15rem; text-align: center; } - .ant-tag-checkable:active, .ant-tag-checkable-checked { // width: 0.85rem; @@ -2421,7 +2356,6 @@ border-radius: 0.16rem; } } - .active { font-family: Alibaba PuHuiTi; font-weight: 500; @@ -2429,38 +2363,32 @@ color: #ffffff; } } - .top-content:nth-child(1) { margin-top: 0rem !important; } } } } - .shrinkTag { width: 0.5rem; display: flex; justify-content: center; align-items: flex-end; margin-bottom: 0.05rem; - span { cursor: pointer; } } - .shrink { height: unset !important; overflow: unset !important; } - .talk-monitor { position: fixed; bottom: 0.5rem; right: 0.1rem; z-index: 9999; cursor: pointer; - i { width: 0.64rem; height: 0.64rem; @@ -2469,7 +2397,6 @@ background-size: cover; } } - .abilitySquare { width: 0.7rem; height: 0.7rem; @@ -2485,11 +2412,9 @@ right: 0.1rem; cursor: pointer; background: #e3edfc; - p { margin: 0; } - p:nth-child(1) { height: 0.35rem; width: 0.36rem; @@ -2497,7 +2422,6 @@ background-size: 100% 100%; background-position: center; } - ul { background: #ffffff; font-family: webfont; @@ -2510,7 +2434,6 @@ left: -0.62rem; padding: 0; margin: 0; - li { list-style: none; color: #0061ec; @@ -2519,24 +2442,20 @@ padding-left: 0.4rem; border-bottom: 0.01rem solid #dfd9d9; } - li:nth-of-type(1) { background: url('~@/assets/home/appIcon.png') no-repeat; background-position: 0.18rem center; } - li:nth-of-type(2) { background: url('~@/assets/home/AiIcon.png') no-repeat; background-position: 0.18rem center; } - li:nth-of-type(3) { border-bottom: none; background: url('~@/assets/home/GisIcon.png') no-repeat; background-position: 0.18rem center; } } - ul::after { content: ''; position: absolute; @@ -2547,7 +2466,6 @@ border: 0.13rem solid; border-color: #fff transparent transparent transparent; } - ul::before { content: ''; position: absolute; @@ -2558,26 +2476,21 @@ border: 0.13rem solid; border-color: #dfd9d9 transparent transparent transparent; } - @keyframes ulShowTime { 0% { transform: scale(0); } - 100% { transform: scale(0); } } } - .top-content-father { width: 10.87rem; padding-left: 0.2rem; - .top-content { display: flex; margin-top: 0.23rem; - span:nth-child(1) { display: inline-block; position: relative; @@ -2589,21 +2502,18 @@ font-size: 0.16rem; margin-left: 0.3rem; } - .leixingsumfather { width: 7.7rem; display: inline-block; height: 0.3014rem; overflow: hidden; } - .leixingsum { // width: 1rem; display: inline-block; cursor: pointer; text-align: center; margin-top: 0.05rem; - .ant-tag-checkable { width: 1rem; height: 0.25rem; @@ -2621,13 +2531,11 @@ text-align: center; line-height: 0.14rem; } - :deep(.ant-tag-checkable-checked) { margin-left: 0.15rem; margin-right: 0.15rem; text-align: center; } - .ant-tag-checkable:active, .ant-tag-checkable-checked { width: 0.85rem; @@ -2638,7 +2546,6 @@ border-radius: 0.16rem; } } - .active { font-family: Alibaba PuHuiTi; font-weight: 500; @@ -2646,12 +2553,10 @@ color: #ffffff; } } - .top-content:nth-child(1) { margin-top: 0.41rem !important; } } - :deep(.ant-card-grid) { overflow: hidden; white-space: nowrap; diff --git a/front/src/views/home/components/DetailsPageResource.vue b/front/src/views/home/components/DetailsPageResource.vue index 157a3605..9dd2be1d 100644 --- a/front/src/views/home/components/DetailsPageResource.vue +++ b/front/src/views/home/components/DetailsPageResource.vue @@ -62,7 +62,7 @@ // } .pageResource { position: absolute; - top: 0.68rem; + top: 1.2rem; left: -5.37rem; width: 176%; height: 90.5%; diff --git a/front/src/views/home/components/header.vue b/front/src/views/home/components/header.vue index 02a63db3..851592a9 100644 --- a/front/src/views/home/components/header.vue +++ b/front/src/views/home/components/header.vue @@ -92,7 +92,9 @@
查看更多
- +