Compare commits
No commits in common. "073713cf95dba33a1ae7123f728f372c8544bd74" and "3af92de1ec248d2e0ac28fb41c38417acc2585ac" have entirely different histories.
073713cf95
...
3af92de1ec
|
@ -248,6 +248,7 @@ export default {
|
||||||
|
|
||||||
this.dataForm.taskId = this.$route.params.taskId
|
this.dataForm.taskId = this.$route.params.taskId
|
||||||
if (type === '同意') {
|
if (type === '同意') {
|
||||||
|
debugger
|
||||||
// if (this.input !== '') {
|
// if (this.input !== '') {
|
||||||
console.log('this.dataForm', this.dataForm)
|
console.log('this.dataForm', this.dataForm)
|
||||||
const params = qs.stringify({
|
const params = qs.stringify({
|
||||||
|
@ -266,7 +267,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('applicationforRequirementsInit')
|
bus.$emit('applicationforRequirementsInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
@ -302,7 +302,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('applicationforRequirementsInit')
|
bus.$emit('applicationforRequirementsInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
|
|
@ -174,8 +174,7 @@ export default {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('commentInit')
|
bus.$emit('AbilityResourcesRemovedInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
@ -210,8 +209,7 @@ export default {
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('commentInit')
|
bus.$emit('AbilityResourcesRemovedInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
@ -261,7 +259,20 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
|
// this.dataForm = this.$router.currentRoute.params.id
|
||||||
this.init()
|
this.init()
|
||||||
|
console.log('fromList', this.$router.currentRoute.params.businessKey)
|
||||||
|
// this.dataForm = this.$router.currentRoute.params.params.params.resourceDTO
|
||||||
|
var callbacks = {
|
||||||
|
startProcessSuccessCallback: this.closeCurrentTab,
|
||||||
|
startProcessErrorCallback: this.startProcessErrorCallback,
|
||||||
|
taskHandleSuccessCallback: this.closeCurrentTab,
|
||||||
|
taskHandleErrorCallback: this.taskHandleErrorCallback,
|
||||||
|
formSaveSuccessCallback: null,
|
||||||
|
formSaveErrorCallback: null
|
||||||
|
}
|
||||||
|
// 初始化综合组件
|
||||||
|
this.initProcessMultiple(callbacks)
|
||||||
this.taskId = this.$route.params.taskId
|
this.taskId = this.$route.params.taskId
|
||||||
this.dataForm.taskId = this.$route.params.taskId
|
this.dataForm.taskId = this.$route.params.taskId
|
||||||
},
|
},
|
||||||
|
|
|
@ -252,7 +252,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('AbilityResourcesRemovedInit')
|
bus.$emit('AbilityResourcesRemovedInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
@ -288,7 +287,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('AbilityResourcesRemovedInit')
|
bus.$emit('AbilityResourcesRemovedInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
|
|
@ -128,7 +128,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import bus from '@/views/bus.js'
|
|
||||||
import mixinViewModule from '@/mixins/view-module'
|
import mixinViewModule from '@/mixins/view-module'
|
||||||
import processModule from '@/mixins/process-module'
|
import processModule from '@/mixins/process-module'
|
||||||
export default {
|
export default {
|
||||||
|
@ -151,14 +150,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {},
|
components: {},
|
||||||
created () {
|
|
||||||
bus.$off('commentInit')
|
|
||||||
bus.$on('commentInit', () => {
|
|
||||||
debugger
|
|
||||||
this.getDataList()
|
|
||||||
bus.$emit('updateTaskNum')
|
|
||||||
})
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
// 处理
|
// 处理
|
||||||
taskHandle (row) {
|
taskHandle (row) {
|
||||||
|
|
|
@ -269,7 +269,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('abilityResourceShelfInit')
|
bus.$emit('abilityResourceShelfInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
@ -307,7 +306,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('abilityResourceShelfInit')
|
bus.$emit('abilityResourceShelfInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
|
|
@ -443,7 +443,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('competencyApplicationInit')
|
bus.$emit('competencyApplicationInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
@ -479,7 +478,6 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bus.$emit('competencyApplicationInit')
|
bus.$emit('competencyApplicationInit')
|
||||||
bus.$emit('workInit')
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('prompt.success'),
|
message: this.$t('prompt.success'),
|
||||||
type: 'success',
|
type: 'success',
|
||||||
|
|
|
@ -35,7 +35,7 @@ import CenterView from '../workBench/components/center-view.vue'
|
||||||
import DeptChartView from '../workBench/components/dept-chart-view.vue'
|
import DeptChartView from '../workBench/components/dept-chart-view.vue'
|
||||||
import deptTodoView from '../workBench/components/dept-todo-view.vue'
|
import deptTodoView from '../workBench/components/dept-todo-view.vue'
|
||||||
import * as Apis from './api.js'
|
import * as Apis from './api.js'
|
||||||
import bus from '@/views/bus.js'
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
deptTodoView,
|
deptTodoView,
|
||||||
|
@ -87,14 +87,6 @@ export default {
|
||||||
loadingRequire: false
|
loadingRequire: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
|
||||||
bus.$off('workInit')
|
|
||||||
bus.$on('workInit', () => {
|
|
||||||
console.log("刷新工作台===================")
|
|
||||||
this.getToDo()
|
|
||||||
this.getHasToDo()
|
|
||||||
})
|
|
||||||
},
|
|
||||||
mounted () {
|
mounted () {
|
||||||
// 部门待办
|
// 部门待办
|
||||||
this.getToDo()
|
this.getToDo()
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<div class="left-list1">排行</div>
|
<div class="left-list1">排行</div>
|
||||||
<div class="left-list2">部门名称</div>
|
<div class="left-list2">部门名称</div>
|
||||||
<div class="left-list1">应用数</div>
|
<div class="left-list1">应用数</div>
|
||||||
<div class="left-list1" style="color: #1ffefd">节省金额</div>
|
<div class="left-list1" style="color: #1ffefd">贡献金额</div>
|
||||||
</div>
|
</div>
|
||||||
<div style=" height: 1.7rem; overflow-y: auto;overflow-x: hidden;width: 100%;">
|
<div style=" height: 1.7rem; overflow-y: auto;overflow-x: hidden;width: 100%;">
|
||||||
<div class="left-list" v-for="(item, index) in top5DeptFundList">
|
<div class="left-list" v-for="(item, index) in top5DeptFundList">
|
||||||
|
@ -105,7 +105,7 @@
|
||||||
<div class="left-list1">序号</div>
|
<div class="left-list1">序号</div>
|
||||||
<div class="left-list2">部门名称</div>
|
<div class="left-list2">部门名称</div>
|
||||||
<div class="left-list1">应用数</div>
|
<div class="left-list1">应用数</div>
|
||||||
<div class="left-list1" style="color: #1ffefd">节省金额</div>
|
<div class="left-list1" style="color: #1ffefd">贡献金额</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="height: 200px; overfolw-y: auto">
|
<div style="height: 200px; overfolw-y: auto">
|
||||||
<div
|
<div
|
||||||
|
|
|
@ -160,7 +160,7 @@
|
||||||
height: 1.8rem;
|
height: 1.8rem;
|
||||||
}
|
}
|
||||||
.header1 {
|
.header1 {
|
||||||
top: 70px;
|
top: 78px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 795px;
|
left: 795px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
<template #renderItem="{ item }">
|
<template #renderItem="{ item }">
|
||||||
<a-list-item>
|
<a-list-item>
|
||||||
<div class="toptitle">
|
<div class="toptitle">
|
||||||
<a-tooltip placement="topLeft" v-if="item.demandSubject.length>20">
|
<a-tooltip placement="topLeft">
|
||||||
<template #title>{{ item.demandSubject }}</template>
|
<template #title>{{ item.demandSubject }}</template>
|
||||||
<span
|
<span
|
||||||
@click="showDetail(item)"
|
@click="showDetail(item)"
|
||||||
|
@ -38,19 +38,15 @@
|
||||||
{{ item.demandSubject }}
|
{{ item.demandSubject }}
|
||||||
</span>
|
</span>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<span v-else>
|
|
||||||
{{ item.demandSubject }}
|
|
||||||
</span>
|
|
||||||
<span class="time">{{ item.createDate }}</span>
|
<span class="time">{{ item.createDate }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<a-tooltip placement="topLeft">
|
||||||
<div class="bottomdesc" v-if="item.demandDetails.length<100">
|
<template #title>描述: {{ item.demandDetails }}</template>
|
||||||
|
<div class="bottomdesc">
|
||||||
描述: {{ item.demandDetails || '--' }}
|
描述: {{ item.demandDetails || '--' }}
|
||||||
</div>
|
</div>
|
||||||
<div class="bottomdesc" v-else>
|
</a-tooltip>
|
||||||
描述: {{ item.demandDetails.slice(0,100) }}...<span style="cursor:pointer;color:#1492ff" @click="showDetail(item)">查看更多>></span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</a-list-item>
|
</a-list-item>
|
||||||
</template>
|
</template>
|
||||||
</a-list>
|
</a-list>
|
||||||
|
@ -198,7 +194,6 @@ onMounted(() => {
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
||||||
.main-cont {
|
.main-cont {
|
||||||
margin-top: 64px;
|
margin-top: 64px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -265,7 +260,6 @@ onMounted(() => {
|
||||||
box-shadow: 10px 8px 10px 3px #9dc6ea;
|
box-shadow: 10px 8px 10px 3px #9dc6ea;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
.toptitle {
|
.toptitle {
|
||||||
cursor: pointer;
|
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
& > span:first-child {
|
& > span:first-child {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
|
@ -293,7 +287,7 @@ onMounted(() => {
|
||||||
.bottomdesc {
|
.bottomdesc {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
/*设置为弹性盒子*/
|
/*设置为弹性盒子*/
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 1;
|
||||||
/*最多显示2行*/
|
/*最多显示2行*/
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
/*超出隐藏*/
|
/*超出隐藏*/
|
||||||
|
|
|
@ -9,13 +9,13 @@
|
||||||
<div class="algorithm-top-details">
|
<div class="algorithm-top-details">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<a-tooltip placement="top" v-if="(props.dataList.name.length>20)">
|
<a-tooltip placement="top">
|
||||||
<template #title>{{ props.dataList.name }}</template>
|
<template #title>{{ props.dataList.name }}</template>
|
||||||
<span class="name">
|
<span class="name">
|
||||||
{{ props.dataList.name }}
|
{{ props.dataList.name }}
|
||||||
</span>
|
</span>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<span class="name" v-else>{{ props.dataList.name }}</span>
|
<!-- <span class="name">{{ props.dataList.name }}</span> -->
|
||||||
<div class="label-content">
|
<div class="label-content">
|
||||||
<p class="lable-father">
|
<p class="lable-father">
|
||||||
<span class="label" v-if="props.dataList.type">
|
<span class="label" v-if="props.dataList.type">
|
||||||
|
@ -27,54 +27,28 @@
|
||||||
<span class="label" v-if="props.dataList.shareCondition">
|
<span class="label" v-if="props.dataList.shareCondition">
|
||||||
{{ props.dataList.shareCondition }}
|
{{ props.dataList.shareCondition }}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <span class="label">免费</span> -->
|
<!-- <span class="label">免费</span> -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<!-- <a-tooltip placement="top">
|
<!-- <a-tooltip placement="top">
|
||||||
<template #title>应用领域:{{ applicationArea }}</template>
|
<template #title>应用领域:{{ applicationArea }}</template>
|
||||||
<div>应用领域:{{ applicationArea }}</div>
|
<div>应用领域:{{ applicationArea }}</div>
|
||||||
</a-tooltip> -->
|
</a-tooltip> -->
|
||||||
<!-- <a-tooltip placement="top">
|
<a-tooltip placement="top">
|
||||||
<template #title>{{ props.dataList.description }}</template>
|
<template #title>{{ props.dataList.description }}</template>
|
||||||
<div>
|
<div>
|
||||||
{{ props.dataList.description }}
|
{{ props.dataList.description }}
|
||||||
</div>
|
</div>
|
||||||
</a-tooltip> -->
|
</a-tooltip>
|
||||||
<div class="bottomdesc" v-if="props.dataList.description.length < 200">
|
|
||||||
场景描述: {{ props.dataList.description || '--' }}
|
|
||||||
</div>
|
|
||||||
<div class="bottomdesc" v-else-if="dowmOrUp === '展开>>'">
|
|
||||||
场景描述: {{ props.dataList.description.slice(0, 200) }}...
|
|
||||||
<span
|
|
||||||
style="cursor: pointer; color: rgb(241 211 112)"
|
|
||||||
@click="showDetail(dowmOrUp)"
|
|
||||||
>
|
|
||||||
{{ dowmOrUp }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="bottomdesc1" v-else>
|
|
||||||
场景描述: {{ props.dataList.description }}
|
|
||||||
<span
|
|
||||||
style="cursor: pointer; color: rgb(241 211 112)"
|
|
||||||
@click="showDetail(dowmOrUp)"
|
|
||||||
>
|
|
||||||
{{ dowmOrUp }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div style="padding-top:20px">
|
<div style="padding-top:20px">
|
||||||
<span >场景入口:</span>
|
<span >场景入口:</span>
|
||||||
<span
|
<span style="margin-left:10px;cursor: pointer; text-decoration: underline;"
|
||||||
style="
|
@click="openScene(props.dataList.sceneUrl)">{{(props.dataList.sceneUrl)}}</span>
|
||||||
margin-left: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
text-decoration: underline;
|
|
||||||
"
|
|
||||||
@click="openScene(props.dataList.sceneUrl)"
|
|
||||||
>
|
|
||||||
{{ props.dataList.sceneUrl }}
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom" v-if="props.dataList.id">
|
<div class="bottom" v-if="props.dataList.id">
|
||||||
|
@ -106,7 +80,9 @@
|
||||||
</a-button> -->
|
</a-button> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right"></div>
|
<div class="right">
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
@ -120,16 +96,6 @@ import { message } from 'ant-design-vue'
|
||||||
// 获取当前路由地址
|
// 获取当前路由地址
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
let dowmOrUp = ref('展开>>') //展开 down ; 收起 up
|
|
||||||
|
|
||||||
//文字展开或收起
|
|
||||||
const showDetail = (val) => {
|
|
||||||
if (val === '展开>>') {
|
|
||||||
dowmOrUp.value = '收起<<'
|
|
||||||
} else {
|
|
||||||
dowmOrUp.value = '展开>>'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
|
@ -160,7 +126,7 @@ const addShoppingCart = () => {
|
||||||
}
|
}
|
||||||
//进入场景入口
|
//进入场景入口
|
||||||
const openScene = (val) => {
|
const openScene = (val) => {
|
||||||
window.open(val, '_blank')
|
window.open(val, "_blank");
|
||||||
}
|
}
|
||||||
// // 立即申请
|
// // 立即申请
|
||||||
function toView() {
|
function toView() {
|
||||||
|
@ -339,29 +305,25 @@ watch(
|
||||||
}
|
}
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
.bottomdesc {
|
|
||||||
display: -webkit-box;
|
|
||||||
/*设置为弹性盒子*/
|
|
||||||
-webkit-line-clamp: 4;
|
|
||||||
/*最多显示2行*/
|
|
||||||
overflow: hidden;
|
|
||||||
/*超出隐藏*/
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
/*超出显示为省略号*/
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
word-break: break-all;
|
|
||||||
width: 800px;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
.bottomdesc1 {
|
|
||||||
overflow: auto;
|
|
||||||
width: 800px;
|
|
||||||
font-size: 14px;
|
|
||||||
height: 200px;
|
|
||||||
}
|
|
||||||
margin-top: 0.2rem;
|
margin-top: 0.2rem;
|
||||||
font-size: 0.18rem;
|
font-size: 0.18rem;
|
||||||
line-height: 0.34rem;
|
line-height: 0.34rem;
|
||||||
|
|
||||||
|
// & > div:nth-of-type(1) {
|
||||||
|
// overflow: hidden;
|
||||||
|
// text-overflow: ellipsis;
|
||||||
|
// white-space: nowrap;
|
||||||
|
// }
|
||||||
|
|
||||||
|
& > div:nth-of-type(1) {
|
||||||
|
max-height: 1rem;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 3;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom {
|
.bottom {
|
||||||
|
|
|
@ -420,7 +420,7 @@
|
||||||
})
|
})
|
||||||
|
|
||||||
mybus.on('changeMenuStyle', (data) => {
|
mybus.on('changeMenuStyle', (data) => {
|
||||||
|
debugger
|
||||||
targetRouter.value = data
|
targetRouter.value = data
|
||||||
if (data.path == '/algorithmCompare') {
|
if (data.path == '/algorithmCompare') {
|
||||||
jumpPage(
|
jumpPage(
|
||||||
|
|
|
@ -31,11 +31,9 @@
|
||||||
/>
|
/>
|
||||||
<i class="searchImg" aria-hidden="true"></i>
|
<i class="searchImg" aria-hidden="true"></i>
|
||||||
<button class="button-reset" @click="resetAction()">重置</button>
|
<button class="button-reset" @click="resetAction()">重置</button>
|
||||||
|
|
||||||
<div class="hengxian"></div>
|
<div class="hengxian"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="number === 0" class="checkResult">检测结果: <span>{{resourceTotal}}</span>个</div>
|
|
||||||
<div v-loading="loadingData">
|
<div v-loading="loadingData">
|
||||||
<searchResultList
|
<searchResultList
|
||||||
v-if="number === 1"
|
v-if="number === 1"
|
||||||
|
@ -54,9 +52,7 @@
|
||||||
:resourceTotal="resourceTotal"
|
:resourceTotal="resourceTotal"
|
||||||
:selectCardsname="number == 0 ? '融合服务' : '赋能场景'"
|
:selectCardsname="number == 0 ? '融合服务' : '赋能场景'"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
|
|
||||||
<a-pagination
|
<a-pagination
|
||||||
v-if="resourceList.data && resourceList.data.length > 0"
|
v-if="resourceList.data && resourceList.data.length > 0"
|
||||||
v-model:current="currentPage"
|
v-model:current="currentPage"
|
||||||
|
@ -334,22 +330,9 @@
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.checkResult{
|
|
||||||
margin-left: 0.2rem;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: #212121;
|
|
||||||
margin-top: 10px;
|
|
||||||
|
|
||||||
span {
|
|
||||||
font-size: 18px;
|
|
||||||
color: #0087ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
.resultListSearchInput-father {
|
.resultListSearchInput-father {
|
||||||
background: #f3f5f9;
|
background: #f3f5f9;
|
||||||
padding: 0rem 0.2rem;
|
padding: 0.2rem;
|
||||||
|
|
||||||
.resultListSearchInput-son {
|
.resultListSearchInput-son {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
|
|
|
@ -347,8 +347,6 @@
|
||||||
message.success(`${info.file.name} 文件上传成功`)
|
message.success(`${info.file.name} 文件上传成功`)
|
||||||
formName.enclosure = info.file.response.data
|
formName.enclosure = info.file.response.data
|
||||||
} else if (info.file.status === 'error') {
|
} else if (info.file.status === 'error') {
|
||||||
formName.enclosure = ''
|
|
||||||
fileList.value=[]
|
|
||||||
message.error(`${info.file.name} 文件上传失败`)
|
message.error(`${info.file.name} 文件上传失败`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue