|
|
|
|
@ -307,6 +307,9 @@
|
|
|
|
|
<el-form-item label="最新打卡时间 " prop="lastClockTime">
|
|
|
|
|
<el-switch v-model="exportFieldList.lastClockTime" active-value="lastClockTime" :inactive-value="null"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="累计打卡时间 " prop="clockTime">
|
|
|
|
|
<el-switch v-model="exportFieldList.clockTime" active-value="clockTime" :inactive-value="null"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="小程序标签 " prop="miniProgramTagListStr">
|
|
|
|
|
<el-switch v-model="exportFieldList.miniProgramTagListStr" active-value="miniProgramTagListStr"
|
|
|
|
|
:inactive-value="null"/>
|
|
|
|
|
@ -448,6 +451,7 @@ export default {
|
|
|
|
|
wecomTagListStr: null,
|
|
|
|
|
memberRegisterDate: null,
|
|
|
|
|
instrumentName: null,
|
|
|
|
|
clockTime: null,
|
|
|
|
|
},
|
|
|
|
|
// 打卡记录详情列表
|
|
|
|
|
userClockLogVisible: false,
|
|
|
|
|
@ -796,6 +800,7 @@ export default {
|
|
|
|
|
wecomTagListStr: null,
|
|
|
|
|
memberRegisterDate: null,
|
|
|
|
|
instrumentName: null,
|
|
|
|
|
clockTime: null,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
isExportAllFields() {
|
|
|
|
|
@ -809,6 +814,7 @@ export default {
|
|
|
|
|
this.exportFieldList.wecomTagListStr = "wecomTagListStr";
|
|
|
|
|
this.exportFieldList.memberRegisterDate = "memberRegisterDate";
|
|
|
|
|
this.exportFieldList.instrumentName = "instrumentName";
|
|
|
|
|
this.exportFieldList.clockTime = "clockTime";
|
|
|
|
|
} else {
|
|
|
|
|
this.exportFieldList.nickname = null;
|
|
|
|
|
this.exportFieldList.userId = null;
|
|
|
|
|
@ -819,6 +825,7 @@ export default {
|
|
|
|
|
this.exportFieldList.wecomTagListStr = null;
|
|
|
|
|
this.exportFieldList.memberRegisterDate = null;
|
|
|
|
|
this.exportFieldList.instrumentName = null;
|
|
|
|
|
this.exportFieldList.clockTime = null;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
cancelUserClockLogDialog() {
|
|
|
|
|
|