CzRger 5 mesi fa
parent
commit
4b7097b873

+ 14 - 0
src/views/manage/theme/relation-column.vue

@@ -29,6 +29,13 @@
               inactive-value="0"
             />
           </template>
+          <template #isShow-header-value="{scope}">
+            展示
+            <el-switch
+              v-model="state.showAll"
+              @change="(val) => state.query.result.data.forEach(v => v.isShow = val ? '1' : '0')"
+            />
+          </template>
         </CusTable>
       </div>
     </div>
@@ -54,6 +61,7 @@ const props = defineProps({
   transfer: {}
  })
 const state: any = reactive({
+  showAll: false,
   loading: false,
   query: {
     loading: false,
@@ -98,6 +106,12 @@ const onSubmit = () => {
     })
   }).catch(() => {})
 }
+const isAllCpt = computed(() => {
+  return state.query.result.data.every(v => v.isShow == '1')
+})
+watch(() => isAllCpt.value, (n) => {
+  state.showAll = n
+})
 watch(() => props.show, (n) => {
   if (n) {
     initRelation()

+ 3 - 3
src/views/web/archive/index.vue

@@ -200,7 +200,7 @@ const themeConfigCpt = computed(() => {
       if (item.indexCondition) {
         const obj: any = {}
         JSON.parse(item.indexCondition).forEach(s => {
-          obj[s.indexParam] = route.query[s.themeParam]
+          obj[s.indexParam] = route.query[s.themeParam] || ''
         })
         param.serviceMap = obj
       }
@@ -546,9 +546,9 @@ const initWS = () => {
                   edges: [...themeConfigCpt.value.chart.edges],
                   nodes: themeConfigCpt.value.chart.nodes.map(v => {
                     if (v.__type === 'inner_index') {
-                      v.num = json.datas.filter(s => s.indexCode === v.indexTableName)?.[0]?.data || 0
+                      v.num = json.datas.filter(s => s.indexCode == v.indexTableName)?.[0]?.data || 0
                     } else {
-                      v.num = json.datas.filter(s => s.serviceId === v.indexId)?.[0]?.data || 0
+                      v.num = json.datas.filter(s => s.serviceId == v.indexId)?.[0]?.data || 0
                     }
                     return v
                   })

+ 1 - 0
src/views/web/archive/relation-chart.vue

@@ -21,6 +21,7 @@ const state: any = reactive({
 const ref_main = ref()
 const setNodes = (data) => {
   data.nodes.forEach(v => {
+    v.weight = Number(v.weight)
     v.style = {
       badge: true,
       badges:[{text: String(v.num), placement: 'top-right', offsetX: -10, offsetY: 10}],