Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-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
TFMOM
TF-MOM-WEB
Commits
21ec70cd
Commit
21ec70cd
authored
Oct 08, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合并产品代码至节点[6846] (d48b2e6c)
parent
cca190d6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
9 deletions
+42
-9
chunk-2a3845ec.0b62ac15.js
...itecture-dee/public/dee-config/chunk-2a3845ec.0b62ac15.js
+23
-0
main.js
applications/architecture-dee/public/dee-config/main.js
+1
-1
report.html
applications/architecture-dee/public/dee-config/report.html
+2
-2
fileUploadMangement.vue
...cture-dee/src/businessCompontents/fileUploadMangement.vue
+2
-2
bomReconsitutionDetail.vue
...views/sandbox/bomReconsitution/bomReconsitutionDetail.vue
+14
-4
No files found.
applications/architecture-dee/public/dee-config/chunk-
6148df32.e5df5313
.js
→
applications/architecture-dee/public/dee-config/chunk-
2a3845ec.0b62ac15
.js
View file @
21ec70cd
This diff is collapsed.
Click to expand it.
applications/architecture-dee/public/dee-config/main.js
View file @
21ec70cd
This source diff could not be displayed because it is too large. You can
view the blob
instead.
applications/architecture-dee/public/dee-config/report.html
View file @
21ec70cd
This diff is collapsed.
Click to expand it.
applications/architecture-dee/src/businessCompontents/fileUploadMangement.vue
View file @
21ec70cd
...
...
@@ -143,8 +143,8 @@ export default {
placement
:
'bottom'
,
width
:
'400'
,
title
:
'失败原因'
}
,
style
:
'height:100px;overflow:scroll'
}
//
style: 'height:100px;overflow:scroll'
},
[
h
(
'p'
,
{
...
...
applications/dee-pdc/src/views/sandbox/bomReconsitution/bomReconsitutionDetail.vue
View file @
21ec70cd
...
...
@@ -170,11 +170,9 @@ import partEdit from './partEdit.vue'
import
{
dxSandboxPublish
,
dxSandboxCancel
,
checkSandboxObjectIsCheckouted
,
checkItemIsInAnySandbox
,
checkEquivalenceLink
,
checkPartIsPreviousView
}
from
'@/api/parts'
import
{
getSubTypeName
}
from
'@/api/model'
export
default
{
// import引入的组件需要注入到对象中才能使用
name
:
'BomReconsitutionDetail'
,
// import引入的组件需要注入到对象中才能使用
components
:
{
Search
,
SearchResult
,
sandboxTree
,
partEdit
},
props
:
{},
data
()
{
// 这里存放数据
return
{
...
...
@@ -569,6 +567,7 @@ export default {
async
getSandboxObj
()
{
await
this
.
service
.
byId
(
this
.
sandboxId
).
then
(
item
=>
{
this
.
sandboxObj
=
item
this
.
noSandboxDataTip
()
})
},
async
checkSandboxObjectIsCheckouted
()
{
...
...
@@ -651,6 +650,9 @@ export default {
this
.
$refs
.
result
.
refreshStructure
()
},
changeViews
(
flag
,
convertType
=
''
,
dialogVisible
=
true
)
{
if
(
this
.
noSandboxDataTip
())
{
return
}
if
(
!
this
.
node
)
{
this
.
$utils
.
showMessage
(
'请选择原视图件!'
)
}
else
{
...
...
@@ -789,6 +791,14 @@ export default {
this
.
hasTreeData
=
false
this
.
$set
(
this
.
form
,
'isConvertRoot'
,
'true'
)
}
},
// 没有沙箱提示
noSandboxDataTip
()
{
if
(
!
this
.
sandboxObj
)
{
this
.
$utils
.
showMessage
(
'沙箱数据不存在'
,
'warning'
)
return
true
}
return
false
}
}
}
...
...
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