|
@@ -57,7 +57,9 @@
|
|
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
|
|
>
|
|
|
<el-table-column prop="deptName" label="部门名称" width="260"></el-table-column>
|
|
|
- <el-table-column prop="orderNum" label="排序" width="200"></el-table-column>
|
|
|
+ <!-- <el-table-column prop="deptName" label="公司名称" width="260"></el-table-column> -->
|
|
|
+ <el-table-column prop="maxDuration" align="center" label="最高工时" width="140"></el-table-column>
|
|
|
+ <el-table-column prop="orderNum" align="center" label="排序" width="200"></el-table-column>
|
|
|
<el-table-column prop="status" label="状态" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
|
@@ -148,6 +150,15 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="最高打卡时长(小时)" prop="email">
|
|
|
+ <el-input v-model="form.maxDuration" type="digit" placeholder="请输入时长" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|