mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 22:30:28 +08:00
优化节点同步任务界面
This commit is contained in:
@@ -3,4 +3,7 @@ h3 span {
|
|||||||
color: grey;
|
color: grey;
|
||||||
font-size: 0.6em !important;
|
font-size: 0.6em !important;
|
||||||
}
|
}
|
||||||
|
table td {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
/*# sourceMappingURL=listPopup.css.map */
|
/*# sourceMappingURL=listPopup.css.map */
|
||||||
@@ -1 +1 @@
|
|||||||
{"version":3,"sources":["listPopup.less"],"names":[],"mappings":"AAAA,EAAG;EACF,kBAAA;EACA,WAAA;EACA,2BAAA","file":"listPopup.css"}
|
{"version":3,"sources":["listPopup.less"],"names":[],"mappings":"AAAA,EAAG;EACF,kBAAA;EACA,WAAA;EACA,gBAAA;;AAID,KACC;EACC,qBAAA","file":"listPopup.css"}
|
||||||
@@ -24,10 +24,10 @@
|
|||||||
<checkbox v-model="task.isChecked" @input="checkTask"></checkbox>
|
<checkbox v-model="task.isChecked" @input="checkTask"></checkbox>
|
||||||
</td>
|
</td>
|
||||||
<td>{{cluster.name}}</td>
|
<td>{{cluster.name}}</td>
|
||||||
<td>
|
<td nowrap="">
|
||||||
{{task.node.name}} <a :href="'/clusters/cluster/node?clusterId=' + cluster.id + '&nodeId=' + task.node.id" target="_blank"><i class="icon linkify small grey"></i></a>
|
{{task.node.name}} <a :href="'/clusters/cluster/node?clusterId=' + cluster.id + '&nodeId=' + task.node.id" target="_blank"><i class="icon linkify small grey"></i></a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td nowrap="">
|
||||||
<span v-if="task.type == 'configChanged' || task.type == 'globalServerConfigChanged'">同步配置</span>
|
<span v-if="task.type == 'configChanged' || task.type == 'globalServerConfigChanged'">同步配置</span>
|
||||||
<span v-if="task.type == 'ipItemChanged'">同步IP名单</span>
|
<span v-if="task.type == 'ipItemChanged'">同步IP名单</span>
|
||||||
<span v-if="task.type == 'scriptsChanged'">同步脚本</span>
|
<span v-if="task.type == 'scriptsChanged'">同步脚本</span>
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
<span v-if="task.isDone" class="red">{{task.error}}</span>
|
<span v-if="task.isDone" class="red">{{task.error}}</span>
|
||||||
<span v-else>正在同步...</span>
|
<span v-else>正在同步...</span>
|
||||||
</td>
|
</td>
|
||||||
<td>{{task.updatedTime}}</td>
|
<td nowrap="">{{task.updatedTime}}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="" title="删除" class="remove-btn" @click.prevent="deleteTask(task.id)"><i class="icon remove small grey"></i></a>
|
<a href="" title="删除" class="remove-btn" @click.prevent="deleteTask(task.id)"><i class="icon remove small grey"></i></a>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@@ -3,3 +3,10 @@ h3 span {
|
|||||||
color: grey;
|
color: grey;
|
||||||
font-size: 0.6em !important;
|
font-size: 0.6em !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
table {
|
||||||
|
td {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user