This commit is contained in:
BianLzhaoMin 2026-02-04 15:34:52 +08:00
parent 61ab67b5e0
commit 2335488836
2 changed files with 4 additions and 3 deletions

View File

@ -17,6 +17,7 @@
value-format="YYYY-MM"
placeholder="请选择月份"
style="width: 200px"
@change="onSearch"
/>
</el-form-item>
</el-form>

View File

@ -52,10 +52,10 @@
v-model="formData.inspectionStationId"
>
<el-option
v-for="item in inspectionStationOptions"
:key="item.id"
:value="item.id"
:label="item.value"
v-for="item in inspectionStationOptions"
/>
</el-select>
</el-form-item>
@ -99,10 +99,10 @@
v-model="formData.riskLevel"
>
<el-option
v-for="item in plan_risk_level"
:key="item.value"
:value="item.value"
:label="item.label"
v-for="item in plan_risk_level"
/>
</el-select>
</el-form-item>
@ -113,9 +113,9 @@
type="textarea"
maxlength="200"
show-word-limit
:autosize="{ minRows: 4, maxRows: 8 }"
placeholder="请输入备注"
v-model.trim="formData.remark"
:autosize="{ minRows: 4, maxRows: 8 }"
/>
</el-form-item>
</el-form>