mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 20:12:48 +00:00
27 lines
902 B
Vue
27 lines
902 B
Vue
<template>
|
||
<div>
|
||
<p><b>{{$L("机器人详情")}}</b></p>
|
||
<p> </p>
|
||
|
||
<p>{{$L("机器人ID")}}:<span class="mark-color">{{ msg.data.userid }}</span></p>
|
||
<p>{{$L("机器人名称")}}:<span class="mark-color">{{ msg.data.nickname }}</span></p>
|
||
<p>{{$L("保留消息时间")}}:<span class="mark-color">{{ msg.data.clear_day }}</span></p>
|
||
<p>{{$L("最后一次清理时间")}}:<span class="mark-color">{{ msg.data.clear_at || '-' }}</span></p>
|
||
<p>{{$L("Webhook地址")}}:<span class="mark-color">{{ msg.data.webhook_url || '-' }}</span></p>
|
||
<p>{{$L("Webhook请求次数")}}:<span class="mark-color">{{ msg.data.webhook_num }}</span></p>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
export default {
|
||
props: {
|
||
msg: Object,
|
||
},
|
||
data() {
|
||
return {};
|
||
},
|
||
computed: {},
|
||
methods: {},
|
||
}
|
||
</script>
|