This commit is contained in:
Leo
2025-12-05 22:36:03 +08:00
parent 13ae226379
commit 75329ffb84

View File

@@ -75,6 +75,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="接收人" align="center" prop="touser" min-width="200" :show-overflow-tooltip="true" />
<el-table-column label="创建时间" align="center" prop="createdAt" min-width="160">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createdAt) }}</span>
@@ -131,6 +132,12 @@
<el-radio :label="0">不参与统计</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="接收人" prop="touser">
<el-input v-model="form.touser" placeholder="请输入接收人列表多个用逗号分隔abc,bcd,efg" />
<div style="font-size: 12px; color: #909399; margin-top: 5px;">
企业微信用户ID多个用逗号分隔京粉推送时将发送给这些接收人
</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
@@ -157,6 +164,7 @@
{{ currentAdmin.isCount === 1 ? '参与统计' : '不参与统计' }}
</el-tag>
</el-descriptions-item>
<el-descriptions-item label="接收人" :span="2">{{ currentAdmin.touser || '-' }}</el-descriptions-item>
<el-descriptions-item label="创建时间">{{ parseTime(currentAdmin.createdAt) }}</el-descriptions-item>
<el-descriptions-item label="更新时间">{{ parseTime(currentAdmin.updatedAt) }}</el-descriptions-item>
</el-descriptions>
@@ -255,7 +263,8 @@ export default {
appKey: null,
secretKey: null,
isActive: 1,
isCount: 1
isCount: 1,
touser: null
};
this.resetForm("form");
},