|
@@ -11,6 +11,16 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="项目" prop="project">
|
|
|
+ <el-select v-model="queryParams.project" placeholder="请选择项目" clearable size="small" >
|
|
|
+ <el-option
|
|
|
+ v-for="item in projectOptions"
|
|
|
+ :key="item.dictValue"
|
|
|
+ :label="item.dictLabel"
|
|
|
+ :value="item.dictValue"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="企微账号" prop="qwUserId" v-if="queryParams.sendType == 2">
|
|
|
<el-select v-model="queryParams.qwUserId" placeholder="企微账号" clearable size="small"
|
|
|
@change="updateQwuser()">
|
|
@@ -578,6 +588,7 @@ export default {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
},
|
|
|
+ projectOptions:[],
|
|
|
sendTypeOptions:[{
|
|
|
dictLabel:"会员",dictValue:'1'
|
|
|
},
|
|
@@ -635,6 +646,7 @@ export default {
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
+ project: null,
|
|
|
pageSize: 10,
|
|
|
userId: null,
|
|
|
videoId: null,
|
|
@@ -680,6 +692,9 @@ export default {
|
|
|
getMyQwUserList().then(response => {
|
|
|
this.myQwUserList = response.data;
|
|
|
});
|
|
|
+ this.getDicts("sys_course_project").then(response => {
|
|
|
+ this.projectOptions = response.data;
|
|
|
+ });
|
|
|
},
|
|
|
methods: {
|
|
|
|
|
@@ -871,6 +886,7 @@ export default {
|
|
|
this.resetForm("queryForm");
|
|
|
this.queryParams.sTime = null;
|
|
|
this.queryParams.eTime = null;
|
|
|
+ this.queryParams.project = null;
|
|
|
this.queryParams.upSTime = null;
|
|
|
this.queryParams.upETime = null;
|
|
|
this.queryParams.qecSTime = null;
|