Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
INET-TWO
web
Commits
2a213f2d
Commit
2a213f2d
authored
Sep 11, 2024
by
ztf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
选择项目名称和选择用户组件
parent
76fb1041
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
402 additions
and
103 deletions
+402
-103
ind.vue
...ject/src/privateComponents/components/ProjectList/ind.vue
+171
-46
index.vue
...ct/src/privateComponents/components/ProjectList/index.vue
+196
-44
index.vue
...ect/src/privateComponents/components/SelectUser/index.vue
+2
-0
index.vue
...ct/src/privateComponents/components/extPrograms/index.vue
+0
-0
index.vue
.../src/privateComponents/components/selectProject/index.vue
+32
-12
host.json
host.json
+1
-1
No files found.
applications/dee-project/src/privateComponents/components/ProjectList/ind.vue
View file @
2a213f2d
...
@@ -6,25 +6,25 @@
...
@@ -6,25 +6,25 @@
:data=
"tableData"
:data=
"tableData"
style=
"width: 100%; margin-bottom: 20px"
style=
"width: 100%; margin-bottom: 20px"
row-key=
"id"
row-key=
"id"
:tree-props=
"treeProps"
border
border
@
selection-change=
"handleSelectionChange"
@
selection-change=
"handleSelectionChange"
>
>
<el-table-column
type=
"selection"
width=
"55"
/>
<el-table-column
type=
"selection"
width=
"55"
:selectable=
"selectable"
/>
<el-table-column
prop=
"perIndex"
label=
"序号"
sortable
/>
<el-table-column
prop=
"perIndex"
label=
"序号"
sortable
/>
<el-table-column
label=
"操作"
>
<el-table-column
label=
"操作"
>
<template
#
default=
"scope"
>
<template
#
default=
"scope"
>
<el-button
size=
"small"
@
click=
"handleEdit(scope.$index, scope.row)"
>
<el-button
type=
"danger"
size=
"small"
@
click=
"handleEdit(scope.$index, scope.row)"
>
编辑
编辑
</el-button>
</el-button>
<img
class=
"self-btn-icon"
src=
"/icons/c-edit.png"
>
<
!--
<
img
class=
"self-btn-icon"
src=
"/icons/c-edit.png"
>
<el-button
<el-button
size=
"small"
size=
"small"
type=
"danger"
type=
"danger"
@
click=
"handleStatusDLG(scope.$index, scope.row)"
@
click=
"handleStatusDLG(scope.$index, scope.row)"
>
>
改状态
改状态
</el-button>
</el-button>
-->
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"date"
label=
"项目名称"
show-overflow-tooltip
/>
<el-table-column
prop=
"date"
label=
"项目名称"
show-overflow-tooltip
/>
...
@@ -34,18 +34,20 @@
...
@@ -34,18 +34,20 @@
<el-table-column
prop=
"address"
label=
"状态"
/>
<el-table-column
prop=
"address"
label=
"状态"
/>
<el-table-column
prop=
"address"
label=
"密级"
/>
<el-table-column
prop=
"address"
label=
"密级"
/>
</el-table>
</el-table>
<dee-dialog
title=
"修改状态"
:dialog-visible=
"dialogVisible"
width=
"55%"
@
handleClose=
"dialogClose"
/>
<!-- <dee-dialog title="修改状态" :dialog-visible="dialogVisible" width="55%" @handleClose="dialogClose" /> -->
</div>
</div>
</template>
</template>
<
script
>
<
script
>
export
default
{
export
default
{
name
:
'ProjectList'
,
name
:
'ProjectList'
,
componentName
:
'项目列表'
,
componentName
:
'项目列表
333
'
,
data
()
{
data
()
{
const
that
=
this
const
that
=
this
return
{
return
{
treeProps
:
{
checkStrictly
:
false
},
BtnTools
:
[
BtnTools
:
[
{
{
name
:
'新增'
,
name
:
'新增'
,
...
@@ -71,7 +73,55 @@ export default {
...
@@ -71,7 +73,55 @@ export default {
}
}
}
}
],
],
tableData
:
[],
tableData
:
[
{
id
:
1
,
date
:
'2016-05-02'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
},
{
id
:
2
,
date
:
'2016-05-04'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
},
{
id
:
3
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
,
children
:
[
{
id
:
31
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
,
children
:
[
{
id
:
313
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
}
]
},
{
id
:
32
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
}
]
},
{
id
:
4
,
date
:
'2016-05-03'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
}
],
tableColums
:
[
tableColums
:
[
{
{
title
:
'操作'
,
title
:
'操作'
,
...
@@ -144,6 +194,9 @@ export default {
...
@@ -144,6 +194,9 @@ export default {
selectedData
:
[]
selectedData
:
[]
}
}
},
},
mounted
()
{
this
.
getTableList
()
},
methods
:
{
methods
:
{
jump
(
data
)
{
jump
(
data
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
...
@@ -151,7 +204,7 @@ export default {
...
@@ -151,7 +204,7 @@ export default {
query
:
{
title
:
data
.
name
+
'详情'
,
id
:
data
.
id
}
query
:
{
title
:
data
.
name
+
'详情'
,
id
:
data
.
id
}
})
})
},
},
handleS
electionChange
(
val
)
{
s
electionChange
(
val
)
{
this
.
selectedData
=
val
this
.
selectedData
=
val
},
},
remove
()
{
remove
()
{
...
@@ -163,42 +216,42 @@ export default {
...
@@ -163,42 +216,42 @@ export default {
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
type
:
'warning'
}).
then
(()
=>
{
}).
then
(()
=>
{
// const caRecordLinks = []
// const caRecordLinks = []
// this.sectionData.forEach(v => {
// this.sectionData.forEach(v => {
// caRecordLinks.push({
// caRecordLinks.push({
// operator: 'REMOVE',
// operator: 'REMOVE',
// id: v.id,
// id: v.id,
// target: {
// target: {
// id: v.target.id,
// id: v.target.id,
// operator: 'REMOVE'
// operator: 'REMOVE'
// }
// }
// })
// })
// })
// })
// const params = {
// const params = {
// id: this.basicData.businessObject.id,
// id: this.basicData.businessObject.id,
// operator: 'NO_CHANGE',
// operator: 'NO_CHANGE',
// caRecordLinks: caRecordLinks
// caRecordLinks: caRecordLinks
// }
// }
// batchCAData(params).then(del => {
// batchCAData(params).then(del => {
// this.tableData = this.tableData.filter(t => {
// this.tableData = this.tableData.filter(t => {
// return !caRecordLinks.some(s => {
// return !caRecordLinks.some(s => {
// return t.id === s.id
// return t.id === s.id
// })
// })
// })
// })
// const pageSize = this.pagination.pageSize
// const pageSize = this.pagination.pageSize
// this.pagination.total = this.tableData.length
// this.pagination.total = this.tableData.length
// let maxPage = parseInt(this.pagination.total / pageSize)
// let maxPage = parseInt(this.pagination.total / pageSize)
// const mode = this.pagination.total % pageSize
// const mode = this.pagination.total % pageSize
// if (mode) {
// if (mode) {
// maxPage++
// maxPage++
// }
// }
// if (maxPage
<
this
.
pagination
.
currentPage
)
{
// if (maxPage
<
this
.
pagination
.
currentPage
)
{
// this.pagination.currentPage = maxPage
// this.pagination.currentPage = maxPage
// }
// }
// this.$message.success('删除成功')
// this.$message.success('删除成功')
// }).catch(() => {
// }).catch(() => {
// this.$message.error('删除失败')
// this.$message.error('删除失败')
// })
// })
}
}
).
catch
(()
=>
{
).
catch
(()
=>
{
this
.
$message
({
this
.
$message
({
...
@@ -207,6 +260,78 @@ export default {
...
@@ -207,6 +260,78 @@ export default {
})
})
})
})
}
}
},
getTableList
()
{
const
tableData
=
[
{
id
:
1
,
date
:
'2016-05-02'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
},
{
id
:
2
,
date
:
'2016-05-04'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
},
{
id
:
3
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
,
children
:
[
{
id
:
31
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
,
children
:
[
{
id
:
313
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
}
]
},
{
id
:
32
,
date
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
}
]
},
{
id
:
4
,
date
:
'2016-05-03'
,
name
:
'wangxiaohu'
,
address
:
'No. 189, Grove St, Los Angeles'
}
]
this
.
setParentIndex
(
tableData
)
this
.
tableData
=
tableData
console
.
log
(
'this.tableData'
,
tableData
)
},
setParentIndex
(
list
)
{
list
.
forEach
((
item
,
index
)
=>
{
item
.
perIndex
=
index
+
1
+
''
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
this
.
_setParentIndex
(
item
,
item
.
perIndex
)
}
})
},
_setParentIndex
(
item
,
oldIndex
)
{
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
item
.
children
.
forEach
((
subItem
,
i
)
=>
{
subItem
.
perIndex
=
oldIndex
+
'.'
+
(
i
+
1
)
this
.
_setParentIndex
(
subItem
,
subItem
.
perIndex
)
})
}
else
{
return
}
}
}
}
}
}
}
...
...
applications/dee-project/src/privateComponents/components/ProjectList/index.vue
View file @
2a213f2d
<
template
>
<
template
>
<div
class=
"project-list"
>
<div
class=
"project-list"
>
项目列表
<dee-table
<dee-table
ref=
"projectTable"
ref=
"projectTable"
:data=
"tableData"
:data=
"tableData"
...
@@ -9,9 +8,53 @@
...
@@ -9,9 +8,53 @@
selection-row
selection-row
@
selection-change=
"selectionChange"
@
selection-change=
"selectionChange"
>
>
<dee-tools
slot=
"header"
:tools=
"BtnTools"
mode=
"normal"
:collapse=
"false"
:perm
issions=
"permissions"
:perm
-enable=
"true"
/>
<dee-tools
slot=
"header"
:tools=
"BtnTools"
mode=
"normal"
:collapse=
"false"
:perm-enable=
"true"
/>
</dee-table>
</dee-table>
<dee-dialog
title=
"修改状态"
:dialog-visible=
"dialogVisible"
width=
"55%"
@
handleClose=
"dialogClose"
/>
<dee-dialog
title=
"修改状态"
:dialog-visible=
"updateStateDLG"
width=
"55%"
@
handleClose=
"updateStateDLG=false"
>
<dee-as-com
:lay-config=
"
{
typeName: 'ExtProgram',
layKey: 'updateState'
}"
:form="showDetailObj"
@on-cancel="updateStateDLG = false"
/>
<!-- @submitEvent="onSubmit" -->
</dee-dialog>
<dee-drawer
title=
"新建"
:dialog-visible=
"addProjectDrawer"
width=
"55%"
@
handleClose=
"addProjectDrawer=false"
>
<dee-as-com
:lay-config=
"
{
typeName: 'ExtProgram',
layKey: 'defaultCreate'
}"
@on-cancel="handleClickCancel"
/>
<!-- addProjectDrawer = false -->
</dee-drawer>
<dee-drawer
title=
"编辑"
:dialog-visible=
"editProjectDrawer"
width=
"55%"
@
handleClose=
"editProjectDrawer=false"
>
<dee-as-com
:lay-config=
"
{
typeName: 'ExtProgram',
layKey: 'defaultEdit'
}"
@on-cancel="editProjectDrawer = false"
/>
</dee-drawer>
</div>
</div>
</
template
>
</
template
>
...
@@ -19,10 +62,19 @@
...
@@ -19,10 +62,19 @@
<
script
>
<
script
>
export
default
{
export
default
{
name
:
'ProjectList'
,
name
:
'ProjectList'
,
componentName
:
'项目列表'
,
componentName
:
'项目列表
测试
'
,
data
()
{
data
()
{
const
that
=
this
const
that
=
this
return
{
return
{
updateStateDLG
:
false
,
addProjectDrawer
:
false
,
editProjectDrawer
:
false
,
showDetailObj
:
{},
emitMethods
:
[
{
methods
:
'searchResult'
,
methodsName
:
'搜索结果列表'
}
],
BtnTools
:
[
BtnTools
:
[
{
{
name
:
'新增'
,
name
:
'新增'
,
...
@@ -30,8 +82,8 @@ export default {
...
@@ -30,8 +82,8 @@ export default {
key
:
'add'
,
key
:
'add'
,
handler
:
{
handler
:
{
click
:
()
=>
{
click
:
()
=>
{
// this.dialogTitle = '新增资源属性'
console
.
log
(
'新增'
)
// this.dialogVisible
= true
this
.
addProjectDrawer
=
true
}
}
}
}
},
},
...
@@ -41,8 +93,6 @@ export default {
...
@@ -41,8 +93,6 @@ export default {
key
:
'remove'
,
key
:
'remove'
,
handler
:
{
handler
:
{
click
:
()
=>
{
click
:
()
=>
{
// this.dialogTitle = '新增资源属性'
// this.dialogVisible = true
this
.
remove
()
this
.
remove
()
}
}
}
}
...
@@ -52,84 +102,114 @@ export default {
...
@@ -52,84 +102,114 @@ export default {
tableColums
:
[
tableColums
:
[
{
{
title
:
'序号'
,
title
:
'序号'
,
key
:
'perIndex'
key
:
'perIndex'
,
component
:
{
show
:
true
,
render
:
function
(
h
,
row
)
{
let
style
=
null
if
(
!
row
.
children
||
!
row
.
children
.
length
)
{
style
=
{
'padding-left'
:
'20px'
}
}
return
h
(
'span'
,
{
style
},
row
.
perIndex
)
}
}
},
},
{
{
title
:
'操作'
,
title
:
'操作'
,
key
:
'operate'
,
key
:
'operate'
,
show
:
true
,
component
:
{
name
:
'EditTableRow'
,
show
:
true
,
props
:
{
name
:
'EditTableRow'
,
btns
:
[
props
:
{
{
btns
:
[
operation
:
'改状态'
,
{
handleClick
:
(
row
,
index
)
=>
{
operation
:
'改状态'
,
handleClick
:
(
row
,
index
)
=>
{
this
.
updateStateDLG
=
true
this
.
showDetailObj
=
row
console
.
log
(
'row'
,
row
)
},
icon
:
'/icons/c-trans.png'
,
showFun
:
(
row
)
=>
{
return
true
}
},
},
icon
:
'/icons/c-edit.png'
,
{
showFun
:
(
row
)
=>
{
operation
:
'编辑'
,
handleClick
:
(
row
,
index
)
=>
{
this
.
editProjectDrawer
=
true
},
icon
:
'/icons/c-edit.png'
,
showFun
:
(
row
)
=>
{
return
true
}
}
}
},
]
{
}}
operation
:
'编辑'
,
handleClick
:
(
row
,
index
)
=>
{
},
icon
:
'/icons/c-edit.png'
,
showFun
:
(
row
)
=>
{
}
}
]
}
},
},
{
{
title
:
'项目名称'
,
title
:
'项目名称'
,
key
:
'name'
,
key
:
'name'
,
component
:
{
component
:
{
show
:
true
,
render
:
function
(
h
,
data
)
{
render
:
function
(
h
,
data
)
{
return
<
span
class
=
'link'
v
-
on
:
click
=
{()
=>
{
return
(
that
.
jump
(
data
)
<
span
}}
>
{
data
.
name
}
<
/span
>
style
=
{{
color
:
'#2A75CE'
,
cursor
:
'pointer'
}}
onClick
=
{()
=>
{
that
.
jump
(
data
)
}}
>
{
data
.
name
}
<
/span
>
)
}
}
}
}
},
},
{
{
title
:
'项目分类'
,
title
:
'项目分类'
,
key
:
''
key
:
'
projectCategory
'
},
},
{
{
title
:
'项目代号'
,
title
:
'项目代号'
,
key
:
''
key
:
'
number
'
},
},
{
{
title
:
'项目类型'
,
title
:
'项目类型'
,
key
:
''
key
:
'
proType
'
},
},
{
{
title
:
'状态'
,
title
:
'状态'
,
key
:
''
key
:
'
state
'
},
},
{
{
title
:
'密级'
,
title
:
'密级'
,
key
:
''
key
:
'
secretCode
'
}
}
],
],
optionsTree
:
{
optionsTree
:
{
fit
:
true
,
// defaultExpandAll: true,
highlightCurrentRow
:
true
,
highlightCurrentRow
:
true
,
rowKey
:
'id'
rowKey
:
'id'
},
},
selectedData
:
[]
selectedData
:
[]
}
}
},
},
mounted
()
{
this
.
getTableList
()
// 真的好无聊啊,都不知道该干什么了
// 怎么这么你难熬啊啊,时间怎么过的这么的慢
},
methods
:
{
methods
:
{
handleClickCancel
()
{
this
.
$emit
(
'cancel'
)
},
jump
(
data
)
{
jump
(
data
)
{
const
pageNumber
=
'7cbdc38f-0122-4e78-b162-57601a33bb7a'
const
title
=
'项目要素'
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
`/page/
${
data
.
pageNumber
}
/
${
data
.
id
}
/?id=
${
data
.
id
}
&titl
e=
${
data
.
name
}
`
,
path
:
`/page/
${
pageNumber
}
/
${
data
.
id
}
?title=
${
title
}
&id=
${
data
.
id
}
&nam
e=
${
data
.
name
}
`
,
query
:
{
title
:
data
.
name
+
'详情'
,
id
:
data
.
id
}
query
:
{
name
:
data
.
name
,
id
:
data
.
id
}
})
})
},
},
selectionChange
(
val
)
{
selectionChange
(
val
)
{
...
@@ -188,6 +268,78 @@ export default {
...
@@ -188,6 +268,78 @@ export default {
})
})
})
})
}
}
},
getTableList
()
{
const
tableData
=
[
{
id
:
1
,
state
:
'2016-05-02'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
},
{
id
:
2
,
state
:
'2016-05-04'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
},
{
id
:
3
,
state
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
,
children
:
[
{
id
:
31
,
state
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
,
children
:
[
{
id
:
313
,
state
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
}
]
},
{
id
:
32
,
state
:
'2016-05-01'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
}
]
},
{
id
:
4
,
state
:
'2016-05-03'
,
name
:
'wangxiaohu'
,
secretCode
:
'No. 189, Grove St, Los Angeles'
}
]
this
.
setParentIndex
(
tableData
)
this
.
tableData
=
tableData
console
.
log
(
'this.tableData'
,
tableData
)
},
setParentIndex
(
list
)
{
list
.
forEach
((
item
,
index
)
=>
{
item
.
perIndex
=
index
+
1
+
''
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
this
.
_setParentIndex
(
item
,
item
.
perIndex
)
}
})
},
_setParentIndex
(
item
,
oldIndex
)
{
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
item
.
children
.
forEach
((
subItem
,
i
)
=>
{
subItem
.
perIndex
=
oldIndex
+
'.'
+
(
i
+
1
)
this
.
_setParentIndex
(
subItem
,
subItem
.
perIndex
)
})
}
else
{
return
}
}
}
}
}
}
}
...
...
applications/dee-project/src/privateComponents/components/SelectUser/index.vue
View file @
2a213f2d
...
@@ -137,6 +137,7 @@ export default {
...
@@ -137,6 +137,7 @@ export default {
data
:
n
data
:
n
}
}
})
})
console
.
log
(
'userListOptions'
,
this
.
userListOptions
)
}
else
{
}
else
{
this
.
userListOptions
=
[]
this
.
userListOptions
=
[]
}
}
...
@@ -165,6 +166,7 @@ export default {
...
@@ -165,6 +166,7 @@ export default {
}
}
},
},
change
(
val
)
{
change
(
val
)
{
console
.
log
(
'this.valueKey'
,
this
.
valueKey
)
if
(
this
.
valueKey
)
{
if
(
this
.
valueKey
)
{
this
.
$emit
(
'getUser'
,
val
)
this
.
$emit
(
'getUser'
,
val
)
this
.
$emit
(
'input'
,
val
)
this
.
$emit
(
'input'
,
val
)
...
...
applications/dee-project/src/privateComponents/components/extPrograms/index.vue
0 → 100644
View file @
2a213f2d
applications/dee-project/src/privateComponents/components/selectProject/index.vue
View file @
2a213f2d
<!--
* @Author: zhangtianfeng 3232807530@qq.com
* @Date: 2024-08-29 11:42:37
* @LastEditors: zhangtianfeng 3232807530@qq.com
* @LastEditTime: 2024-09-10 11:42:34
-->
<
template
>
<
template
>
<div>
<div>
<div
class=
"select-project"
>
<div
class=
"select-project"
>
<!-- 这里要判断是项目还是子项,显示的是项目的关联的收入合同里面的 -->
<el-select
v-if=
"showSelect"
v-model=
"project"
placeholder=
"请选择"
@
change=
"handleChange"
>
<el-option
v-for=
"item in projectList"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
/>
</el-select>
<!--input输入-->
<!--input输入-->
<el-input
v-
model=
"project"
placeholder=
"请输入
"
/>
<el-input
v-
else
v-model=
"project"
placeholder=
"请输入"
@
input=
"handleChange
"
/>
<img
<img
v-if=
"show"
v-if=
"show
Icon
"
class=
"icon"
class=
"icon"
src=
"/icons/c-add.png"
src=
"/icons/c-add.png"
title=
"选择合同"
title=
"选择合同"
...
@@ -25,9 +41,13 @@
...
@@ -25,9 +41,13 @@
<
script
>
<
script
>
export
default
{
export
default
{
name
:
'
CreateNewProject
'
,
name
:
'
SelectProjectName
'
,
componentName
:
'选择项目名称'
,
componentName
:
'选择项目名称'
,
props
:
{
props
:
{
value
:
{
type
:
[
Object
,
Array
,
String
],
default
:
()
=>
null
},
form
:
{
form
:
{
type
:
Object
,
type
:
Object
,
default
:
()
=>
{}
default
:
()
=>
{}
...
@@ -37,24 +57,21 @@ export default {
...
@@ -37,24 +57,21 @@ export default {
return
{
return
{
project
:
''
,
project
:
''
,
dialogShow
:
false
,
dialogShow
:
false
,
show
:
false
showIcon
:
false
,
projectList
:
[],
showSelect
:
false
}
}
},
},
watch
:
{
watch
:
{
'form.projectCategory'
:
{
'form.projectCategory'
:
{
immediate
:
true
,
immediate
:
true
,
deep
:
true
,
deep
:
true
,
handler
:
function
(
val
)
{
handler
(
val
)
{
// console.log('val', val)
if
(
val
)
{
if
(
val
)
{
if
(
val
===
'program'
)
{
this
.
showIcon
=
val
!==
'program'
this
.
show
=
false
this
.
showSelect
=
val
===
'childProject'
}
else
{
this
.
show
=
true
}
}
}
}
}
}
}
},
},
...
@@ -62,6 +79,9 @@ export default {
...
@@ -62,6 +79,9 @@ export default {
handleClickOpen
()
{
handleClickOpen
()
{
this
.
dialogShow
=
true
this
.
dialogShow
=
true
console
.
log
(
'打开合同弹框'
)
console
.
log
(
'打开合同弹框'
)
},
handleChange
(
val
)
{
this
.
$emit
(
'input'
,
val
)
}
}
}
}
...
...
host.json
View file @
2a213f2d
{
"host"
:
10810
}
{
"host"
:
10811
}
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment