|
|
|
@ -77,10 +77,13 @@
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="8" >
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-text v-if="warningInfo" class="mx-1" type="warning">{{warningInfo}}</el-text>
|
|
|
|
<el-form-item label="加班时长" prop="plusTime">
|
|
|
|
|
|
|
|
<el-input-number v-model="formData.plusTime" :min="0" :precision="2" placeholder="请输入时长" class="!w-260px"/>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-text v-if="warningInfo" class="mx-1" type="warning">{{warningInfo}}</el-text>
|
|
|
|
<el-row>
|
|
|
|
<el-row>
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-form-item label="计时时段" prop="reportTime">
|
|
|
|
<el-form-item label="计时时段" prop="reportTime">
|
|
|
|
@ -143,7 +146,8 @@ const formData = ref({
|
|
|
|
groupType: undefined,
|
|
|
|
groupType: undefined,
|
|
|
|
reportType: undefined,
|
|
|
|
reportType: undefined,
|
|
|
|
reportDateString: undefined,
|
|
|
|
reportDateString: undefined,
|
|
|
|
reportDate: undefined
|
|
|
|
reportDate: undefined,
|
|
|
|
|
|
|
|
plusTime: undefined
|
|
|
|
})
|
|
|
|
})
|
|
|
|
const formRules = reactive({
|
|
|
|
const formRules = reactive({
|
|
|
|
reportDate: [{ required: true, message: '日期不能为空', trigger: 'blur' }],
|
|
|
|
reportDate: [{ required: true, message: '日期不能为空', trigger: 'blur' }],
|
|
|
|
|