去除文件显示抖动、数据云图的企业情况关闭清空搜索条件

des
吕天方 5 months ago
parent fdfc31839f
commit d641c38044

@ -1,6 +1,6 @@
{ {
"name": "ruoyi", "name": "ruoyi",
"version": "1.0.202408012042", "version": "1.0.202408020854",
"description": "金鸡湖现代服务业品牌管理系统", "description": "金鸡湖现代服务业品牌管理系统",
"author": "若依", "author": "若依",
"license": "MIT", "license": "MIT",

@ -165,13 +165,17 @@ export default {
this.pagination = { ...this.pagination,...this.formInline }; this.pagination = { ...this.pagination,...this.formInline };
this.getList(); this.getList();
}, },
// //
enterpriseInfo(row){ enterpriseInfo(row){
getUserId({getCreditCode : row.tyshxydm}).then(res=>{ getUserId({getCreditCode : row.tyshxydm}).then(res=>{
this.$router.push({ if(res.data?.id) {
name: 'enterpriselibraryInfo', this.$router.push({
query: { userId: res.data.id, creditCode: row.tyshxydm } name: 'enterpriselibraryInfo',
}) query: { userId: res.data.id, creditCode: row.tyshxydm }
})
} else {
this.$message.error("该企业未在企业库");
}
}) })
}, },
// tab // tab

@ -100,6 +100,11 @@ export default {
}, },
infoClose(){ infoClose(){
this.infoVisible = false; this.infoVisible = false;
this.formInline = {
qymc:"",
tyshxydm:"",
servicesType: null,
}
}, },
getList(){ getList(){
this.loading = true; this.loading = true;
@ -140,10 +145,14 @@ export default {
// //
enterpriseInfo(row){ enterpriseInfo(row){
getUserId({getCreditCode : row.tyshxydm}).then(res=>{ getUserId({getCreditCode : row.tyshxydm}).then(res=>{
this.$router.push({ if(res.data?.id) {
name: 'enterpriselibraryInfo', this.$router.push({
query: { userId: res.data.id, creditCode: row.tyshxydm } name: 'enterpriselibraryInfo',
}) query: { userId: res.data.id, creditCode: row.tyshxydm }
})
} else {
this.$message.error("该企业未在企业库");
}
}) })
}, },
// table // table

@ -388,6 +388,15 @@ export default {
</script> </script>
<style lang='scss'> <style lang='scss'>
::v-deep .el-form {
.el-form-item__content {
.el-upload-list {
.el-upload-list__item{
transition: none !important;
}
}
}
}
.editor-tabs { .editor-tabs {
background: #121315; background: #121315;

@ -64,7 +64,7 @@
</el-table-column> </el-table-column>
<!-- <el-table-column prop="enterpriseDirectory" label="企业名录分类" :show-overflow-tooltip="true" min-width="190"></el-table-column> --> <!-- <el-table-column prop="enterpriseDirectory" label="企业名录分类" :show-overflow-tooltip="true" min-width="190"></el-table-column> -->
<el-table-column prop="templateName" label="模版名称" min-width="180" :show-overflow-tooltip="true"></el-table-column> <el-table-column prop="templateName" label="模版名称" min-width="180" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="状态" min-width="50" > <el-table-column label="状态" min-width="100" >
<template slot-scope="scope"> <template slot-scope="scope">
<span :class="scope.row.status == 2 ? 'tab-green' : scope.row.status == 1 ? 'tab-red' : scope.row.status == 0 ? 'tab-blue' : scope.row.status == 3 ? 'tab-green' : ''">{{ scope.row.status == 2 ? '有效' : scope.row.status == 1 ? '过期' : scope.row.status == 0 ? '未开始' : scope.row.status == 3 ? '长期有效' : '' }}</span> <span :class="scope.row.status == 2 ? 'tab-green' : scope.row.status == 1 ? 'tab-red' : scope.row.status == 0 ? 'tab-blue' : scope.row.status == 3 ? 'tab-green' : ''">{{ scope.row.status == 2 ? '有效' : scope.row.status == 1 ? '过期' : scope.row.status == 0 ? '未开始' : scope.row.status == 3 ? '长期有效' : '' }}</span>
</template> </template>

@ -124,7 +124,13 @@ export default {
width: 100%; width: 100%;
text-align: center; text-align: center;
} }
:v-deep .el-upload-list__item{ ::v-deep .el-form {
transition: none !important; .el-form-item__content {
.el-upload-list {
.el-upload-list__item{
transition: none !important;
}
}
}
} }
</style> </style>

Loading…
Cancel
Save