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

des
吕天方 5 months ago
parent fdfc31839f
commit d641c38044

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

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

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

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

@ -64,7 +64,7 @@
</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 label="状态" min-width="50" >
<el-table-column label="状态" min-width="100" >
<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>
</template>

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

Loading…
Cancel
Save