“工程名称”修改为“用户名称”&删除console打印

This commit is contained in:
zhujiyan
2024-06-03 11:28:44 +08:00
parent 9b77cf0262
commit 00b0e02093
23 changed files with 40 additions and 91 deletions

View File

@@ -81,12 +81,12 @@
</el-form-item>
-->
<!--
<el-form-item for="-" label="工程名称:" prop="userName">
<el-form-item for="-" label="用户名称:" prop="userName">
<el-select
v-model="form.userName"
clearable
style="width: 100%"
placeholder="请选择工程名称"
placeholder="请选择用户名称"
>
<el-option
v-for="item in areaOptionList"
@@ -788,7 +788,7 @@ const resetForm: any = async () => {
expectedProductionDate: '', //工程投产日期
city: areaOptionList[0].id, //所属地市
userStatus: userStateList[1].id, //用户状态
userName: '', //工程名称
userName: '', //用户名称
userId: '',
customSubstaionFlag: '0', //电站类型
acceptanceInspectionReport: [], //验收检验报告
@@ -847,7 +847,7 @@ const devReportForm: any = ref({
expectedProductionDate: '', //工程投产日期
city: areaOptionList[0].name, //所属地市
userStatus: userStateList[1].id, //用户状态
userName: '', //工程名称
userName: '', //用户名称
userId: '',
acceptanceInspectionReport: [], //验收检验报告
acceptanceInspectionReportSingle: [], //验收检验报告单
@@ -944,7 +944,7 @@ const rules = ref({
userName: [
{
required: true,
message: '请选择工程名称',
message: '请选择用户名称',
trigger: 'change'
}
],