|
@@ -11,16 +11,16 @@
|
|
|
/>
|
|
/>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</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="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="nickName" v-if="queryParams.sendType == 1">
|
|
<el-form-item label="会员昵称" prop="nickName" v-if="queryParams.sendType == 1">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="queryParams.nickName"
|
|
v-model="queryParams.nickName"
|
|
@@ -68,11 +68,14 @@
|
|
|
/>
|
|
/>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="所属销售" prop="companyUserId">
|
|
|
|
|
|
|
+ <el-form-item v-if="companyName === undefined || companyName === 1" label="所属销售" prop="companyUserId">
|
|
|
<el-select v-model="queryParams.companyUserId" clearable filterable remote
|
|
<el-select v-model="queryParams.companyUserId" clearable filterable remote
|
|
|
placeholder="请输入关键词" :remote-method="loadCompanyUserOptions"
|
|
placeholder="请输入关键词" :remote-method="loadCompanyUserOptions"
|
|
|
v-select-load-more="loadMoreCompanyUserOptions"
|
|
v-select-load-more="loadMoreCompanyUserOptions"
|
|
|
- :loading="companyUserOptionsLoading">
|
|
|
|
|
|
|
+ @change="handleCompanyUserChange"
|
|
|
|
|
+ :loading="companyUserOptionsLoading"
|
|
|
|
|
+ @visible-change="handleCompanyUserDropdownVisible"
|
|
|
|
|
+ >
|
|
|
<el-option
|
|
<el-option
|
|
|
v-for="item in companyUserOptions"
|
|
v-for="item in companyUserOptions"
|
|
|
:key="item.dictValue"
|
|
:key="item.dictValue"
|
|
@@ -81,11 +84,26 @@
|
|
|
</el-option>
|
|
</el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
-
|
|
|
|
|
- <el-form-item label="所属企微" prop="qwUserName">
|
|
|
|
|
- <el-select v-model="queryParams.qwUserName" clearable filterable remote
|
|
|
|
|
- placeholder="请输入关键词" :remote-method="loadQwUserOptions"
|
|
|
|
|
- v-select-load-more="loadMoreQwUserOptions"
|
|
|
|
|
|
|
+ <el-form-item v-if="companyName==2" label="所属销售" prop="companyUserId">
|
|
|
|
|
+ <el-select v-model="queryParams.companyUserId" clearable filterable remote
|
|
|
|
|
+ placeholder="请输入关键词"
|
|
|
|
|
+ v-select-load-more="loadMoreCompanyUserOptions"
|
|
|
|
|
+ @change="handleCompanyUserChange"
|
|
|
|
|
+ @visible-change="handleQwUserDropdownVisible"
|
|
|
|
|
+ :loading="companyUserOptionsLoading">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in companyUserOptionsByAll"
|
|
|
|
|
+ :key="item.dictValue"
|
|
|
|
|
+ :label="item.dictLabel"
|
|
|
|
|
+ :value="item.dictValue">
|
|
|
|
|
+ </el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="所属企微" prop="qwUserName" v-if="queryParams.companyUserId">
|
|
|
|
|
+ <el-select v-model="queryParams.qwUserName"
|
|
|
|
|
+ clearable filterable
|
|
|
|
|
+ placeholder="请输入关键词"
|
|
|
|
|
+ @visible-change="handleQwUserDropdownVisible"
|
|
|
:loading="qwUserOptionsLoading">
|
|
:loading="qwUserOptionsLoading">
|
|
|
<el-option
|
|
<el-option
|
|
|
v-for="item in qwUserOptions"
|
|
v-for="item in qwUserOptions"
|
|
@@ -95,7 +113,6 @@
|
|
|
</el-option>
|
|
</el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
-
|
|
|
|
|
<!-- sop名称 -->
|
|
<!-- sop名称 -->
|
|
|
<el-form-item label="SOP名称" prop="sopId" v-if="queryParams.sendType == 2">
|
|
<el-form-item label="SOP名称" prop="sopId" v-if="queryParams.sendType == 2">
|
|
|
<el-autocomplete
|
|
<el-autocomplete
|
|
@@ -165,13 +182,13 @@
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
<el-date-picker
|
|
<el-date-picker
|
|
|
v-model="createTimeText"
|
|
v-model="createTimeText"
|
|
|
- type="daterange"
|
|
|
|
|
|
|
+ type="datetimerange"
|
|
|
range-separator="至"
|
|
range-separator="至"
|
|
|
start-placeholder="开始日期"
|
|
start-placeholder="开始日期"
|
|
|
end-placeholder="结束日期"
|
|
end-placeholder="结束日期"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
|
|
- style="width: 240px"
|
|
|
|
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
@change="createChange"
|
|
@change="createChange"
|
|
|
|
|
+ :default-time="['00:00:00', '23:59:59']"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
<!-- 最新更新时间 -->
|
|
<!-- 最新更新时间 -->
|
|
@@ -248,20 +265,20 @@
|
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
- <el-form-item label="是否为会员" prop="isVip">
|
|
|
|
|
- <el-select
|
|
|
|
|
- filterable
|
|
|
|
|
- v-model="queryParams.isVip"
|
|
|
|
|
- placeholder="请选择是否为会员"
|
|
|
|
|
- clearable size="small">
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="dict in isVipList"
|
|
|
|
|
- :key="dict.dictValue"
|
|
|
|
|
- :label="dict.dictLabel"
|
|
|
|
|
- :value="dict.dictValue"
|
|
|
|
|
- />
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
|
|
+<!-- <el-form-item label="是否注册" prop="isVip">-->
|
|
|
|
|
+<!-- <el-select-->
|
|
|
|
|
+<!-- filterable-->
|
|
|
|
|
+<!-- v-model="queryParams.isVip"-->
|
|
|
|
|
+<!-- placeholder="请选择是否注册"-->
|
|
|
|
|
+<!-- clearable size="small">-->
|
|
|
|
|
+<!-- <el-option-->
|
|
|
|
|
+<!-- v-for="dict in isVipList"-->
|
|
|
|
|
+<!-- :key="dict.dictValue"-->
|
|
|
|
|
+<!-- :label="dict.dictLabel"-->
|
|
|
|
|
+<!-- :value="dict.dictValue"-->
|
|
|
|
|
+<!-- />-->
|
|
|
|
|
+<!-- </el-select>-->
|
|
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
@@ -355,6 +372,16 @@
|
|
|
<el-table-column label="完课时间" align="center" prop="finishTime" />
|
|
<el-table-column label="完课时间" align="center" prop="finishTime" />
|
|
|
<el-table-column label="营期时间" align="center" prop="campPeriodTime" />
|
|
<el-table-column label="营期时间" align="center" prop="campPeriodTime" />
|
|
|
<el-table-column label="进线时间" align="center" prop="qecCreateTime" />
|
|
<el-table-column label="进线时间" align="center" prop="qecCreateTime" />
|
|
|
|
|
+ <el-table-column label="是否领奖" align="center" prop="rewardType" >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-tag
|
|
|
|
|
+ :type="scope.row.rewardType ? 'success' : 'info'"
|
|
|
|
|
+ effect="plain"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ scope.row.rewardType ? '已领取' : '未领取' }}
|
|
|
|
|
+ </el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
fixed="right"
|
|
fixed="right"
|
|
|
label="操作"
|
|
label="操作"
|
|
@@ -445,7 +472,7 @@
|
|
|
<!-- <el-table-column label="会员电话" align="center" prop="phone" />-->
|
|
<!-- <el-table-column label="会员电话" align="center" prop="phone" />-->
|
|
|
<!-- <el-table-column label="所属销售" align="center" prop="companyUserName" />-->
|
|
<!-- <el-table-column label="所属销售" align="center" prop="companyUserName" />-->
|
|
|
<!-- <el-table-column label="所属公司" align="center" prop="companyName" />-->
|
|
<!-- <el-table-column label="所属公司" align="center" prop="companyName" />-->
|
|
|
- <el-table-column label="转帐金额" align="center" prop="amount" />
|
|
|
|
|
|
|
+ <el-table-column label="转账金额" align="center" prop="amount" />
|
|
|
<el-table-column label="状态" align="center" prop="status" >
|
|
<el-table-column label="状态" align="center" prop="status" >
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-tag>
|
|
<el-tag>
|
|
@@ -592,6 +619,11 @@ export default {
|
|
|
name: "CourseWatchLog",
|
|
name: "CourseWatchLog",
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
|
|
+ companyUserFirstLoad: true, // 首次加载标志
|
|
|
|
|
+ qwUserFirstLoad: true, // 首次加载标志
|
|
|
|
|
+ companyUserDropdownVisible: false, // 下拉框显示状态
|
|
|
|
|
+ qwUserDropdownVisible: false, // 下拉框显示状态
|
|
|
|
|
+ companyName:process.env.VUE_APP_COURSE_COMPANY_NAME,
|
|
|
// 日历 key 控制刷新
|
|
// 日历 key 控制刷新
|
|
|
scheduleCalendarKey: 0,
|
|
scheduleCalendarKey: 0,
|
|
|
createCalendarKey: 0,
|
|
createCalendarKey: 0,
|
|
@@ -765,6 +797,7 @@ export default {
|
|
|
pageSize: 10
|
|
pageSize: 10
|
|
|
},
|
|
},
|
|
|
companyUserOptions: [],
|
|
companyUserOptions: [],
|
|
|
|
|
+ companyUserOptionsByAll: [],
|
|
|
companyUserOptionsLoading: false,
|
|
companyUserOptionsLoading: false,
|
|
|
// 企微信息
|
|
// 企微信息
|
|
|
qwUserOptions: [],
|
|
qwUserOptions: [],
|
|
@@ -783,23 +816,70 @@ export default {
|
|
|
this.courseLists = response.list;
|
|
this.courseLists = response.list;
|
|
|
});
|
|
});
|
|
|
this.getList();
|
|
this.getList();
|
|
|
- this.getDicts("sys_course_watch_log_type").then(response => {
|
|
|
|
|
|
|
+ this.getDicts("sys_course_watch_log_type_new").then(response => {
|
|
|
this.logTypeOptions = response.data;
|
|
this.logTypeOptions = response.data;
|
|
|
});
|
|
});
|
|
|
this.getDicts("sys_course_project").then(response => {
|
|
this.getDicts("sys_course_project").then(response => {
|
|
|
this.projectOptions = response.data;
|
|
this.projectOptions = response.data;
|
|
|
});
|
|
});
|
|
|
|
|
+ this.getCompanyUserListLikeName(true);
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 处理所属销售下拉框显示状态变化
|
|
|
|
|
+ */
|
|
|
|
|
+ handleCompanyUserDropdownVisible(visible) {
|
|
|
|
|
+ this.companyUserDropdownVisible = visible;
|
|
|
|
|
+ if (visible && this.companyUserFirstLoad) {
|
|
|
|
|
+ // 首次展开下拉框时加载数据
|
|
|
|
|
+ this.companyUserFirstLoad = false;
|
|
|
|
|
+ this.loadCompanyUserOptions('');
|
|
|
|
|
+ } else if (visible && this.companyUserOptions.length === 0) {
|
|
|
|
|
+ // 下拉框显示但无数据时重新加载
|
|
|
|
|
+ this.loadCompanyUserOptions('');
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 处理所属企微下拉框显示状态变化
|
|
|
|
|
+ */
|
|
|
|
|
+ handleQwUserDropdownVisible(visible) {
|
|
|
|
|
+ this.qwUserDropdownVisible = visible;
|
|
|
|
|
+ if (visible && this.qwUserFirstLoad) {
|
|
|
|
|
+ // 首次展开下拉框时加载数据
|
|
|
|
|
+ this.qwUserFirstLoad = false;
|
|
|
|
|
+ this.loadQwUserOptions('');
|
|
|
|
|
+ } else if (visible && this.qwUserOptions.length === 0) {
|
|
|
|
|
+ // 下拉框显示但无数据时重新加载
|
|
|
|
|
+ this.loadQwUserOptions('');
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 当销售被选择
|
|
|
|
|
+ * 级联更新企微列表
|
|
|
|
|
+ */
|
|
|
|
|
+ handleCompanyUserChange(companyUserId){
|
|
|
|
|
+ if (companyUserId) {
|
|
|
|
|
+ // 清空当前企微选择
|
|
|
|
|
+ this.queryParams.qwUserName = "";
|
|
|
|
|
+ this.qwUserOptions = [];
|
|
|
|
|
+ this.qwUserOptionsParams.pageNum = 1;
|
|
|
|
|
+
|
|
|
|
|
+ // 重新加载企微列表,传入销售ID作为过滤条件
|
|
|
|
|
+ this.getQwList();
|
|
|
|
|
+ } else {
|
|
|
|
|
+ // 清空销售时也清空企微
|
|
|
|
|
+ this.queryParams.qwUserName = "";
|
|
|
|
|
+ this.qwUserOptions = [];
|
|
|
|
|
+ this.qwUserOptionsParams.pageNum = 1;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
/**
|
|
/**
|
|
|
* 根据名称模糊查询用户列表
|
|
* 根据名称模糊查询用户列表
|
|
|
* @param query 参数
|
|
* @param query 参数
|
|
|
*/
|
|
*/
|
|
|
loadCompanyUserOptions(query) {
|
|
loadCompanyUserOptions(query) {
|
|
|
this.companyUserOptions = [];
|
|
this.companyUserOptions = [];
|
|
|
- if (query === '') {
|
|
|
|
|
- return;
|
|
|
|
|
- }
|
|
|
|
|
|
|
|
|
|
this.companyUserOptionsParams.pageNum = 1
|
|
this.companyUserOptionsParams.pageNum = 1
|
|
|
this.companyUserOptionsParams.name = query
|
|
this.companyUserOptionsParams.name = query
|
|
@@ -812,9 +892,6 @@ export default {
|
|
|
*/
|
|
*/
|
|
|
loadQwUserOptions(query) {
|
|
loadQwUserOptions(query) {
|
|
|
this.qwUserOptions = [];
|
|
this.qwUserOptions = [];
|
|
|
- if (query === '') {
|
|
|
|
|
- return;
|
|
|
|
|
- }
|
|
|
|
|
this.qwUserOptionsParams.pageNum = 1
|
|
this.qwUserOptionsParams.pageNum = 1
|
|
|
// 将搜索关键词设置到queryParams中
|
|
// 将搜索关键词设置到queryParams中
|
|
|
this.queryParams.qwUserName = query
|
|
this.queryParams.qwUserName = query
|
|
@@ -836,22 +913,44 @@ export default {
|
|
|
/**
|
|
/**
|
|
|
* 获取员工列表
|
|
* 获取员工列表
|
|
|
*/
|
|
*/
|
|
|
- getCompanyUserListLikeName() {
|
|
|
|
|
- getCompanyUserListLikeName(this.companyUserOptionsParams).then(response => {
|
|
|
|
|
- this.companyUserOptions = [...this.companyUserOptions, ...response.data.list]
|
|
|
|
|
- this.companyUserOptionsParams.hasNextPage = response.data.hasNextPage
|
|
|
|
|
- this.companyUserOptionsLoading = false;
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ getCompanyUserListLikeName(isAll) {
|
|
|
|
|
+
|
|
|
|
|
+ if (isAll){
|
|
|
|
|
+
|
|
|
|
|
+ getCompanyUserListLikeName(this.companyUserOptionsParams).then(response => {
|
|
|
|
|
+ this.companyUserOptionsByAll = [...this.companyUserOptions, ...response.data.list]
|
|
|
|
|
+ this.companyUserOptionsParams.hasNextPage = response.data.hasNextPage
|
|
|
|
|
+ this.companyUserOptionsLoading = false;
|
|
|
|
|
+ });
|
|
|
|
|
+ }else {
|
|
|
|
|
+ getCompanyUserListLikeName(this.companyUserOptionsParams).then(response => {
|
|
|
|
|
+ this.companyUserOptions = [...this.companyUserOptions, ...response.data.list]
|
|
|
|
|
+ this.companyUserOptionsParams.hasNextPage = response.data.hasNextPage
|
|
|
|
|
+ this.companyUserOptionsLoading = false;
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
+ },
|
|
|
getQwList() {
|
|
getQwList() {
|
|
|
|
|
+ const params = {
|
|
|
|
|
+ name: this.qwUserOptionsParams.name,
|
|
|
|
|
+ pageNum: this.qwUserOptionsParams.pageNum,
|
|
|
|
|
+ pageSize: this.qwUserOptionsParams.pageSize,
|
|
|
|
|
+ // 添加销售ID作为过滤条件
|
|
|
|
|
+ companyUserId: this.queryParams.companyUserId || null,
|
|
|
|
|
+ disableCompanyId: 1
|
|
|
|
|
+ };
|
|
|
console.log("企微参数", this.queryParams);
|
|
console.log("企微参数", this.queryParams);
|
|
|
- getQwList(this.queryParams).then(response => {
|
|
|
|
|
- this.qwUserOptions = [...this.qwUserOptions, ...response.rows]
|
|
|
|
|
- // 根据实际返回的数据结构设置hasNextPage
|
|
|
|
|
- this.qwUserOptionsParams.hasNextPage = response.rows && response.rows.length >= this.qwUserOptionsParams.pageSize
|
|
|
|
|
|
|
+ getQwList(params).then(response => {
|
|
|
|
|
+ if (this.qwUserOptionsParams.pageNum === 1) {
|
|
|
|
|
+ this.qwUserOptions = response.rows || [];
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.qwUserOptions = [...this.qwUserOptions, ...(response.rows || [])];
|
|
|
|
|
+ }
|
|
|
|
|
+ this.qwUserOptionsParams.hasNextPage = response.rows && response.rows.length >= this.qwUserOptionsParams.pageSize;
|
|
|
|
|
+ }).finally(()=>{
|
|
|
this.qwUserOptionsLoading = false;
|
|
this.qwUserOptionsLoading = false;
|
|
|
- });
|
|
|
|
|
|
|
+ })
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -866,7 +965,6 @@ export default {
|
|
|
this.getQwList()
|
|
this.getQwList()
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
-
|
|
|
|
|
// 重置日历组件
|
|
// 重置日历组件
|
|
|
resetCalendars() {
|
|
resetCalendars() {
|
|
|
this.scheduleTime = [];
|
|
this.scheduleTime = [];
|
|
@@ -921,8 +1019,8 @@ export default {
|
|
|
createChange(createTime) {
|
|
createChange(createTime) {
|
|
|
if (createTime && createTime.length >= 2) {
|
|
if (createTime && createTime.length >= 2) {
|
|
|
// this.createTimeText = this.formatDateRange(createTime);
|
|
// this.createTimeText = this.formatDateRange(createTime);
|
|
|
- this.queryParams.sTime = createTime[0] || null;
|
|
|
|
|
- this.queryParams.eTime = createTime[1] || null;
|
|
|
|
|
|
|
+ this.queryParams.sTime = this.formatDate(createTime[0]) || null;
|
|
|
|
|
+ this.queryParams.eTime = this.formatDate(createTime[1]) || null;
|
|
|
} else {
|
|
} else {
|
|
|
this.createTimeText = '';
|
|
this.createTimeText = '';
|
|
|
this.queryParams.sTime = null;
|
|
this.queryParams.sTime = null;
|
|
@@ -1104,14 +1202,6 @@ export default {
|
|
|
},
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
handleQuery() {
|
|
|
- // 如果用户没有手动选择是否为会员,则根据 qwUserId 自动判断
|
|
|
|
|
- if (this.queryParams.isVip === null || this.queryParams.isVip === undefined || this.queryParams.isVip === '') {
|
|
|
|
|
- if (this.queryParams.qwUserId) {
|
|
|
|
|
- this.queryParams.isVip = 1; // 有 qwUserId 则为会员
|
|
|
|
|
- } else if (this.queryParams.qwUserId === null || this.queryParams.qwUserId === '') {
|
|
|
|
|
- this.queryParams.isVip = 0; // 没有 qwUserId 则不是会员
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
this.queryParams.pageNum = 1;
|
|
|
this.getList();
|
|
this.getList();
|
|
|
},
|
|
},
|
|
@@ -1127,6 +1217,7 @@ export default {
|
|
|
this.queryParams.qecETime = null;
|
|
this.queryParams.qecETime = null;
|
|
|
this.queryParams.periodSTime = null;
|
|
this.queryParams.periodSTime = null;
|
|
|
this.queryParams.periodDTime = null;
|
|
this.queryParams.periodDTime = null;
|
|
|
|
|
+ this.queryParams.externalUserName=null;
|
|
|
this.queryParams.scheduleStartTime = null;
|
|
this.queryParams.scheduleStartTime = null;
|
|
|
this.queryParams.scheduleEndTime = null;
|
|
this.queryParams.scheduleEndTime = null;
|
|
|
this.queryParams.sopId = null; // 重置SOP ID
|
|
this.queryParams.sopId = null; // 重置SOP ID
|
|
@@ -1310,6 +1401,7 @@ export default {
|
|
|
|
|
|
|
|
searchTags(this.queryTagParams).then(response => {
|
|
searchTags(this.queryTagParams).then(response => {
|
|
|
this.tagGroupList = response.rows;
|
|
this.tagGroupList = response.rows;
|
|
|
|
|
+ this.tagTotal = response.total;
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
// searchTags({name:name,corpId:this.queryParams.corpId}).then(response => {
|
|
// searchTags({name:name,corpId:this.queryParams.corpId}).then(response => {
|
|
@@ -1326,6 +1418,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
resetSearchQueryTag(){
|
|
resetSearchQueryTag(){
|
|
|
|
|
+ this.tagChange.tagName=null;
|
|
|
|
|
|
|
|
this.queryTagParams= {
|
|
this.queryTagParams= {
|
|
|
pageNum: 1,
|
|
pageNum: 1,
|