修改1111
This commit is contained in:
@ -96,8 +96,6 @@ export const addProjectFacilities = (data: any) => {
|
|||||||
* @param data
|
* @param data
|
||||||
*/
|
*/
|
||||||
export const addProjectPilePoint = (data: any) => {
|
export const addProjectPilePoint = (data: any) => {
|
||||||
console.log('🚀 ~ addProjectPilePoint ~ data:', data);
|
|
||||||
|
|
||||||
return request({
|
return request({
|
||||||
url: '/facility/photovoltaicPanelPoint/parts/geoJson',
|
url: '/facility/photovoltaicPanelPoint/parts/geoJson',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
placeholder="请选择招投标专员"
|
placeholder="请选择招投标专员"
|
||||||
class="w-full transition-all duration-300 border-gray-300 focus:border-blue-400 focus:ring-1 focus:ring-blue-400"
|
class="w-full transition-all duration-300 border-gray-300 focus:border-blue-400 focus:ring-1 focus:ring-blue-400"
|
||||||
>
|
>
|
||||||
<el-option v-for="item in userList" :key="item.userId" :label="item.userName" :value="item.userId" />
|
<el-option v-for="item in userList" :key="item.userId" :label="item.nickName" :value="item.userId" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
|
@ -46,7 +46,9 @@
|
|||||||
<el-table-column type="expand" width="50">
|
<el-table-column type="expand" width="50">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div class="w212.25 ml-12.5">
|
<div class="w212.25 ml-12.5">
|
||||||
<el-button class="mb" type="primary" size="small" @click="handleOpenSetChild(row.id)" icon="plus">添加子项目</el-button>
|
<el-button class="mb" type="primary" size="small" v-hasPermi="['project:project:add']" @click="handleOpenSetChild(row.id)" icon="plus"
|
||||||
|
>添加子项目</el-button
|
||||||
|
>
|
||||||
|
|
||||||
<el-table :data="row.children" border stripe>
|
<el-table :data="row.children" border stripe>
|
||||||
<el-table-column label="序号" type="index" width="55" align="center" />
|
<el-table-column label="序号" type="index" width="55" align="center" />
|
||||||
@ -73,7 +75,7 @@
|
|||||||
uploadUrl="/project/projectFile/upload/dxf"
|
uploadUrl="/project/projectFile/upload/dxf"
|
||||||
:data="{ projectId: scope.row.id }"
|
:data="{ projectId: scope.row.id }"
|
||||||
>
|
>
|
||||||
<el-button link type="primary" icon="upload">上传DXF </el-button>
|
<el-button link type="primary" icon="upload" v-hasPermi="['project:projectFile:add']">上传DXF </el-button>
|
||||||
</file-upload>
|
</file-upload>
|
||||||
<el-button
|
<el-button
|
||||||
link
|
link
|
||||||
@ -145,7 +147,9 @@
|
|||||||
<el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" width="400">
|
<el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" width="400">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-space>
|
<el-space>
|
||||||
<el-button link type="primary" icon="FolderOpened" @click="handleShowUpload(scope.row)">导入安全协议书 </el-button>
|
<el-button link type="primary" icon="FolderOpened" @click="handleShowUpload(scope.row)" v-hasPermi="['project:project:edit']"
|
||||||
|
>导入安全协议书
|
||||||
|
</el-button>
|
||||||
|
|
||||||
<el-button link type="success" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['project:project:edit']">修改 </el-button>
|
<el-button link type="success" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['project:project:edit']">修改 </el-button>
|
||||||
<el-button link type="danger" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['project:project:remove']">删除 </el-button>
|
<el-button link type="danger" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['project:project:remove']">删除 </el-button>
|
||||||
|
Reference in New Issue
Block a user