threethousanddream пре 4 недеља
родитељ
комит
26d06f9724

+ 0 - 1
src/views/backup/list.vue

@@ -251,7 +251,6 @@ const backupsAll = () => {
   const loading = ElLoading.service({
     lock: true,
     text: '数据备份中...',
-    spinner: 'el-icon-loading',
     background: 'rgba(0, 0, 0, 0.7)',
   });
   backups({remark: setting.backupsForm.remark}).then(res => {

+ 1 - 0
src/views/statistics/report.vue

@@ -224,6 +224,7 @@ const getTableData = () => {
     records.forEach((i, index) => {
       i.dataIndex = (current - 1) * size + index + 1;
       i.time = moment(i.time).format('YYYY-MM-DD HH:mm:ss')
+      i.url = window._CONFIG.frontUrl + '#/newbi/fullscreen/' + i.visualId
     })
     state.list = records
     page.total = total

+ 1 - 0
src/views/statistics/visual.vue

@@ -225,6 +225,7 @@ const getTableData = () => {
     records.forEach((i, index) => {
       i.dataIndex = (current - 1) * size + index + 1;
       i.time = moment(i.time).format('YYYY-MM-DD HH:mm:ss')
+      i.url = window._CONFIG.frontUrl + '#/newbi/fullscreen/' + i.visualId
     })
     state.list = records
     page.total = total

+ 4 - 2
src/views/system/develop.vue

@@ -114,7 +114,7 @@
         </el-table-column>
         <el-table-column label="备注">
           <template v-slot="{row}">
-            <span>{{ row.remark }}</span>
+            <span>{{ row.remark || '-' }}</span>
           </template>
         </el-table-column>
       </el-table>
@@ -183,7 +183,9 @@ const onAuditConfirm = () => {
 const onShowRecord = row => {
   state.auditRecord = []
   applyRecord({id: row.id}).then(res => {
-    state.auditRecord = res.data || []
+    let data = res.data || []
+    data = data.filter(i => i.status !== 1)
+    state.auditRecord = data
     state.showAuditRecord = true
   })
 }