小程序打卡数据
This commit is contained in:
parent
c35f009eb3
commit
8bc007d51f
|
|
@ -413,8 +413,12 @@
|
||||||
this.reset();
|
this.reset();
|
||||||
const Id = row.id
|
const Id = row.id
|
||||||
getOrg(Id).then(orgResponse => {
|
getOrg(Id).then(orgResponse => {
|
||||||
|
|
||||||
// 更新表单的 org 信息
|
// 更新表单的 org 信息
|
||||||
this.form = orgResponse.data;
|
this.form ={
|
||||||
|
...orgResponse.data,
|
||||||
|
newAttGroup:orgResponse.data.newAttGroup?Number(orgResponse.data.newAttGroup):""
|
||||||
|
};
|
||||||
this.form.attGroupName = orgResponse.data.oldOrgName;
|
this.form.attGroupName = orgResponse.data.oldOrgName;
|
||||||
// 更新视图状态
|
// 更新视图状态
|
||||||
this.open = true;
|
this.open = true;
|
||||||
|
|
@ -427,7 +431,10 @@
|
||||||
const Id = row.id
|
const Id = row.id
|
||||||
getOrg(Id).then(orgResponse => {
|
getOrg(Id).then(orgResponse => {
|
||||||
// 更新表单的 org 信息
|
// 更新表单的 org 信息
|
||||||
this.form = orgResponse.data;
|
this.form ={
|
||||||
|
...orgResponse.data,
|
||||||
|
newAttGroup:orgResponse.data.newAttGroup?Number(orgResponse.data.newAttGroup):""
|
||||||
|
};
|
||||||
this.form.attGroupName = orgResponse.data.oldOrgName;
|
this.form.attGroupName = orgResponse.data.oldOrgName;
|
||||||
// 更新视图状态
|
// 更新视图状态
|
||||||
this.open = true;
|
this.open = true;
|
||||||
|
|
|
||||||
|
|
@ -97,6 +97,11 @@
|
||||||
v-if="scope.row.isCheck==0"
|
v-if="scope.row.isCheck==0"
|
||||||
@click="handleUpdate(scope.row)"
|
@click="handleUpdate(scope.row)"
|
||||||
>审核</el-button>
|
>审核</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
v-hasPermi="['att:org:change:query']"
|
||||||
|
@click="handleView(scope.row)"
|
||||||
|
>详情</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
@ -402,7 +407,10 @@
|
||||||
const Id = row.id
|
const Id = row.id
|
||||||
getOrg(Id).then(orgResponse => {
|
getOrg(Id).then(orgResponse => {
|
||||||
// 更新表单的 org 信息
|
// 更新表单的 org 信息
|
||||||
this.form = orgResponse.data;
|
this.form ={
|
||||||
|
...orgResponse.data,
|
||||||
|
newAttGroup:orgResponse.data.newAttGroup?Number(orgResponse.data.newAttGroup):""
|
||||||
|
};
|
||||||
this.form.attGroupName = orgResponse.data.oldOrgName;
|
this.form.attGroupName = orgResponse.data.oldOrgName;
|
||||||
// 更新视图状态
|
// 更新视图状态
|
||||||
this.open = true;
|
this.open = true;
|
||||||
|
|
@ -415,7 +423,10 @@
|
||||||
const Id = row.id
|
const Id = row.id
|
||||||
getOrg(Id).then(orgResponse => {
|
getOrg(Id).then(orgResponse => {
|
||||||
// 更新表单的 org 信息
|
// 更新表单的 org 信息
|
||||||
this.form = orgResponse.data;
|
this.form ={
|
||||||
|
...orgResponse.data,
|
||||||
|
newAttGroup:orgResponse.data.newAttGroup?Number(orgResponse.data.newAttGroup):""
|
||||||
|
};
|
||||||
this.form.attGroupName = orgResponse.data.oldOrgName;
|
this.form.attGroupName = orgResponse.data.oldOrgName;
|
||||||
// 更新视图状态
|
// 更新视图状态
|
||||||
this.open = true;
|
this.open = true;
|
||||||
|
|
|
||||||
|
|
@ -254,7 +254,7 @@ export default {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
startDate: undefined,
|
startDate: undefined,
|
||||||
endDate: undefined,
|
endDate: undefined,
|
||||||
userId: undefined,
|
userId: this.userIdDialog,
|
||||||
};
|
};
|
||||||
this.resetForm("form");
|
this.resetForm("form");
|
||||||
this.handleQuerys();
|
this.handleQuerys();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue