|
|
@@ -97,6 +97,8 @@ interface FormOriginal {
|
|
|
opinion: string
|
|
|
|
|
|
auditStatus: number
|
|
|
+
|
|
|
+ nextPlan: string
|
|
|
}
|
|
|
|
|
|
type Form = Partial<FormOriginal>
|
|
|
@@ -143,7 +145,8 @@ const FORM_KEYS: (keyof FormOriginal)[] = [
|
|
|
'winterBreakTime',
|
|
|
'otherNptTime',
|
|
|
'otherNptReason',
|
|
|
- 'auditStatus'
|
|
|
+ 'auditStatus',
|
|
|
+ 'nextPlan'
|
|
|
]
|
|
|
|
|
|
const formRef = ref<FormInstance>()
|
|
|
@@ -898,6 +901,19 @@ const inputCurrentDepth = useDebounceFn(function inputCurrentDepth() {
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
|
|
|
+ <el-form-item class="col-span-2" label="下步计划" prop="nextPlan">
|
|
|
+ <el-input
|
|
|
+ v-model="form.nextPlan"
|
|
|
+ type="textarea"
|
|
|
+ :autosize="{ minRows: 2 }"
|
|
|
+ show-word-limit
|
|
|
+ resize="none"
|
|
|
+ :maxlength="1000"
|
|
|
+ placeholder="请输入当日施工简报"
|
|
|
+ :disabled="!isApproval"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
<!-- 时间信息 -->
|
|
|
<div class="col-span-2 flex items-center gap-2 mt-4">
|
|
|
<div class="bg-[var(--el-color-primary)] w-1 h-5 rounded-full"></div>
|