Merge branch 'hi-ucs-dev' into release
After Width: | Height: | Size: 229 B |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.1 KiB |
|
@ -41,7 +41,7 @@
|
||||||
<el-upload ref="editUpload" class="upload-demo" :action="fileUploadUrl"
|
<el-upload ref="editUpload" class="upload-demo" :action="fileUploadUrl"
|
||||||
:on-success="eidtHandleAvatarSuccess" :before-upload="editBeforeAvatarUpload" :limit="1"
|
:on-success="eidtHandleAvatarSuccess" :before-upload="editBeforeAvatarUpload" :limit="1"
|
||||||
:file-list="[]" :on-remove="editUploadRemoveFile" :on-exceed="handleExceed" list-type="picture">
|
:file-list="[]" :on-remove="editUploadRemoveFile" :on-exceed="handleExceed" list-type="picture">
|
||||||
<div slot="tip" class="el-upload__tip">只能上传图片文件</div>
|
<div slot="tip" class="el-upload__tip">只能上传图片文件,格式为jpg/png</div>
|
||||||
<div class="button-new">
|
<div class="button-new">
|
||||||
<div>点击上传</div>
|
<div>点击上传</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -299,7 +299,7 @@ export default {
|
||||||
file.type === 'image/jpg' ||
|
file.type === 'image/jpg' ||
|
||||||
file.type === 'image/png'
|
file.type === 'image/png'
|
||||||
if (!isImage) {
|
if (!isImage) {
|
||||||
this.$message.error('上传头像图片只能是 jpg/png 格式!')
|
this.$message.error('上传图片只能是 jpg/png 格式!')
|
||||||
}
|
}
|
||||||
return isImage
|
return isImage
|
||||||
},
|
},
|
||||||
|
@ -314,7 +314,7 @@ export default {
|
||||||
file.type === 'image/png'
|
file.type === 'image/png'
|
||||||
|
|
||||||
if (!isImage) {
|
if (!isImage) {
|
||||||
this.$message.error('上传头像图片只能是 jpg/png 格式!')
|
this.$message.error('上传图片只能是 jpg/png 格式!')
|
||||||
}
|
}
|
||||||
return isImage
|
return isImage
|
||||||
},
|
},
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
<el-upload ref="editUpload" class="upload-demo" :action="fileUploadUrl"
|
<el-upload ref="editUpload" class="upload-demo" :action="fileUploadUrl"
|
||||||
:on-success="eidtHandleAvatarSuccess" :before-upload="editBeforeAvatarUpload" :limit="1"
|
:on-success="eidtHandleAvatarSuccess" :before-upload="editBeforeAvatarUpload" :limit="1"
|
||||||
:file-list="[]" :on-remove="editUploadRemoveFile" :on-exceed="handleExceed" list-type="picture">
|
:file-list="[]" :on-remove="editUploadRemoveFile" :on-exceed="handleExceed" list-type="picture">
|
||||||
<div slot="tip" class="el-upload__tip">只能上传图片文件</div>
|
<div slot="tip" class="el-upload__tip">只能上传图片文件,格式为jpg/png</div>
|
||||||
<div class="button-new">
|
<div class="button-new">
|
||||||
<div>点击上传</div>
|
<div>点击上传</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -458,7 +458,7 @@ export default {
|
||||||
file.type === 'image/jpg' ||
|
file.type === 'image/jpg' ||
|
||||||
file.type === 'image/png'
|
file.type === 'image/png'
|
||||||
if (!isImage) {
|
if (!isImage) {
|
||||||
this.$message.error('上传头像图片只能是 jpg/png 格式!')
|
this.$message.error('上传图片只能是 jpg/png 格式!')
|
||||||
}
|
}
|
||||||
return isImage
|
return isImage
|
||||||
},
|
},
|
||||||
|
@ -473,7 +473,7 @@ export default {
|
||||||
file.type === 'image/png'
|
file.type === 'image/png'
|
||||||
|
|
||||||
if (!isImage) {
|
if (!isImage) {
|
||||||
this.$message.error('上传头像图片只能是 jpg/png 格式!')
|
this.$message.error('上传图片只能是 jpg/png 格式!')
|
||||||
}
|
}
|
||||||
return isImage
|
return isImage
|
||||||
},
|
},
|
||||||
|
|
|
@ -61,12 +61,21 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作">
|
<el-table-column label="操作">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span
|
<el-popconfirm
|
||||||
style="color: #0058e1"
|
confirm-button-text="确认"
|
||||||
@click="handleDelete(scope.$index, scope.row)"
|
cancel-button-text="不用了"
|
||||||
>删除</span
|
icon="el-icon-info"
|
||||||
>
|
icon-color="red"
|
||||||
</template>
|
title="确定删除该实例数据吗?"
|
||||||
|
@confirm="handleDelete(scope.$index, scope.row)"
|
||||||
|
>
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
slot="reference"
|
||||||
|
></el-button>
|
||||||
|
</el-popconfirm>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
style="color:red;margin-left: 6px;"
|
style="color:red;margin-left: 6px;"
|
||||||
@click="deleteItem(index)" type="danger" size="small"
|
@click="deleteItem(index)" type="danger" size="small"
|
||||||
v-if="dataInfo.length > 1"
|
v-if="dataInfo.length > 1"
|
||||||
src="~@/assets/img/deleteRed.png"
|
src="~@/assets/img/del.png"
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
<!-- <el-button style="margin-left:10px" >删除
|
<!-- <el-button style="margin-left:10px" >删除
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
type="danger"
|
type="danger"
|
||||||
size="small"
|
size="small"
|
||||||
v-if="!disabledType && dataInfo.length > 1"
|
v-if="!disabledType && dataInfo.length > 1"
|
||||||
src="~@/assets/img/deleteRed.png"
|
src="~@/assets/img/del.png"
|
||||||
alt=""
|
alt=""
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,18 +31,28 @@
|
||||||
v-if="index != item.answer.length - 1"
|
v-if="index != item.answer.length - 1"
|
||||||
v-model="itemson.answer"
|
v-model="itemson.answer"
|
||||||
placeholder="请输入步骤小节"
|
placeholder="请输入步骤小节"
|
||||||
style="width: 200px"
|
style="width: 160px"
|
||||||
:disabled="disabledType"
|
:disabled="disabledType"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
<img
|
||||||
|
style="color: red; margin-left: 6px"
|
||||||
|
@click="deleteItem1(item.answer,index)"
|
||||||
|
type="danger"
|
||||||
|
size="small"
|
||||||
|
v-if="!disabledType && index != item.answer.length - 1"
|
||||||
|
src="~@/assets/img/del.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
<div v-else style="display: inline">
|
<div v-else style="display: inline">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="itemson.answer"
|
v-model="itemson.answer"
|
||||||
placeholder="请输入步骤小节"
|
placeholder="请输入步骤小节"
|
||||||
style="width: 200px"
|
style="width: 160px"
|
||||||
:disabled="disabledType"
|
:disabled="disabledType"
|
||||||
>
|
>
|
||||||
</el-input>
|
</el-input>
|
||||||
|
|
||||||
<div class="submit1">
|
<div class="submit1">
|
||||||
<a-button type="primary" @click="addAnswerItem(item.answer)">
|
<a-button type="primary" @click="addAnswerItem(item.answer)">
|
||||||
<img
|
<img
|
||||||
|
@ -55,22 +65,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <a-button type="primary" v-if="!disabledType && index == dataInfo.length - 1"
|
|
||||||
@click="addItem">
|
|
||||||
<img
|
|
||||||
style="height: 12px; width: 12px;margin-top: -2px;"
|
|
||||||
src="~@/assets/img/jiahao.png"
|
|
||||||
alt=""
|
|
||||||
/>
|
|
||||||
<span style="margin-left: 4px">添加小节</span>
|
|
||||||
</a-button> -->
|
|
||||||
<!-- <div class="question-box-right">
|
|
||||||
<span>步骤小节: </span>
|
|
||||||
<el-input v-model="itemson.answer" placeholder="请输入步骤小节" style="width:200px"
|
|
||||||
:disabled="disabledType">
|
|
||||||
</el-input>
|
|
||||||
|
|
||||||
</div> -->
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="submit">
|
<div class="submit">
|
||||||
|
@ -89,33 +84,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="question-box">
|
|
||||||
|
|
||||||
<div v-for="(item, index) in dataInfo" :key="index">
|
|
||||||
<el-form-item label="步骤标题" prop="question">
|
|
||||||
<el-input v-model="item.question" placeholder="请输入标题" style="width:90%" :disabled="disabledType">
|
|
||||||
</el-input>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="步骤" prop="question">
|
|
||||||
<el-input type="textarea" :rows="3" v-model="item.answer" placeholder="请输入解释说明" style="width:90%"
|
|
||||||
:disabled="disabledType">
|
|
||||||
</el-input>
|
|
||||||
<el-button style="margin-left:10px" @click="deleteItem(index)" type="danger" size="small"
|
|
||||||
v-if="!disabledType && dataInfo.length > 1">删除
|
|
||||||
</el-button>
|
|
||||||
</el-form-item>
|
|
||||||
<el-button class="add-btn" size="small" v-if="!disabledType && index == dataInfo.length - 1"
|
|
||||||
@click="addItem" type="primary">添加
|
|
||||||
</el-button>
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<!-- <div class="step-box">
|
|
||||||
<el-steps :active="2">
|
|
||||||
<el-step status="finish" :title="item.question || `标题${index + 1}`" v-for="(item, index) in dataInfo"
|
|
||||||
:key="index">
|
|
||||||
</el-step>
|
|
||||||
</el-steps>
|
|
||||||
</div> -->
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
@ -207,6 +176,22 @@ export default {
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
},
|
},
|
||||||
|
// 删除
|
||||||
|
deleteItem1(item,index) {
|
||||||
|
this.$confirm("确认是否删除?", "提示", {
|
||||||
|
confirmButtonText: "确定",
|
||||||
|
cancelButtonText: "取消",
|
||||||
|
type: "warning",
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.$message({
|
||||||
|
type: "success",
|
||||||
|
message: "删除成功!",
|
||||||
|
});
|
||||||
|
item.splice(index,1)
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -262,7 +247,7 @@ export default {
|
||||||
}
|
}
|
||||||
.question-box {
|
.question-box {
|
||||||
float: left;
|
float: left;
|
||||||
width: 42%;
|
width: 295px;
|
||||||
}
|
}
|
||||||
.question-box1 {
|
.question-box1 {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -0,0 +1,292 @@
|
||||||
|
<!--
|
||||||
|
* @Author: Light
|
||||||
|
* @Date: 2023-01-04 16:29:33
|
||||||
|
* @LastEditors: Light
|
||||||
|
* @LastEditTime: 2023-01-06 10:50:23
|
||||||
|
* @Description: 数据统计
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div class="data-statistics-box">
|
||||||
|
<div class="top">
|
||||||
|
<div class="item" v-for="item in topData" :key="item.type">
|
||||||
|
<div class="left">
|
||||||
|
<div>{{ item.type }}</div>
|
||||||
|
<div><span>{{ item.count }}</span>项</div>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<div>
|
||||||
|
较上周<span>{{ item.weekly_change }}</span>
|
||||||
|
<svg v-if="item.weekly_change>0" t="1672972210380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28931" width="15" height="15"><path d="M470.016 976.896q-44.032 0-59.392-20.48t-15.36-65.536q0-20.48-0.512-64.512t-1.024-93.696-1.536-96.768-1.024-74.752q0-39.936-7.68-62.464t-35.328-21.504q-20.48 0-48.64-1.024t-49.664 0q-35.84 0-45.568-19.456t13.824-50.176q24.576-30.72 57.344-72.704t67.584-86.016 68.096-87.04 58.88-75.776q23.552-29.696 45.568-30.72t46.592 26.624q24.576 29.696 56.832 69.632t67.072 82.432 68.608 83.968 60.416 73.216q29.696 35.84 23.04 58.88t-43.52 23.04q-11.264 0-25.088 0.512t-29.184 1.024-30.208 1.024-27.136 0.512q-25.6 1.024-32.256 16.384t-5.632 41.984q0 29.696 0.512 77.824t1.024 100.352 1.536 101.376 1.024 79.872q0 13.312-2.048 27.648t-9.728 26.112-21.504 19.968-36.352 8.192q-27.648 0-52.736 0.512t-56.832 1.536z" p-id="28932" fill="#67c23a"></path></svg>
|
||||||
|
<svg v-else-if="item.weekly_change==0" t="1672902733121" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5742" width="15" height="15"><path d="M152 560 152 464 472 464 472 560 152 560ZM552 560 552 464 872 464 872 560 552 560Z" fill="#409eff" p-id="5743"></path></svg>
|
||||||
|
<svg v-else t="1672972414152" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29200" width="15" height="15"><path d="M564.224 44.032q43.008 0 58.368 20.48t15.36 65.536q0 20.48 0.512 64.512t0.512 93.696 0.512 96.768 0.512 74.752q0 38.912 7.68 61.952t35.328 22.016q19.456 0 48.128 1.024t49.152 1.024q35.84 0 45.568 18.944t-13.824 49.664q-24.576 30.72-57.344 72.704t-68.096 86.016-69.12 86.528-59.392 75.264q-23.552 29.696-45.568 30.72t-45.568-27.648q-24.576-29.696-57.344-69.632t-67.072-82.432-67.584-83.968-59.904-74.24q-29.696-35.84-22.528-58.88t44.032-23.04l24.576 0q14.336 0 29.696-0.512t30.208-1.536 26.112-1.024q26.624 0 32.768-15.36t6.144-41.984q0-29.696-0.512-77.824t-0.512-100.352-0.512-101.376-0.512-79.872q0-13.312 2.048-27.648t9.728-26.112 20.992-19.456 36.864-7.68q27.648 0 53.248-0.512t57.344-0.512z" p-id="29201" fill="#f56c6c"></path></svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
较上月<span>{{ item.month_change }}</span>
|
||||||
|
<svg v-if="item.month_change>0" t="1672972210380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28931" width="15" height="15"><path d="M470.016 976.896q-44.032 0-59.392-20.48t-15.36-65.536q0-20.48-0.512-64.512t-1.024-93.696-1.536-96.768-1.024-74.752q0-39.936-7.68-62.464t-35.328-21.504q-20.48 0-48.64-1.024t-49.664 0q-35.84 0-45.568-19.456t13.824-50.176q24.576-30.72 57.344-72.704t67.584-86.016 68.096-87.04 58.88-75.776q23.552-29.696 45.568-30.72t46.592 26.624q24.576 29.696 56.832 69.632t67.072 82.432 68.608 83.968 60.416 73.216q29.696 35.84 23.04 58.88t-43.52 23.04q-11.264 0-25.088 0.512t-29.184 1.024-30.208 1.024-27.136 0.512q-25.6 1.024-32.256 16.384t-5.632 41.984q0 29.696 0.512 77.824t1.024 100.352 1.536 101.376 1.024 79.872q0 13.312-2.048 27.648t-9.728 26.112-21.504 19.968-36.352 8.192q-27.648 0-52.736 0.512t-56.832 1.536z" p-id="28932" fill="#67c23a"></path></svg>
|
||||||
|
<svg v-else-if="item.month_change==0" t="1672902733121" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5742" width="15" height="15"><path d="M152 560 152 464 472 464 472 560 152 560ZM552 560 552 464 872 464 872 560 552 560Z" fill="#409eff" p-id="5743"></path></svg>
|
||||||
|
<svg v-else t="1672972414152" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29200" width="15" height="15"><path d="M564.224 44.032q43.008 0 58.368 20.48t15.36 65.536q0 20.48 0.512 64.512t0.512 93.696 0.512 96.768 0.512 74.752q0 38.912 7.68 61.952t35.328 22.016q19.456 0 48.128 1.024t49.152 1.024q35.84 0 45.568 18.944t-13.824 49.664q-24.576 30.72-57.344 72.704t-68.096 86.016-69.12 86.528-59.392 75.264q-23.552 29.696-45.568 30.72t-45.568-27.648q-24.576-29.696-57.344-69.632t-67.072-82.432-67.584-83.968-59.904-74.24q-29.696-35.84-22.528-58.88t44.032-23.04l24.576 0q14.336 0 29.696-0.512t30.208-1.536 26.112-1.024q26.624 0 32.768-15.36t6.144-41.984q0-29.696-0.512-77.824t-0.512-100.352-0.512-101.376-0.512-79.872q0-13.312 2.048-27.648t9.728-26.112 20.992-19.456 36.864-7.68q27.648 0 53.248-0.512t57.344-0.512z" p-id="29201" fill="#f56c6c"></path></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<el-image
|
||||||
|
:style="'width: ' + imgConfig[item.type].size + ' height: ' + imgConfig[item.type].size + ' position: absolute; bottom:' + imgConfig[item.type].bottom + ' right: '+imgConfig[item.type].right"
|
||||||
|
:src="imgConfig[item.type].url"
|
||||||
|
:fit="cover"></el-image>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bottom">
|
||||||
|
<div class="item-box" v-for="item in bottomData" :key="item.tip">
|
||||||
|
<div class="name">
|
||||||
|
<div>{{ item.tip }}<span>{{ item.dept_count }}</span>个</div>
|
||||||
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<div class="left">
|
||||||
|
<div>能力上架</div>
|
||||||
|
<div><span>{{ item.resource_sum }}</span>个</div>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<div>
|
||||||
|
较上周<span>{{ item.resource_weekly_change }}</span>
|
||||||
|
<svg v-if="item.resource_weekly_change>0" t="1672972210380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28931" width="15" height="15"><path d="M470.016 976.896q-44.032 0-59.392-20.48t-15.36-65.536q0-20.48-0.512-64.512t-1.024-93.696-1.536-96.768-1.024-74.752q0-39.936-7.68-62.464t-35.328-21.504q-20.48 0-48.64-1.024t-49.664 0q-35.84 0-45.568-19.456t13.824-50.176q24.576-30.72 57.344-72.704t67.584-86.016 68.096-87.04 58.88-75.776q23.552-29.696 45.568-30.72t46.592 26.624q24.576 29.696 56.832 69.632t67.072 82.432 68.608 83.968 60.416 73.216q29.696 35.84 23.04 58.88t-43.52 23.04q-11.264 0-25.088 0.512t-29.184 1.024-30.208 1.024-27.136 0.512q-25.6 1.024-32.256 16.384t-5.632 41.984q0 29.696 0.512 77.824t1.024 100.352 1.536 101.376 1.024 79.872q0 13.312-2.048 27.648t-9.728 26.112-21.504 19.968-36.352 8.192q-27.648 0-52.736 0.512t-56.832 1.536z" p-id="28932" fill="#67c23a"></path></svg>
|
||||||
|
<svg v-else-if="item.resource_weekly_change==0" t="1672902733121" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5742" width="15" height="15"><path d="M152 560 152 464 472 464 472 560 152 560ZM552 560 552 464 872 464 872 560 552 560Z" fill="#409eff" p-id="5743"></path></svg>
|
||||||
|
<svg v-else t="1672972414152" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29200" width="15" height="15"><path d="M564.224 44.032q43.008 0 58.368 20.48t15.36 65.536q0 20.48 0.512 64.512t0.512 93.696 0.512 96.768 0.512 74.752q0 38.912 7.68 61.952t35.328 22.016q19.456 0 48.128 1.024t49.152 1.024q35.84 0 45.568 18.944t-13.824 49.664q-24.576 30.72-57.344 72.704t-68.096 86.016-69.12 86.528-59.392 75.264q-23.552 29.696-45.568 30.72t-45.568-27.648q-24.576-29.696-57.344-69.632t-67.072-82.432-67.584-83.968-59.904-74.24q-29.696-35.84-22.528-58.88t44.032-23.04l24.576 0q14.336 0 29.696-0.512t30.208-1.536 26.112-1.024q26.624 0 32.768-15.36t6.144-41.984q0-29.696-0.512-77.824t-0.512-100.352-0.512-101.376-0.512-79.872q0-13.312 2.048-27.648t9.728-26.112 20.992-19.456 36.864-7.68q27.648 0 53.248-0.512t57.344-0.512z" p-id="29201" fill="#f56c6c"></path></svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
较上月<span>{{ item.resource_month_change }}</span>
|
||||||
|
<svg v-if="item.resource_month_change>0" t="1672972210380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28931" width="15" height="15"><path d="M470.016 976.896q-44.032 0-59.392-20.48t-15.36-65.536q0-20.48-0.512-64.512t-1.024-93.696-1.536-96.768-1.024-74.752q0-39.936-7.68-62.464t-35.328-21.504q-20.48 0-48.64-1.024t-49.664 0q-35.84 0-45.568-19.456t13.824-50.176q24.576-30.72 57.344-72.704t67.584-86.016 68.096-87.04 58.88-75.776q23.552-29.696 45.568-30.72t46.592 26.624q24.576 29.696 56.832 69.632t67.072 82.432 68.608 83.968 60.416 73.216q29.696 35.84 23.04 58.88t-43.52 23.04q-11.264 0-25.088 0.512t-29.184 1.024-30.208 1.024-27.136 0.512q-25.6 1.024-32.256 16.384t-5.632 41.984q0 29.696 0.512 77.824t1.024 100.352 1.536 101.376 1.024 79.872q0 13.312-2.048 27.648t-9.728 26.112-21.504 19.968-36.352 8.192q-27.648 0-52.736 0.512t-56.832 1.536z" p-id="28932" fill="#67c23a"></path></svg>
|
||||||
|
<svg v-else-if="item.resource_month_change==0" t="1672902733121" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5742" width="15" height="15"><path d="M152 560 152 464 472 464 472 560 152 560ZM552 560 552 464 872 464 872 560 552 560Z" fill="#409eff" p-id="5743"></path></svg>
|
||||||
|
<svg v-else t="1672972414152" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29200" width="15" height="15"><path d="M564.224 44.032q43.008 0 58.368 20.48t15.36 65.536q0 20.48 0.512 64.512t0.512 93.696 0.512 96.768 0.512 74.752q0 38.912 7.68 61.952t35.328 22.016q19.456 0 48.128 1.024t49.152 1.024q35.84 0 45.568 18.944t-13.824 49.664q-24.576 30.72-57.344 72.704t-68.096 86.016-69.12 86.528-59.392 75.264q-23.552 29.696-45.568 30.72t-45.568-27.648q-24.576-29.696-57.344-69.632t-67.072-82.432-67.584-83.968-59.904-74.24q-29.696-35.84-22.528-58.88t44.032-23.04l24.576 0q14.336 0 29.696-0.512t30.208-1.536 26.112-1.024q26.624 0 32.768-15.36t6.144-41.984q0-29.696-0.512-77.824t-0.512-100.352-0.512-101.376-0.512-79.872q0-13.312 2.048-27.648t9.728-26.112 20.992-19.456 36.864-7.68q27.648 0 53.248-0.512t57.344-0.512z" p-id="29201" fill="#f56c6c"></path></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<div class="left">
|
||||||
|
<div>能力申请</div>
|
||||||
|
<div><span>{{ item.apply_sum }}</span>个</div>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<div>
|
||||||
|
较上周<span>{{ item.apply_weekly_change }}</span>
|
||||||
|
<svg v-if="item.apply_weekly_change>0" t="1672972210380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28931" width="15" height="15"><path d="M470.016 976.896q-44.032 0-59.392-20.48t-15.36-65.536q0-20.48-0.512-64.512t-1.024-93.696-1.536-96.768-1.024-74.752q0-39.936-7.68-62.464t-35.328-21.504q-20.48 0-48.64-1.024t-49.664 0q-35.84 0-45.568-19.456t13.824-50.176q24.576-30.72 57.344-72.704t67.584-86.016 68.096-87.04 58.88-75.776q23.552-29.696 45.568-30.72t46.592 26.624q24.576 29.696 56.832 69.632t67.072 82.432 68.608 83.968 60.416 73.216q29.696 35.84 23.04 58.88t-43.52 23.04q-11.264 0-25.088 0.512t-29.184 1.024-30.208 1.024-27.136 0.512q-25.6 1.024-32.256 16.384t-5.632 41.984q0 29.696 0.512 77.824t1.024 100.352 1.536 101.376 1.024 79.872q0 13.312-2.048 27.648t-9.728 26.112-21.504 19.968-36.352 8.192q-27.648 0-52.736 0.512t-56.832 1.536z" p-id="28932" fill="#67c23a"></path></svg>
|
||||||
|
<svg v-else-if="item.apply_weekly_change==0" t="1672902733121" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5742" width="15" height="15"><path d="M152 560 152 464 472 464 472 560 152 560ZM552 560 552 464 872 464 872 560 552 560Z" fill="#409eff" p-id="5743"></path></svg>
|
||||||
|
<svg v-else t="1672972414152" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29200" width="15" height="15"><path d="M564.224 44.032q43.008 0 58.368 20.48t15.36 65.536q0 20.48 0.512 64.512t0.512 93.696 0.512 96.768 0.512 74.752q0 38.912 7.68 61.952t35.328 22.016q19.456 0 48.128 1.024t49.152 1.024q35.84 0 45.568 18.944t-13.824 49.664q-24.576 30.72-57.344 72.704t-68.096 86.016-69.12 86.528-59.392 75.264q-23.552 29.696-45.568 30.72t-45.568-27.648q-24.576-29.696-57.344-69.632t-67.072-82.432-67.584-83.968-59.904-74.24q-29.696-35.84-22.528-58.88t44.032-23.04l24.576 0q14.336 0 29.696-0.512t30.208-1.536 26.112-1.024q26.624 0 32.768-15.36t6.144-41.984q0-29.696-0.512-77.824t-0.512-100.352-0.512-101.376-0.512-79.872q0-13.312 2.048-27.648t9.728-26.112 20.992-19.456 36.864-7.68q27.648 0 53.248-0.512t57.344-0.512z" p-id="29201" fill="#f56c6c"></path></svg>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
较上月<span>{{ item.apply_month_change }}</span>
|
||||||
|
<svg v-if="item.apply_month_change>0" t="1672972210380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28931" width="15" height="15"><path d="M470.016 976.896q-44.032 0-59.392-20.48t-15.36-65.536q0-20.48-0.512-64.512t-1.024-93.696-1.536-96.768-1.024-74.752q0-39.936-7.68-62.464t-35.328-21.504q-20.48 0-48.64-1.024t-49.664 0q-35.84 0-45.568-19.456t13.824-50.176q24.576-30.72 57.344-72.704t67.584-86.016 68.096-87.04 58.88-75.776q23.552-29.696 45.568-30.72t46.592 26.624q24.576 29.696 56.832 69.632t67.072 82.432 68.608 83.968 60.416 73.216q29.696 35.84 23.04 58.88t-43.52 23.04q-11.264 0-25.088 0.512t-29.184 1.024-30.208 1.024-27.136 0.512q-25.6 1.024-32.256 16.384t-5.632 41.984q0 29.696 0.512 77.824t1.024 100.352 1.536 101.376 1.024 79.872q0 13.312-2.048 27.648t-9.728 26.112-21.504 19.968-36.352 8.192q-27.648 0-52.736 0.512t-56.832 1.536z" p-id="28932" fill="#67c23a"></path></svg>
|
||||||
|
<svg v-else-if="item.apply_month_change==0" t="1672902733121" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5742" width="15" height="15"><path d="M152 560 152 464 472 464 472 560 152 560ZM552 560 552 464 872 464 872 560 552 560Z" fill="#409eff" p-id="5743"></path></svg>
|
||||||
|
<svg v-else t="1672972414152" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29200" width="15" height="15"><path d="M564.224 44.032q43.008 0 58.368 20.48t15.36 65.536q0 20.48 0.512 64.512t0.512 93.696 0.512 96.768 0.512 74.752q0 38.912 7.68 61.952t35.328 22.016q19.456 0 48.128 1.024t49.152 1.024q35.84 0 45.568 18.944t-13.824 49.664q-24.576 30.72-57.344 72.704t-68.096 86.016-69.12 86.528-59.392 75.264q-23.552 29.696-45.568 30.72t-45.568-27.648q-24.576-29.696-57.344-69.632t-67.072-82.432-67.584-83.968-59.904-74.24q-29.696-35.84-22.528-58.88t44.032-23.04l24.576 0q14.336 0 29.696-0.512t30.208-1.536 26.112-1.024q26.624 0 32.768-15.36t6.144-41.984q0-29.696-0.512-77.824t-0.512-100.352-0.512-101.376-0.512-79.872q0-13.312 2.048-27.648t9.728-26.112 20.992-19.456 36.864-7.68q27.648 0 53.248-0.512t57.344-0.512z" p-id="29201" fill="#f56c6c"></path></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bx"></div>
|
||||||
|
<div class="bx"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: '',
|
||||||
|
components: {
|
||||||
|
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
sortList: ['四大类资源', '组件服务', '应用资源', '基础设施', '数据资源'],
|
||||||
|
imgConfig: {
|
||||||
|
四大类资源: {
|
||||||
|
url: require('@/assets/img/workBench/banner-gg.png'),
|
||||||
|
size: '80px;',
|
||||||
|
right: '20px;',
|
||||||
|
bottom: '40px;'
|
||||||
|
},
|
||||||
|
组件服务: {
|
||||||
|
url: require('@/assets/img/workBench/banner-zj.png'),
|
||||||
|
size: '60px;',
|
||||||
|
right: '20px;',
|
||||||
|
bottom: '48px;'
|
||||||
|
},
|
||||||
|
应用资源: {
|
||||||
|
url: require('@/assets/img/workBench/banner-yy.png'),
|
||||||
|
size: '60px;',
|
||||||
|
right: '20px;',
|
||||||
|
bottom: '43px;'
|
||||||
|
},
|
||||||
|
基础设施: {
|
||||||
|
url: require('@/assets/img/workBench/banner-jc.png'),
|
||||||
|
size: '60px;',
|
||||||
|
right: '20px;',
|
||||||
|
bottom: '46px;'
|
||||||
|
},
|
||||||
|
数据资源: {
|
||||||
|
url: require('@/assets/img/workBench/banner-sj.png'),
|
||||||
|
size: '60px;',
|
||||||
|
right: '20px;',
|
||||||
|
bottom: '50px;'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
topData: [],
|
||||||
|
bottomData: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
},
|
||||||
|
created () {
|
||||||
|
this.$http.get('/census/center/similitude').then(res => {
|
||||||
|
res.data.data = res.data.data.sort((a, b) => this.sortList.indexOf(a.type) - this.sortList.indexOf(b.type))
|
||||||
|
this.topData = res.data.data
|
||||||
|
console.log('获取数据', res.data.data)
|
||||||
|
})
|
||||||
|
this.$http.get('/census/center/similitude_dept').then(res => {
|
||||||
|
this.bottomData = res.data.data
|
||||||
|
console.log('获取数据', res.data.data)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
mounted () {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang='scss' scoped>
|
||||||
|
.data-statistics-box{
|
||||||
|
padding:10px;
|
||||||
|
.top{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
.item{
|
||||||
|
width: 290px;
|
||||||
|
height: 120px;
|
||||||
|
padding: 15px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
background: #fff;
|
||||||
|
box-shadow: 2px 2px 5px #ccc;
|
||||||
|
border-radius: 10px;
|
||||||
|
position: relative;
|
||||||
|
.left{
|
||||||
|
width: 100px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
font-size: 16px;
|
||||||
|
div{
|
||||||
|
margin-bottom: 1px;
|
||||||
|
}
|
||||||
|
span{
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
width: 180px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
margin-top: 10px;
|
||||||
|
div{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #666;
|
||||||
|
span{
|
||||||
|
width: 30px;
|
||||||
|
margin-left: 30px;
|
||||||
|
}
|
||||||
|
svg{
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bottom{
|
||||||
|
margin-top: 10px;
|
||||||
|
.item-box{
|
||||||
|
display: flex;
|
||||||
|
margin-top: 10px;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
.name{
|
||||||
|
width: 290px;
|
||||||
|
height: 80px;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 2px 2px 5px #ccc;
|
||||||
|
div{
|
||||||
|
width: 200px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 20px;
|
||||||
|
span{
|
||||||
|
margin-left: 10px;
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.item{
|
||||||
|
width: 290px;
|
||||||
|
height: 80px;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 2px 2px 5px #ccc;
|
||||||
|
.left{
|
||||||
|
width: 100px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 16px;
|
||||||
|
span{
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
width: 120px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
margin-top: 10px;
|
||||||
|
div{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #666;
|
||||||
|
span{
|
||||||
|
width: 30px;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
svg{
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bx{
|
||||||
|
width: 290px;
|
||||||
|
height: 80px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -1,5 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="work-brnch-box">
|
<div class="work-brnch-box">
|
||||||
|
<!-- 数据统计 -->
|
||||||
|
<div class="data-statistics" v-if="($store.state.user.roleIdList.indexOf('运维管理员') !== -1)">
|
||||||
|
<DataStatistics></DataStatistics>
|
||||||
|
</div>
|
||||||
<!-- 上 -->
|
<!-- 上 -->
|
||||||
<div class="flex-row-start top">
|
<div class="flex-row-start top">
|
||||||
<div class="flex-row-start dept-left">
|
<div class="flex-row-start dept-left">
|
||||||
|
@ -33,6 +37,7 @@
|
||||||
import BottomView from '../workBench/components/bottom-view.vue'
|
import BottomView from '../workBench/components/bottom-view.vue'
|
||||||
import CenterView from '../workBench/components/center-view.vue'
|
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 DataStatistics from './components/DataStatistics'
|
||||||
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'
|
import bus from '@/views/bus.js'
|
||||||
|
@ -41,7 +46,8 @@ export default {
|
||||||
deptTodoView,
|
deptTodoView,
|
||||||
BottomView,
|
BottomView,
|
||||||
CenterView,
|
CenterView,
|
||||||
DeptChartView
|
DeptChartView,
|
||||||
|
DataStatistics
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
@ -241,7 +247,12 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.work-brnch-box {
|
.work-brnch-box {
|
||||||
|
.data-statistics{
|
||||||
|
background: #fff;
|
||||||
|
height: 324px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
box-shadow: 2px 2px 5px #ccc;
|
||||||
|
}
|
||||||
.top {
|
.top {
|
||||||
height: 284px;
|
height: 284px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
|
After Width: | Height: | Size: 552 B |
After Width: | Height: | Size: 475 B |
|
@ -9,7 +9,7 @@
|
||||||
<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" v-if="(props.dataList.name.length > 20)">
|
||||||
<template #title>{{ props.dataList.name }}</template>
|
<template #title>{{ props.dataList.name }}</template>
|
||||||
<span class="name">
|
<span class="name">
|
||||||
{{ props.dataList.name }}
|
{{ props.dataList.name }}
|
||||||
|
@ -47,24 +47,21 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="bottomdesc" v-else-if="dowmOrUp === '展开>>'">
|
<div class="bottomdesc" v-else-if="dowmOrUp === '展开>>'">
|
||||||
场景描述: {{ props.dataList.description.slice(0, 183) }}...
|
场景描述: {{ props.dataList.description.slice(0, 183) }}...
|
||||||
<span
|
<span style="cursor: pointer; color: rgb(241 211 112)" @click="showDetail(dowmOrUp)">
|
||||||
style="cursor: pointer; color: rgb(241 211 112)"
|
|
||||||
@click="showDetail(dowmOrUp)"
|
|
||||||
>
|
|
||||||
{{ dowmOrUp }}
|
{{ dowmOrUp }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottomdesc1" v-else>
|
<div class="bottomdesc1" v-else>
|
||||||
场景描述: {{ props.dataList.description }}
|
场景描述: {{ props.dataList.description }}
|
||||||
<span
|
<span style="cursor: pointer; color: rgb(241 211 112)" @click="showDetail(dowmOrUp)">
|
||||||
style="cursor: pointer; color: rgb(241 211 112)"
|
|
||||||
@click="showDetail(dowmOrUp)"
|
|
||||||
>
|
|
||||||
{{ dowmOrUp }}
|
{{ dowmOrUp }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div style="padding-top: 20px">
|
<div style="padding-top: 20px">
|
||||||
<span>场景入口:</span>
|
<a-button class="rukou" @click="openScene(props.dataList.sceneUrl)">
|
||||||
|
进入场景
|
||||||
|
</a-button>
|
||||||
|
<!-- <span>场景入口:</span>
|
||||||
<span
|
<span
|
||||||
style="
|
style="
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
@ -74,7 +71,7 @@
|
||||||
@click="openScene(props.dataList.sceneUrl)"
|
@click="openScene(props.dataList.sceneUrl)"
|
||||||
>
|
>
|
||||||
{{ props.dataList.sceneUrl }}
|
{{ props.dataList.sceneUrl }}
|
||||||
</span>
|
</span> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom" v-if="props.dataList.id">
|
<div class="bottom" v-if="props.dataList.id">
|
||||||
|
@ -200,24 +197,24 @@ function toView() {
|
||||||
// 融合服务--一键申请
|
// 融合服务--一键申请
|
||||||
const handleAKeyApplication = () => {
|
const handleAKeyApplication = () => {
|
||||||
let _applyList = []
|
let _applyList = []
|
||||||
;(props.dataList.fuseResourceList || []).map((v) => {
|
; (props.dataList.fuseResourceList || []).map((v) => {
|
||||||
let resource = v.resource || {}
|
let resource = v.resource || {}
|
||||||
let obj = {
|
let obj = {
|
||||||
arr: [
|
arr: [
|
||||||
{
|
{
|
||||||
delFlag: resource.delFlag,
|
delFlag: resource.delFlag,
|
||||||
description: resource.description,
|
description: resource.description,
|
||||||
resourceId: resource.id,
|
resourceId: resource.id,
|
||||||
resourceName: resource.name,
|
resourceName: resource.name,
|
||||||
time: resource.createDate,
|
time: resource.createDate,
|
||||||
type: resource.type,
|
type: resource.type,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
deptId: resource.deptId,
|
deptId: resource.deptId,
|
||||||
deptName: resource.deptName,
|
deptName: resource.deptName,
|
||||||
}
|
}
|
||||||
_applyList.push(obj)
|
_applyList.push(obj)
|
||||||
})
|
})
|
||||||
|
|
||||||
localStorage.setItem('applyList', JSON.stringify(_applyList))
|
localStorage.setItem('applyList', JSON.stringify(_applyList))
|
||||||
router.push({
|
router.push({
|
||||||
|
@ -339,6 +336,17 @@ watch(
|
||||||
}
|
}
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
|
|
||||||
|
.rukou {
|
||||||
|
margin-top:24px;
|
||||||
|
background: #0058e1;
|
||||||
|
color: #ffffff;
|
||||||
|
width: 90px;
|
||||||
|
height: 32px;
|
||||||
|
border-radius: 2px;
|
||||||
|
border: 1px #0058e1 solid;
|
||||||
|
|
||||||
|
}
|
||||||
.bottomdesc {
|
.bottomdesc {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
/*设置为弹性盒子*/
|
/*设置为弹性盒子*/
|
||||||
|
@ -353,12 +361,14 @@ watch(
|
||||||
width: 800px;
|
width: 800px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottomdesc1 {
|
.bottomdesc1 {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
width: 800px;
|
width: 800px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
height: 200px;
|
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;
|
||||||
|
|
|
@ -58,6 +58,7 @@ function toView(item) {
|
||||||
path: '/integrationServicesDetails',
|
path: '/integrationServicesDetails',
|
||||||
query: {
|
query: {
|
||||||
id: item.id,
|
id: item.id,
|
||||||
|
districtType:item.district,
|
||||||
type:'典型赋能场景'
|
type:'典型赋能场景'
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
@ -26,16 +26,26 @@ const oldValue1 = ref('')
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
textColor: { type: String, default: '' },
|
textColor: { type: String, default: '' },
|
||||||
returnType: { type: String, default: '' },
|
returnType: { type: String, default: '' },
|
||||||
|
districtType:{ type: Number, default: 0 },
|
||||||
})
|
})
|
||||||
const returnType = props.returnType
|
const returnType = props.returnType
|
||||||
|
const districtType = props.districtType
|
||||||
const previousPage = () => {
|
const previousPage = () => {
|
||||||
if (returnType =='典型赋能场景'|| returnType =='打包模式') {
|
if (returnType =='打包模式') {
|
||||||
router.push({
|
router.push({
|
||||||
path: '/integrationServices',
|
path: '/integrationServices',
|
||||||
query: {
|
query: {
|
||||||
returnType: returnType,
|
returnType: returnType,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
}else if(returnType =='典型赋能场景'){
|
||||||
|
router.push({
|
||||||
|
path: '/integrationServices',
|
||||||
|
query: {
|
||||||
|
returnType: returnType,
|
||||||
|
districtType:districtType,
|
||||||
|
},
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
if (window.history.state.back) {
|
if (window.history.state.back) {
|
||||||
window.history.go(-1)
|
window.history.go(-1)
|
||||||
|
|
|
@ -124,6 +124,7 @@ export default defineComponent({
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const select = router.currentRoute.value.query.select
|
const select = router.currentRoute.value.query.select
|
||||||
const returnType = router.currentRoute.value.query.returnType
|
const returnType = router.currentRoute.value.query.returnType
|
||||||
|
const districtType = router.currentRoute.value.query.districtType
|
||||||
const searchValue = ref('')
|
const searchValue = ref('')
|
||||||
const Cardsname = ref(select)
|
const Cardsname = ref(select)
|
||||||
const resourceList = reactive({ data: [] })
|
const resourceList = reactive({ data: [] })
|
||||||
|
@ -350,11 +351,17 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
searchAreas()
|
searchAreas()
|
||||||
if (returnType == '典型赋能场景') {
|
if (returnType == '典型赋能场景') {
|
||||||
|
|
||||||
|
if(districtType==0){
|
||||||
|
cityOrArea.value=0
|
||||||
|
}else{
|
||||||
|
cityOrArea.value=1
|
||||||
|
}
|
||||||
changeCards(0)
|
changeCards(0)
|
||||||
|
}
|
||||||
} else if (returnType == '打包模式') {
|
else if (returnType == '打包模式') {
|
||||||
changeCards(1)
|
changeCards(1)
|
||||||
} else {
|
} else {
|
||||||
if (storageSearchInfo) {
|
if (storageSearchInfo) {
|
||||||
|
@ -390,6 +397,7 @@ export default defineComponent({
|
||||||
titleName,
|
titleName,
|
||||||
changeCards,
|
changeCards,
|
||||||
returnType,
|
returnType,
|
||||||
|
districtType,
|
||||||
number,
|
number,
|
||||||
loadingData,
|
loadingData,
|
||||||
cityOrArea,
|
cityOrArea,
|
||||||
|
@ -545,7 +553,10 @@ export default defineComponent({
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
span:hover{
|
||||||
|
background: #0058e1;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
.down {
|
.down {
|
||||||
background: #0058e1;
|
background: #0058e1;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
|