Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dxgaqgl-vue
Project
Project
Details
Activity
Releases
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
李苏
dxgaqgl-vue
Commits
577ad457
Commit
577ad457
authored
Jul 24, 2024
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aqgl/fxyk/fxpc/query 调整接口参数
parent
30dc20ae
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
176 additions
and
5 deletions
+176
-5
index.js
src/router/index.js
+4
-4
dialog.vue
src/views/basicData/bzwdmlwh/dialog.vue
+45
-0
edit.vue
src/views/basicData/bzwdmlwh/edit.vue
+53
-0
index.vue
src/views/basicData/bzwdmlwh/index.vue
+73
-0
index.vue
src/views/riskPrecontrol/maintenanceRiskTask/index.vue
+1
-1
No files found.
src/router/index.js
View file @
577ad457
...
...
@@ -796,7 +796,7 @@ export const powerRoutes = [{
path
:
"securityDocumentManagement"
},
/* 目录维护 */
/*
{
{
component
:
'basicData/bzwdmlwh/index'
,
hidden
:
false
,
meta
:
{
...
...
@@ -808,7 +808,7 @@ export const powerRoutes = [{
},
name
:
'bzwdmlwh'
,
path
:
"bzwdmlwh"
},
*/
},
{
component
:
'basicData/operationDcManagement/index'
,
hidden
:
false
,
...
...
@@ -2460,7 +2460,7 @@ export const powerRoutes = [{
"link"
:
null
,
"mkid"
:
'913000100'
,
},
path
:
'http://localhost:8
0
'
,
path
:
'http://localhost:8
1
'
,
},
{
hidden
:
false
,
...
...
@@ -2471,7 +2471,7 @@ export const powerRoutes = [{
"link"
:
null
,
"mkid"
:
'913000200'
,
},
path
:
'http://
localhost:81
'
,
path
:
'http://
124.22.0.107:19000/qyTdo/login
'
,
}
]
...
...
src/views/basicData/bzwdmlwh/dialog.vue
0 → 100644
View file @
577ad457
<
template
>
<DefaultDialog
:app=
'app'
>
<div
slot=
"form"
style=
"display: flex;height: 70vh;"
>
DialogTitle:'新增',
showDialog:false,
</div>
<div
slot=
"reFooter"
class=
"refooter"
>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"app.showDialog=false"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"save()"
>
保 存
</el-button>
</span>
</div>
</DefaultDialog>
</
template
>
<
script
>
export
default
{
props
:
{
app
:
{
type
:
Object
,
default
:
()
=>
{
return
{}
}
}
},
async
mounted
()
{
},
data
()
{
return
{
}
},
methods
:
{
}
}
</
script
>
<
style
scoped
>
</
style
>
src/views/basicData/bzwdmlwh/edit.vue
0 → 100644
View file @
577ad457
<
template
>
<RelDialog
width=
"50%"
:type=
'type'
:editApp=
'editApp'
:app=
'app'
:buttonApp=
'buttonApp'
>
<el-form
slot=
"form"
ref=
"form"
:model=
"form"
label-width=
"100px"
:rules=
"rules"
>
<el-row
:gutter=
"20"
:app=
"this"
>
<EditColItem
:required=
"item.required||false"
:readonly=
"item.readonly?true:false "
v-for=
"(item,index) in editColItemList "
:value=
"item.value"
:span=
"item.span"
:label=
"item.label"
:prop=
'item.prop'
:key=
"item.prop"
:type=
"item.type"
:typeConfig=
'item.typeConfig'
:rule=
"item.rule"
/>
</el-row>
</el-form>
</RelDialog>
</
template
>
<
script
>
import
{
editMixin
}
from
'common'
export
default
{
mixins
:
[
editMixin
],
data
()
{
return
{
editColItemList
:
[
{
"label"
:
"公司"
,
"prop"
:
"gsid"
,
"span"
:
8
,
"type"
:
"RelSelect"
,
required
:
true
,
"typeConfig"
:
{
"src"
:
"jcsj/common/bm/queryGs"
,
"match"
:
{
"value"
:
"id"
,
"label"
:
"bmmc"
}
}
},
{
label
:
'名称'
,
prop
:
'name'
,
span
:
12
,
type
:
'input'
,
required
:
true
,
},
{
label
:
'备注'
,
prop
:
'bz'
,
span
:
24
,
type
:
'input'
},
]
}
}
}
</
script
>
src/views/basicData/bzwdmlwh/index.vue
0 → 100644
View file @
577ad457
<
template
>
<div
class=
"min_full flex"
style=
"flex-direction: row;"
>
<div
class=
"full"
style=
"width: 200px;border-right: 0px;"
>
<LazyTree
:props=
"
{
label: 'bmmc',
isLeaf: 'isLeaf'
}" treeTitle='文档目录' @selected='selectedTree' url='aqgl/jcsj/bzzywdml/query/tree' />
</div>
<BasePage
ref=
"basePage"
:autoQuery=
"false"
class=
"min_full"
style=
"width: calc(100% - 200px);border-top: 0px;"
:config=
"config"
>
<template
#
dialog=
"ctx"
>
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</
template
>
<
template
#
toolbar=
"ctx"
>
<!--
<el-button
@
click=
"demo(ctx.basePage)"
size=
'mini'
type=
"primary"
>
直接入库
</el-button>
-->
</
template
>
</BasePage>
</div>
</template>
<
script
>
import
Edit
from
'./edit.vue'
export
default
{
data
(){
return
{
config
:{
/* 基本配置*/
url
:
'aqgl/jcsj/bzzywdml'
,
tableTitle
:
[
{
title
:
"名称"
,
field
:
"name"
,
width
:
140
},
{
title
:
"公司"
,
field
:
"gsName"
,
width
:
140
},
{
title
:
"备注"
,
field
:
"bz"
},
{
title
:
"维护人"
,
field
:
"whr"
},
{
title
:
"维护时间"
,
field
:
"whsj"
,
fieldType
:
"ftDateTime"
},
],
queryParams
:[[
{
label
:
'名称'
,
prop
:
'name'
,
span
:
6
,
type
:
'input'
,
value
:
''
}
]],
/* 默认启停用 */
showqt
:
false
,
}
}
},
methods
:
{
selectedTree
(
e
)
{
this
.
$refs
.
basePage
.
queryParams
.
gsid
=
e
.
id
||
'root'
this
.
$refs
.
basePage
.
$refs
[
'TablePager'
].
pageQuery
()
},
/* 示例*/
// demo(basePage){
// }
},
components
:{
Edit
}
}
</
script
>
<
style
>
</
style
>
src/views/riskPrecontrol/maintenanceRiskTask/index.vue
View file @
577ad457
...
...
@@ -157,7 +157,7 @@ import Zdzrr from './zdzrr'
/* 查询参数*/
queryParams
:
{
rwlx
:
''
,
queryType
:
'
history
'
,
queryType
:
'
fxpc
'
,
gsid
:
''
,
bmid
:
''
,
jcr
:
''
,
...
...
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