diff --git a/components/AiDvRender.vue b/components/AiDvRender.vue
index 612265db..9ae9916d 100644
--- a/components/AiDvRender.vue
+++ b/components/AiDvRender.vue
@@ -19,7 +19,7 @@
diff --git a/project/fengdu/app/AppIntegratingAudit/components/List.vue b/project/fengdu/app/AppIntegratingAudit/components/List.vue
index 68562345..a0990033 100644
--- a/project/fengdu/app/AppIntegratingAudit/components/List.vue
+++ b/project/fengdu/app/AppIntegratingAudit/components/List.vue
@@ -82,7 +82,7 @@
详情
删除
- 推送精选
+ 推送精选
diff --git a/project/fengdu/app/AppIntegratingRules/AppIntegratingRules.vue b/project/fengdu/app/AppIntegratingRules/AppIntegratingRules.vue
index d73d9845..004417a9 100644
--- a/project/fengdu/app/AppIntegratingRules/AppIntegratingRules.vue
+++ b/project/fengdu/app/AppIntegratingRules/AppIntegratingRules.vue
@@ -1,7 +1,7 @@
-
+
diff --git a/project/fengdu/app/AppIntegratingRules/components/List.vue b/project/fengdu/app/AppIntegratingRules/components/List.vue
index 74bf234a..63428d25 100644
--- a/project/fengdu/app/AppIntegratingRules/components/List.vue
+++ b/project/fengdu/app/AppIntegratingRules/components/List.vue
@@ -46,7 +46,7 @@
-
+
@@ -54,7 +54,7 @@
常规
-
+
@@ -68,7 +68,7 @@
form.areaName = v"
- :disabled-level="$store.state.user.info.areaList.length - 1"
+ :disabled-level="$store.state.user.info.areaList.length"
always-show
:instance="instance"
v-model="form.areaId">
@@ -173,7 +173,7 @@
{required: true, message: "请选择事件/类型", trigger: "change"},
],
ruleName: [
- {required: true, message: "请输入自定义事件", trigger: "change"},
+ {required: true, message: "请选择自定义事件", trigger: "change"},
],
scoringCycle: [
{required: true, message: "请选择周期范围", trigger: "change"},
@@ -231,6 +231,10 @@
}
});
},
+
+ change (e) {
+ console.log(this.dict.getDict('appIntegralApplyEventType'))
+ },
closed () {
this.form.ruleType = '0'
this.form.systemRuleId = ''
diff --git a/ui/packages/basic/AiSelect.vue b/ui/packages/basic/AiSelect.vue
index 1713d31e..f35f77e3 100644
--- a/ui/packages/basic/AiSelect.vue
+++ b/ui/packages/basic/AiSelect.vue
@@ -13,7 +13,7 @@
diff --git a/ui/packages/tools/AiEchartV2.vue b/ui/packages/tools/AiEchartV2.vue
index 969bdebd..e0d90b93 100644
--- a/ui/packages/tools/AiEchartV2.vue
+++ b/ui/packages/tools/AiEchartV2.vue
@@ -1,6 +1,6 @@
@@ -39,7 +39,8 @@ export default {
data() {
return {
chart: null,
- timer: null
+ timer: null,
+ AiEchart: `AiEchart-${new Date().getTime()}`
}
},
computed: {
@@ -176,14 +177,14 @@ export default {
}
},
initChart() {
- this.chart = echarts.init(this.$refs.AiEchart)
+ this.chart = echarts.init(this.$refs[this.AiEchart])
this.chart.setOption(this.chartOptions || {})
},
watchResize() {
this.timer && clearInterval(this.timer)
this.timer = setInterval(() => {
- if (this.chart?.getHeight() != this.$refs.AiEchart?.clientHeight ||
- this.chart?.getWidth() != this.$refs.AiEchart?.clientWidth) {
+ if (this.chart?.getHeight() != this.$refs[this.AiEchart]?.clientHeight ||
+ this.chart?.getWidth() != this.$refs[this.AiEchart]?.clientWidth) {
this.chart?.resize()
}
}, 1000)
@@ -196,6 +197,7 @@ export default {
},
mounted() {
this.$nextTick(() => {
+ console.log(this.$refs[this.AiEchart])
this.watchResize()
this.initChart()
this.getChartData()