Merge branch 'dev' of https://gitee.com/zzpaym/zhongzheng-clear-sample-admin into dev
This commit is contained in:
commit
02b8ee77f5
|
|
@ -117,6 +117,18 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="labels">
|
<div class="labels">
|
||||||
|
<!-- <div v-if="scope.row.conceptLabels && scope.row.conceptLabels.length > 0" class="label_item_box">
|
||||||
|
<div v-for="item in scope.row.conceptLabels" :key="item" class="label_item" style="background-color: #eee6cd">
|
||||||
|
{{ item }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="scope.row.industryLabels && scope.row.industryLabels.length > 0" class="label_item_box">
|
||||||
|
<div v-for="item in scope.row.industryLabels" :key="item" class="label_item" style="background-color: #cfdcf3">
|
||||||
|
{{ item }}
|
||||||
|
</div>
|
||||||
|
</div> -->
|
||||||
|
|
||||||
<div style="background-color: #eee6cd" class="label_item"
|
<div style="background-color: #eee6cd" class="label_item"
|
||||||
v-if="scope.row.conceptLabels && scope.row.conceptLabels.length > 0">
|
v-if="scope.row.conceptLabels && scope.row.conceptLabels.length > 0">
|
||||||
{{ scope.row.conceptLabels[0] }}
|
{{ scope.row.conceptLabels[0] }}
|
||||||
|
|
@ -778,8 +790,8 @@ function restData() {
|
||||||
|
|
||||||
includeRuleIds.value = null;
|
includeRuleIds.value = null;
|
||||||
excludeRuleIds.value = null;
|
excludeRuleIds.value = null;
|
||||||
form.value.companyName = null
|
form.value.companyName = null;
|
||||||
form.value.exclusive = null
|
form.value.exclusive = null;
|
||||||
|
|
||||||
getData();
|
getData();
|
||||||
}
|
}
|
||||||
|
|
@ -877,7 +889,7 @@ onMounted(async () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
getSignalRulesFn();
|
getSignalRulesFn();
|
||||||
getCompany()
|
getCompany();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -987,6 +999,7 @@ onMounted(async () => {
|
||||||
.labels {
|
.labels {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
.label_item {
|
.label_item {
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
|
@ -1007,6 +1020,15 @@ onMounted(async () => {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label_item_box {
|
||||||
|
// width: 100%;
|
||||||
|
display: flex;
|
||||||
|
gap: 5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -197,6 +197,18 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="labels" v-if="Session.get('userInfoLocal').userType == '00'">
|
<div class="labels" v-if="Session.get('userInfoLocal').userType == '00'">
|
||||||
|
<!-- <div v-if="scope.row.conceptLabels && scope.row.conceptLabels.length > 0" class="label_item_box">
|
||||||
|
<div v-for="item in scope.row.conceptLabels" :key="item" class="label_item" style="background-color: #eee6cd">
|
||||||
|
{{ item }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="scope.row.industryLabels && scope.row.industryLabels.length > 0" class="label_item_box">
|
||||||
|
<div v-for="item in scope.row.industryLabels" :key="item" class="label_item" style="background-color: #cfdcf3">
|
||||||
|
{{ item }}
|
||||||
|
</div>
|
||||||
|
</div> -->
|
||||||
|
|
||||||
<div style="background-color: #eee6cd" class="label_item"
|
<div style="background-color: #eee6cd" class="label_item"
|
||||||
v-if="scope.row.conceptLabels && scope.row.conceptLabels.length > 0">
|
v-if="scope.row.conceptLabels && scope.row.conceptLabels.length > 0">
|
||||||
{{ scope.row.conceptLabels[0] }}
|
{{ scope.row.conceptLabels[0] }}
|
||||||
|
|
@ -933,8 +945,8 @@ function restData() {
|
||||||
|
|
||||||
includeRuleIds.value = null;
|
includeRuleIds.value = null;
|
||||||
excludeRuleIds.value = null;
|
excludeRuleIds.value = null;
|
||||||
form.value.companyName = null
|
form.value.companyName = null;
|
||||||
form.value.exclusive = null
|
form.value.exclusive = null;
|
||||||
|
|
||||||
getData();
|
getData();
|
||||||
}
|
}
|
||||||
|
|
@ -1065,7 +1077,7 @@ onMounted(async () => {
|
||||||
getSignalRulesFn();
|
getSignalRulesFn();
|
||||||
}
|
}
|
||||||
|
|
||||||
getCompany()
|
getCompany();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -1175,6 +1187,7 @@ onMounted(async () => {
|
||||||
.labels {
|
.labels {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
.label_item {
|
.label_item {
|
||||||
height: 24px;
|
height: 24px;
|
||||||
|
|
@ -1195,6 +1208,15 @@ onMounted(async () => {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.label_item_box {
|
||||||
|
// width: 100%;
|
||||||
|
display: flex;
|
||||||
|
gap: 5px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue