Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zghywpc-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
李苏
zghywpc-vue
Commits
dba8288b
Commit
dba8288b
authored
Sep 03, 2024
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
异物/检修 新增绑定设备 一些属性cz 管径等必填
parent
2440fb33
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
258 additions
and
3 deletions
+258
-3
index.vue
src/views/auxinput/sbxx/index.vue
+159
-0
edit.vue
src/views/jcxxgl/gjxx/edit.vue
+1
-0
edit.vue
src/views/jcxxgl/wlxx/edit.vue
+7
-0
index.vue
src/views/jcxxgl/wlxx/index.vue
+5
-0
edit.vue
src/views/jyfkgl/jyfkgl/edit.vue
+1
-0
edit.vue
src/views/sbjxgl/sbjxxx/edit.vue
+30
-0
index.vue
src/views/sbjxgl/sbjxxx/index.vue
+12
-1
edit.vue
src/views/sbxxgl/sblxgx/sbxx/edit.vue
+1
-0
edit.vue
src/views/sbxxgl/sbxx/edit.vue
+1
-0
edit.vue
src/views/ywxxgl/ywxxgl/edit.vue
+31
-1
index.vue
src/views/ywxxgl/ywxxgl/index.vue
+10
-1
No files found.
src/views/auxinput/sbxx/index.vue
0 → 100644
View file @
dba8288b
<
template
>
<BasePage
:power=
'power'
ref=
"basePage"
class=
"min_full"
:config=
"config"
>
<template
#
dialog=
"ctx"
>
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</
template
>
<
template
#
toolbar=
"ctx"
>
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
<!--
<el-button
@
click=
"demo(ctx.basePage)"
size=
'mini'
type=
"primary"
>
示例按钮
</el-button>
-->
</
template
>
</BasePage>
</template>
<
script
>
export
default
{
name
:
'wlxx'
,
data
()
{
return
{
power
:
{
add
:
false
,
copy
:
false
,
/* 手动控制删除 */
delButton
:
false
,
/* 手动控制编辑按钮权限 */
editButton
:
false
,
/* 是否渲染右侧操作按钮 */
operateButtons
:
false
,
/* 是否开启工作流按钮 */
workFlow
:
false
,
/* 表格开启选择,以及记住选择 */
showSelection
:
false
,
saveSelected
:
false
},
config
:
{
/* 基本配置*/
url
:
'sbgl/usbxx'
,
tableTitle
:
[
{
title
:
"设备编码"
,
field
:
"code"
,
width
:
140
},
{
title
:
"设备名称"
,
field
:
"name"
,
width
:
140
},
// {
// title: "层级码",
// field: "cjid",
// width: 140
// },
{
title
:
"设备类型"
,
field
:
"type"
,
width
:
140
,
transform
:
{
"url"
:
"sbgl/usblx/query"
,
"label"
:
"name"
,
"value"
:
"code"
}
},
{
title
:
"机组编码"
,
field
:
"jzbm"
,
width
:
140
,
transform
:
{
"url"
:
"sbgl/ujzbm/query"
,
"label"
:
"name"
,
"value"
:
"code"
}
},
{
title
:
"风险等级"
,
field
:
"fxdj"
,
width
:
140
,
transform
:
{
"url"
:
"sbgl/usbxx/init/fxlevel"
,
"label"
:
"name"
,
"value"
:
"id"
}
},
{
title
:
"规格"
,
field
:
"gg"
,
width
:
140
},
{
title
:
"管径"
,
field
:
"gj"
,
width
:
140
},
{
title
:
"流通直径"
,
field
:
"ltzj"
,
width
:
140
},
{
title
:
"备注"
,
field
:
"bz"
,
width
:
250
},
{
title
:
"创建人"
,
field
:
"cjr"
,
width
:
120
},
{
title
:
"创建时间"
,
field
:
"cjsj"
,
fieldType
:
'ftDateTime'
},
{
title
:
"维护人"
,
field
:
"whr"
,
hidden
:
true
,
width
:
120
},
{
title
:
"维护时间"
,
field
:
"whsj"
,
fieldType
:
'ftDateTime'
,
hidden
:
true
}
],
queryParams
:
[
[
{
label
:
'设备信息'
,
prop
:
'sbxxInfo'
,
span
:
6
,
type
:
'input'
,
value
:
''
}
]
],
/* 默认启停用 */
showqt
:
false
,
}
}
},
methods
:
{
/* 示例*/
// demo(basePage){
// }
},
components
:
{
}
}
</
script
>
<
style
>
</
style
>
src/views/jcxxgl/gjxx/edit.vue
View file @
dba8288b
...
...
@@ -36,6 +36,7 @@
prop
:
'cz'
,
span
:
12
,
type
:
'input'
,
required
:
true
,
},
{
label
:
'规格'
,
...
...
src/views/jcxxgl/wlxx/edit.vue
View file @
dba8288b
...
...
@@ -32,6 +32,13 @@
type
:
'input'
,
required
:
true
,
},
{
label
:
'材质'
,
prop
:
'cz'
,
span
:
12
,
type
:
'input'
,
required
:
true
,
},
{
label
:
'规格'
,
prop
:
'gg'
,
...
...
src/views/jcxxgl/wlxx/index.vue
View file @
dba8288b
...
...
@@ -31,6 +31,11 @@
field
:
"name"
,
width
:
140
},
{
title
:
"材质"
,
field
:
"cz"
,
width
:
200
},
{
title
:
"规格"
,
field
:
"gg"
,
...
...
src/views/jyfkgl/jyfkgl/edit.vue
View file @
dba8288b
...
...
@@ -47,6 +47,7 @@
prop
:
'cz'
,
span
:
24
,
type
:
'input'
,
required
:
true
},
{
label
:
'异物地点'
,
...
...
src/views/sbjxgl/sbjxxx/edit.vue
View file @
dba8288b
...
...
@@ -13,11 +13,41 @@
import
{
editMixin
}
from
'common'
import
sbxx
from
'@/views/auxinput/sbxx'
export
default
{
mixins
:
[
editMixin
],
data
()
{
return
{
editColItemList
:
[
{
label
:
'设备名称'
,
prop
:
'sbxxid'
,
span
:
12
,
required
:
true
,
type
:
'AuxInput'
,
typeConfig
:
{
isRequest
:
false
,
dynamic
:
true
,
code
:
true
,
component
:
sbxx
,
label
:
'sbxxName'
,
transform
:
{
value
:
'id'
,
label
:
'name'
},
give
(
res
){
this
.
form
.
sbxxCode
=
res
.
code
}
}
},
{
label
:
'设备编码'
,
prop
:
'sbxxCode'
,
span
:
12
,
type
:
'input'
,
required
:
true
,
readonly
:
true
},
{
label
:
'检修内容'
,
...
...
src/views/sbjxgl/sbjxxx/index.vue
View file @
dba8288b
...
...
@@ -45,7 +45,18 @@
config
:
{
/* 基本配置*/
url
:
'jxgl/usbjx'
,
tableTitle
:
[{
tableTitle
:
[
{
title
:
"设备名称"
,
field
:
"sbxxName"
,
width
:
180
},
{
title
:
"设备编码"
,
field
:
"sbxxCode"
,
width
:
180
},
{
title
:
"检修内容"
,
field
:
"jxnr"
,
width
:
350
...
...
src/views/sbxxgl/sblxgx/sbxx/edit.vue
View file @
dba8288b
...
...
@@ -110,6 +110,7 @@
prop
:
'gj'
,
span
:
8
,
"type"
:
"input"
,
required
:
true
,
},
{
label
:
'流通直径'
,
...
...
src/views/sbxxgl/sbxx/edit.vue
View file @
dba8288b
...
...
@@ -110,6 +110,7 @@
prop
:
'gj'
,
span
:
8
,
"type"
:
"input"
,
required
:
true
},
{
label
:
'流通直径'
,
...
...
src/views/ywxxgl/ywxxgl/edit.vue
View file @
dba8288b
...
...
@@ -13,12 +13,41 @@
import
{
editMixin
}
from
'common'
import
sbxx
from
'@/views/auxinput/sbxx'
export
default
{
mixins
:
[
editMixin
],
data
()
{
return
{
editColItemList
:
[
{
label
:
'设备名称'
,
prop
:
'sbxxid'
,
span
:
12
,
required
:
true
,
type
:
'AuxInput'
,
typeConfig
:
{
isRequest
:
false
,
dynamic
:
true
,
code
:
true
,
component
:
sbxx
,
label
:
'sbxxName'
,
transform
:
{
value
:
'id'
,
label
:
'name'
},
give
(
res
){
this
.
form
.
sbxxCode
=
res
.
code
}
}
},
{
label
:
'设备编码'
,
prop
:
'sbxxCode'
,
span
:
12
,
type
:
'input'
,
required
:
true
,
readonly
:
true
},
{
label
:
'名称'
,
prop
:
'name'
,
...
...
@@ -57,6 +86,7 @@
prop
:
'cz'
,
span
:
12
,
type
:
'input'
,
required
:
true
,
},
{
label
:
"地点"
,
...
...
src/views/ywxxgl/ywxxgl/index.vue
View file @
dba8288b
...
...
@@ -36,7 +36,16 @@
"value"
:
"id"
}
},
{
title
:
"设备名称"
,
field
:
"sbxxName"
,
width
:
180
},
{
title
:
"设备编码"
,
field
:
"sbxxCode"
,
width
:
180
},
{
label
:
"规格"
,
prop
:
"ggxh"
,
...
...
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