“工程名称”修改为“用户名称”&删除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

@@ -46,11 +46,11 @@
:disabled="openType == 'detail'"
/>
</el-form-item>
<el-form-item label="工程名称:" prop="projectName">
<el-form-item label="用户名称:" prop="projectName">
<el-input
v-model="form.projectName"
autocomplete="off"
placeholder="请输入工程名称"
placeholder="请输入用户名称"
:disabled="openType == 'detail'"
/>
</el-form-item>
@@ -272,7 +272,7 @@ const resetForm = () => {
userType: 0, //用户性质
city: areaOptionList[0].name, //所属地市
responsibleDepartment: '', //归口管理部门
projectName: '', //工程名称
projectName: '', //用户名称
userStatus: userStateList[0].value, //用户状态
substation: '', //变电站
backgroundTestPerformed: 0, //是否开展背景测试

View File

@@ -2,7 +2,7 @@
<div>
<TableHeader ref="TableHeaderRef">
<template #select>
<el-form-item label="工程名称">
<el-form-item label="用户名称">
<el-input v-model="tableStore.table.params.projectName" clearable></el-input>
</el-form-item>
<el-form-item label="所属地市">
@@ -57,7 +57,7 @@ const tableStore = new TableStore({
column: [
{ title: '序号', type: 'seq', width: 80 },
{ field: 'city', title: '所属地市', minWidth: 80 },
{ field: 'projectName', title: '工程名称', minWidth: 170 },
{ field: 'projectName', title: '用户名称', minWidth: 170 },
{
field: 'userType',
title: '用户性质',

View File

@@ -2,7 +2,7 @@
<div class="default-main">
<!-- <TableHeader ref='TableHeaderRef'>
<template #select>
<el-form-item label='工程名称'>
<el-form-item label='用户名称'>
<el-input v-model='tableStore.table.params.projectName' clearable></el-input>
</el-form-item>
<el-form-item label='所属地市'>
@@ -66,7 +66,7 @@ const tableStore = new TableStore({
method: 'POST',
column: [
{ title: '序号', type: 'seq', width: 80 },
{ field: 'projectName', title: '工程名称', minWidth: 170 },
{ field: 'projectName', title: '用户名称', minWidth: 170 },
{
field: 'userType',
title: '用户性质',