Quellcode durchsuchen

增加异常原因显示

pull/2/head
lcr vor 3 Monaten
Ursprung
Commit
ab5f732471
3 geänderte Dateien mit 11 neuen und 3 gelöschten Zeilen
  1. +2
    -0
      debug.log
  2. +1
    -1
      src/views/business/ctApply/index.vue
  3. +8
    -2
      src/views/business/ctApplyPlan/index.vue

+ 2
- 0
debug.log Datei anzeigen

@@ -1,2 +1,4 @@
[0613/100035.500:ERROR:registration_protocol_win.cc(108)] CreateFile: 系统找不到指定的文件。 (0x2)
[0613/102540.147:ERROR:registration_protocol_win.cc(108)] CreateFile: 系统找不到指定的文件。 (0x2)
[0618/152950.053:ERROR:registration_protocol_win.cc(108)] CreateFile: 系统找不到指定的文件。 (0x2)
[0618/160106.928:ERROR:registration_protocol_win.cc(108)] CreateFile: 系统找不到指定的文件。 (0x2)

+ 1
- 1
src/views/business/ctApply/index.vue Datei anzeigen

@@ -33,7 +33,7 @@
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleSyn"
v-hasPermi="['business:ctApply:add']">同步应用数据</el-button>
v-hasPermi="['business:ctApply:syn']">同步应用数据</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>


+ 8
- 2
src/views/business/ctApplyPlan/index.vue Datei anzeigen

@@ -87,7 +87,13 @@
<el-table-column label="执行表达式" align="center" prop="cronExpression" width="100" />
<el-table-column label="任务执行状态" align="center" fixed="right" prop="taskStatus" width="100">
<template slot-scope="scope">
<dict-tag :options="dict.type.plan_run_status" :value="scope.row.taskStatus" />
<el-popover v-if="scope.row.taskStatus == 'error'" trigger="hover" placement="top">
<span>{{ scope.row.remark }}</span>
<div slot="reference" class="name-wrapper">
<dict-tag :options="dict.type.plan_run_status" :value="scope.row.taskStatus" />
</div>
</el-popover>
<dict-tag v-if="scope.row.taskStatus != 'error'" :options="dict.type.plan_run_status" :value="scope.row.taskStatus" />
</template>
</el-table-column>
<el-table-column label="上次执行时间" align="center" prop="lastExecTime" width="170" />
@@ -116,7 +122,7 @@
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
<!-- <el-table-column label="备注" align="center" prop="remark" /> -->
<el-table-column label="操作" align="center" width="250" fixed="right" class-name="small-padding fixed-width">
<template slot-scope="scope">
<router-link to="/rpa/ctResourceLibrary">


Laden…
Abbrechen
Speichern