Skip to content

Commit 221a338

Browse files
committed
站内信模块:完善注释
1 parent dbba4d8 commit 221a338

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

src/layout/components/Message/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- 弹出列表 -->
1010
<el-table v-loading="loading" :data="list">
11-
<el-table-column width="120" property="templateNickname" label="日期" />
11+
<el-table-column width="120" property="templateNickname" label="发送人" />
1212
<el-table-column width="180" property="title" label="发送时间">
1313
<template slot-scope="scope">
1414
<span>{{ parseTime(scope.row.createTime) }}</span>

src/views/system/notify/message/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="app-container">
3-
3+
<doc-alert title="站内信配置" url="https://doc.iocoder.cn/notify/" />
44
<!-- 搜索工作栏 -->
55
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
66
<el-form-item label="用户编号" prop="userId">

src/views/system/notify/my/index.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<template>
22
<div class="app-container">
3+
<doc-alert title="站内信配置" url="https://doc.iocoder.cn/notify/" />
4+
35
<!-- 搜索工作栏 -->
46
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
57
<el-form-item label="是否已读" prop="readStatus">

src/views/system/notify/template/index.vue

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<template>
22
<div class="app-container">
3+
<doc-alert title="站内信配置" url="https://doc.iocoder.cn/notify/" />
4+
35
<!-- 搜索工作栏 -->
46
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
57
<el-form-item label="模板名称" prop="name">
@@ -58,7 +60,7 @@
5860
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150">
5961
<template slot-scope="scope">
6062
<el-button size="mini" type="text" icon="el-icon-share" @click="handleSendNotify(scope.row)"
61-
v-hasPermi="['system:notify-template:send-notify']">发送</el-button>
63+
v-hasPermi="['system:notify-template:send-notify']">测试</el-button>
6264
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
6365
v-hasPermi="['system:notify-template:update']">修改</el-button>
6466
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
@@ -73,8 +75,8 @@
7375
<!-- 对话框(添加 / 修改) -->
7476
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
7577
<el-form ref="form" :model="form" :rules="rules" label-width="140px">
76-
<el-form-item label="模板编号" prop="code">
77-
<el-input v-model="form.code" placeholder="请输入模板编号" />
78+
<el-form-item label="模版编码" prop="code">
79+
<el-input v-model="form.code" placeholder="请输入模版编码" />
7880
</el-form-item>
7981
<el-form-item label="模板名称" prop="name">
8082
<el-input v-model="form.name" placeholder="请输入模版名称" />
@@ -182,7 +184,7 @@ export default {
182184
},
183185
sendNotifyRules: {
184186
userId: [{ required: true, message: "接收人不能为空", trigger: "blur" }],
185-
templateCode: [{ required: true, message: "模版编号不能为空", trigger: "blur" }],
187+
templateCode: [{ required: true, message: "模版编码不能为空", trigger: "blur" }],
186188
templateParams: { }
187189
}
188190
};

src/views/system/oauth2/client/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<template>
22
<div class="app-container">
3+
<doc-alert title="OAuth 2.0(SSO 单点登录)" url="https://doc.iocoder.cn/oauth2/" />
34

45
<!-- 搜索工作栏 -->
56
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">

src/views/system/oauth2/token/index.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<template>
22
<div class="app-container">
3+
<doc-alert title="OAuth 2.0(SSO 单点登录)" url="https://doc.iocoder.cn/oauth2/" />
34
<doc-alert title="用户体系" url="https://doc.iocoder.cn/user-center/" />
5+
46
<!-- 搜索工作栏 -->
57
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
68
<el-form-item label="用户编号" prop="userId">

0 commit comments

Comments
 (0)