1
This commit is contained in:
@@ -75,6 +75,7 @@
|
|||||||
</el-tag>
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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">
|
<el-table-column label="创建时间" align="center" prop="createdAt" min-width="160">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ parseTime(scope.row.createdAt) }}</span>
|
<span>{{ parseTime(scope.row.createdAt) }}</span>
|
||||||
@@ -131,6 +132,12 @@
|
|||||||
<el-radio :label="0">不参与统计</el-radio>
|
<el-radio :label="0">不参与统计</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</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>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
@@ -157,6 +164,7 @@
|
|||||||
{{ currentAdmin.isCount === 1 ? '参与统计' : '不参与统计' }}
|
{{ currentAdmin.isCount === 1 ? '参与统计' : '不参与统计' }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</el-descriptions-item>
|
</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.createdAt) }}</el-descriptions-item>
|
||||||
<el-descriptions-item label="更新时间">{{ parseTime(currentAdmin.updatedAt) }}</el-descriptions-item>
|
<el-descriptions-item label="更新时间">{{ parseTime(currentAdmin.updatedAt) }}</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
@@ -255,7 +263,8 @@ export default {
|
|||||||
appKey: null,
|
appKey: null,
|
||||||
secretKey: null,
|
secretKey: null,
|
||||||
isActive: 1,
|
isActive: 1,
|
||||||
isCount: 1
|
isCount: 1,
|
||||||
|
touser: null
|
||||||
};
|
};
|
||||||
this.resetForm("form");
|
this.resetForm("form");
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user