Преглед на файлове

[FE]AI报警详情高保真解决

liuwenxun преди 4 години
родител
ревизия
c7d72e469a
променени са 1 файла, в които са добавени 3 реда и са изтрити 2 реда
  1. 3 2
      security-protection-platform/src/modules/aialarm/index.vue

+ 3 - 2
security-protection-platform/src/modules/aialarm/index.vue

@ -123,12 +123,12 @@
123 123

124 124
          <div class="detail">
125 125
            <label class="detail_title">处理人:</label>
126
            <div class="detail_content">{{ alarmDetailData.workEmployeeRoleName }}</div>
126
            <div class="detail_content">{{ alarmDetailData.workEmployeeRoleName|| '--' }}</div>
127 127
          </div>
128 128

129 129
          <div class="detail">
130 130
            <label class="detail_title">处理时间:</label>
131
            <div>{{ alarmDetailData.disposeDate }}</div>
131
            <div>{{ alarmDetailData.disposeDate || '--' }}</div>
132 132
          </div>
133 133
        </div>
134 134

@ -317,6 +317,7 @@ export default {
317 317
        // console.log(this.status)
318 318
      } else {
319 319
        this.$Message.warning('请选择按钮')
320
        this.loading = false
320 321
      }
321 322
    },
322 323