Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
weiqiao-vue
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
金民
weiqiao-vue
Commits
2b6e2ef0
Commit
2b6e2ef0
authored
Dec 29, 2025
by
史雅文
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'weiqiao-vue3' of
https://git.rokedata.com/jinmin/weiqiao-vue
into weiqiao-vue3
parents
e6d5d4c9
094b4d36
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
73 additions
and
38 deletions
+73
-38
xjrsoft-vue3/src/api/jcsj/gxgl/model/GxglModel.ts
+5
-5
xjrsoft-vue3/src/api/scgl/scjh/model/ScjhModel.ts
+0
-2
xjrsoft-vue3/src/views/jcsj/gxgl/components/config.ts
+0
-0
xjrsoft-vue3/src/views/jcsj/gxgl/components/workflowPermission.ts
+0
-0
xjrsoft-vue3/src/views/jcsj/gxgl/index.vue
+57
-6
xjrsoft-vue3/src/views/scgl/scjh/components/config.ts
+10
-14
xjrsoft-vue3/src/views/sys/login/Login.vue
+1
-11
No files found.
xjrsoft-vue3/src/api/jcsj/gxgl/model/GxglModel.ts
View file @
2b6e2ef0
...
...
@@ -6,11 +6,11 @@ import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
export
interface
RokeProcessPageParams
extends
BasicPageParams
{
name
:
string
;
categoryId
:
string
;
defaultReporter
:
string
;
processType
:
string
;
categoryId
:
string
;
collection
Item
:
string
;
collection
SchemeId
:
string
;
note
:
string
;
}
...
...
@@ -25,10 +25,10 @@ export interface RokeProcessPageModel {
categoryId
:
string
;
processType
:
string
;
collectionSchemeId
:
string
;
ratedWorkingHours
:
string
;
note
:
string
;
}
...
...
xjrsoft-vue3/src/api/scgl/scjh/model/ScjhModel.ts
View file @
2b6e2ef0
...
...
@@ -19,8 +19,6 @@ export interface MesProductionPlanPageModel {
jhbh
:
string
;
khxmh
:
string
;
ddbh
:
string
;
kh
:
string
;
...
...
xjrsoft-vue3/src/views/jcsj/gxgl/components/config.ts
View file @
2b6e2ef0
This diff is collapsed.
Click to expand it.
xjrsoft-vue3/src/views/jcsj/gxgl/components/workflowPermission.ts
View file @
2b6e2ef0
This diff is collapsed.
Click to expand it.
xjrsoft-vue3/src/views/jcsj/gxgl/index.vue
View file @
2b6e2ef0
...
...
@@ -2,8 +2,29 @@
<
template
>
<ResizePageWrapper
:hasLeft=
"false"
>
<ResizePageWrapper
:hasLeft=
"true"
:formLeftWidth=
"300"
>
<template
#
resizeLeft
>
<BasicTree
title=
""
toolbar
search
switcher
:clickRowToExpand=
"true"
:treeData=
"treeData"
:fieldNames=
"
{ key: 'value', title: 'name' }"
@select="handleSelect"
>
<template
#
title=
"item"
>
<template
v-if=
"item.renderIcon === 'childIcon'"
>
<Icon
icon=
"ant-design:branches-outlined"
/>
</
template
>
{{ item.name }}
</template>
</BasicTree>
</template>
<
template
#
resizeRight
>
<BasicTable
@
register=
"registerTable"
isMenuTable
ref=
"tableRef"
...
...
@@ -60,7 +81,7 @@
</template>
<
script
lang=
"ts"
setup
>
import
{
ref
,
computed
,
provide
,
Ref
,
createVNode
,
import
{
ref
,
computed
,
provide
,
Ref
,
onMounted
,
createVNode
,
}
from
'vue'
;
import
{
Modal
}
from
'ant-design-vue'
;
...
...
@@ -95,8 +116,8 @@
import
Icon
from
'/@/components/Icon/index'
;
import
{
BasicTree
,
TreeItem
}
from
'/@/components/Tree'
;
import
{
getDicDetailList
}
from
'/@/api/system/dic'
;
...
...
@@ -154,8 +175,8 @@
const
formIdComputedRef
=
computed
(()
=>
currentRoute
.
value
.
meta
.
formId
as
string
);
provide
<
Ref
<
string
>>
(
'currentFormId'
,
formIdComputedRef
);
const
selectId
=
ref
(
''
);
const
treeData
=
ref
<
TreeItem
[]
>
([]);
...
...
@@ -214,6 +235,11 @@
onMounted
(()
=>
{
fetch
();
});
function
buttonClick
(
code
)
{
...
...
@@ -326,6 +352,31 @@
function
handleSelect
(
selectIds
)
{
selectId
.
value
=
selectIds
[
0
];
reload
({
searchInfo
:
{
categoryId
:
selectIds
[
0
]
}
});
}
async
function
fetch
()
{
treeData
.
value
=
(
await
getDicDetailList
({
itemId
:
'2005547790246666242'
,
}))
as
unknown
as
TreeItem
[];
addRenderIcon
(
treeData
.
value
);
}
function
addRenderIcon
(
data
)
{
data
.
map
((
item
)
=>
{
if
(
item
.
children
?.
length
)
addRenderIcon
(
item
.
children
);
return
(
item
.
renderIcon
=
item
.
children
?.
length
?
'parentIcon'
:
'childIcon'
);
});
}
function
getLessActions
(
record
:
Recordable
)
{
let
list
=
getActions
(
record
);
return
list
.
slice
(
0
,
listSpliceNum
.
value
);
...
...
xjrsoft-vue3/src/views/scgl/scjh/components/config.ts
View file @
2b6e2ef0
...
...
@@ -48,19 +48,6 @@ export const columns: BasicColumn[] = [
{
resizable
:
true
,
dataIndex
:
'khxmh'
,
title
:
'客户项目号'
,
componentType
:
'input'
,
fixed
:
false
,
sorter
:
true
,
styleConfig
:
undefined
,
listStyle
:
''
,
},
{
resizable
:
true
,
dataIndex
:
'ddbh'
,
title
:
'订单编号'
,
componentType
:
'input'
,
...
...
@@ -82,7 +69,7 @@ export const columns: BasicColumn[] = [
sorter
:
true
,
styleConfig
:
undefined
,
listStyle
:
undefined
,
listStyle
:
''
,
},
{
...
...
@@ -565,6 +552,15 @@ export const formProps: FormProps = {
component
:
'0973f42360874c6e86f425a363afd8ad'
,
bindTable
:
'mes_production_plan_product_rela'
,
},
{
name
:
'hjzt'
,
tableTitle
:
'合金状态'
,
bindField
:
'heJinZhuangTai4056'
,
show
:
true
,
width
:
150
,
component
:
'e466da29e7544bdba302b4829996f478'
,
bindTable
:
'mes_production_plan_product_rela'
,
},
],
},
dicOptions
:
[],
...
...
xjrsoft-vue3/src/views/sys/login/Login.vue
View file @
2b6e2ef0
...
...
@@ -28,17 +28,7 @@
<div
class=
"right-top-box"
>
<img
src=
"../../../assets/images/login-right.gif"
/>
</div>
<div
class=
"copyright"
>
Copyright © 长沙力软信息技术有限公司,
<br
/>
All Rights Reserved.
<a
href=
"https://beian.miit.gov.cn/"
style=
"white-space: nowrap; color: inherit; text-decoration: none"
target=
"_blank"
>
湘ICP备19021782号-1
</a
>
助企业和团队快速实现目标
</div
>
<div
class=
"copyright"
>
Copyright © 和利时科技集团有限公司
<br
/></div>
</div>
</
template
>
<
script
lang=
"ts"
setup
>
...
...
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