Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sgaqgl-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
李苏
sgaqgl-vue
Commits
51eca016
Commit
51eca016
authored
Nov 09, 2022
by
zhoumaotao
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.gavelinfo.com:lisu/sgaqgl-vue
parents
d0076916
d4ed9c4d
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
72 additions
and
20 deletions
+72
-20
babel.config.js
babel.config.js
+2
-1
maintenanceDuty.js
src/api/daily/maintenanceDuty.js
+11
-1
maintenanceStandards.js
src/api/daily/maintenanceStandards.js
+12
-0
performanceReport.js
src/api/daily/performanceReport.js
+2
-0
edit.vue
src/views/daily/duty/edit.vue
+4
-4
index.vue
src/views/daily/maintenanceDuty/index.vue
+16
-3
edit.vue
src/views/daily/maintenanceStandards/edit.vue
+2
-2
index.vue
src/views/daily/maintenanceStandards/index.vue
+18
-4
edit.vue
src/views/daily/workInspection/edit.vue
+1
-1
index.vue
src/views/daily/workInspection/index.vue
+4
-4
No files found.
babel.config.js
View file @
51eca016
const
clearArrow
=
require
(
'./tools/babel-clearArrow.js'
);
const
proPlugins
=
[
'dynamic-import-node'
,
[
clearArrow
]];
const
tryCatchAuto
=
require
(
'common/src/babelPlugin/tryCatchAuto.js'
);
const
proPlugins
=
[
'dynamic-import-node'
,
[
tryCatchAuto
]];
if
(
process
.
env
.
NODE_ENV
===
'production'
)
{
proPlugins
.
push
(
'transform-remove-console'
);
proPlugins
.
push
(
'transform-remove-debugger'
);
...
...
src/api/daily/maintenanceDuty.js
View file @
51eca016
...
...
@@ -31,7 +31,17 @@ export function doDelete(query) {
})
}
/**
* 生成履职任务
* in:id
*/
export
function
doAutoGen
(
query
)
{
return
request
({
url
:
'/aqgl/rcgl/lzbz/genLzrw'
,
method
:
'post'
,
data
:
query
||
{}
})
}
...
...
src/api/daily/maintenanceStandards.js
View file @
51eca016
...
...
@@ -43,6 +43,18 @@ export function doQueryZyfl(query) {
})
}
/**
* 生成危险作业
* in:id
*/
export
function
doAutoGen
(
query
)
{
return
request
({
url
:
'/aqgl/rcgl/wxzybz/genWxzy'
,
method
:
'post'
,
data
:
query
||
{}
})
}
src/api/daily/performanceReport.js
View file @
51eca016
...
...
@@ -53,3 +53,5 @@ export function doAddDtl(query) {
src/views/daily/duty/edit.vue
View file @
51eca016
...
...
@@ -14,7 +14,7 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"履职内容"
ref=
"content"
prop=
"content"
>
<RelSelect
hasValue
:optionsData=
'optionsData'
style=
"width: 100%;"
:params=
"
{flid:form.flid}"
src='/aqgl/rcgl/lzbz/query'
clearable :match="{value:'content',label:'content'}" v-model='form.content' >
</RelSelect>
<RelSelect
hasValue
:optionsData=
'optionsData'
style=
"width: 100%;"
:params=
"
{flid:form.flid}" clearable :match="{value:'content',label:'content'}" v-model='form.content' >
</RelSelect>
<!--
<el-input
:readonly=
"readonly"
v-model=
"form.content"
></el-input>
-->
</el-form-item>
</el-col>
...
...
@@ -46,9 +46,9 @@
watch
:{
flid
(
val
){
queryFlnr
({
flid
:
val
}).
then
(
res
=>
{
if
(
res
.
data
&&
res
.
data
.
record
){
this
.
content
=
''
this
.
optionsData
=
res
.
data
.
record
||
[]
if
(
res
.
data
&&
res
.
data
.
record
s
){
this
.
form
.
content
=
''
this
.
optionsData
=
res
.
data
.
record
s
||
[]
}
})
}
...
...
src/views/daily/maintenanceDuty/index.vue
View file @
51eca016
...
...
@@ -23,6 +23,7 @@
<FieldButton
:app=
'app'
></FieldButton>
<ExcelButton
:app=
'app'
></ExcelButton>
<!-- 额外按钮-->
<el-button
size=
'mini'
@
click
.
native=
"autoGen()"
type=
"primary"
>
生成任务
</el-button>
<!-- 表头设置 -->
<!-- 权限-->
...
...
@@ -44,7 +45,8 @@
doQuery
,
doAdd
,
doUpdate
,
doDelete
doDelete
,
doAutoGen
}
from
'@/api/daily/maintenanceDuty.js'
;
/* edit页面*/
import
Edit
from
'./edit'
...
...
@@ -83,14 +85,25 @@
},
methods
:
{
/* 基础查询*/
query
:
doQuery
,
/* 基础查询*/
query
:
doQuery
,
/* 基础增*/
apiAdd
:
doAdd
,
/* 基础更新*/
apiUpdate
:
doUpdate
,
/* 删除操作*/
apiDelete
:
doDelete
,
autoGen
()
{
if
(
this
.
app
.
selectOne
||
this
.
app
.
clickOne
)
{
doAutoGen
(
this
.
singleItem
).
then
(
res
=>
{
if
(
res
.
success
){
this
.
$success
(
'生成任务成功!'
)
}
})
}
else
{
this
.
$warning
(
'请选中标准进行操作!'
);
}
},
/* 初始化赋值操作*/
init
()
{
...
...
src/views/daily/maintenanceStandards/edit.vue
View file @
51eca016
...
...
@@ -5,13 +5,13 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"分类"
ref=
"flid"
prop=
"flid"
>
<RelSelect
style=
"width: 100%;"
src=
'/aqgl/rcgl/wxzyfl/query'
filterable
clearable
:match=
"
{value:'id',label:'name'}" v-model='form.flid' >
</RelSelect>
<RelSelect
style=
"width: 100%;"
src=
'/aqgl/rcgl/wxzyfl/query'
clearable
:match=
"
{value:'id',label:'name'}" v-model='form.flid' >
</RelSelect>
<!--
<el-input
:readonly=
"readonly"
v-model=
"form.bmid"
></el-input>
-->
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"部门"
ref=
"bmid"
prop=
"bmid"
>
<RelSelect
style=
"width: 100%;"
src=
'/kzzx/bm/query'
filterable
clearable
:match=
"
{value:'id',label:'bmmc'}" v-model='form.bmid' >
</RelSelect>
<RelSelect
style=
"width: 100%;"
src=
'/kzzx/bm/query'
clearable
:match=
"
{value:'id',label:'bmmc'}" v-model='form.bmid' >
</RelSelect>
<!--
<el-input
:readonly=
"readonly"
v-model=
"form.bmid"
></el-input>
-->
</el-form-item>
</el-col>
...
...
src/views/daily/maintenanceStandards/index.vue
View file @
51eca016
...
...
@@ -23,6 +23,7 @@
<FieldButton
:app=
'app'
></FieldButton>
<ExcelButton
:app=
'app'
></ExcelButton>
<!-- 额外按钮-->
<el-button
size=
'mini'
@
click
.
native=
"autoGen()"
type=
"primary"
>
生成作业
</el-button>
<!-- 表头设置 -->
<!-- 权限-->
...
...
@@ -44,7 +45,8 @@
doQuery
,
doAdd
,
doUpdate
,
doDelete
doDelete
,
doAutoGen
}
from
'@/api/daily/maintenanceStandards'
;
/* edit页面*/
import
Edit
from
'./edit'
...
...
@@ -89,18 +91,30 @@
},
methods
:
{
/* 基础查询*/
query
:
doQuery
,
/* 基础查询*/
query
:
doQuery
,
/* 基础增*/
apiAdd
:
doAdd
,
/* 基础更新*/
apiUpdate
:
doUpdate
,
/* 删除操作*/
apiDelete
:
doDelete
,
autoGen
()
{
if
(
this
.
app
.
selectOne
||
this
.
app
.
clickOne
)
{
doAutoGen
(
this
.
singleItem
).
then
(
res
=>
{
if
(
res
.
success
){
this
.
$success
(
'生成作业成功!'
)
}
})
}
else
{
this
.
$warning
(
'请选中标准进行操作!'
);
}
},
/* 初始化赋值操作*/
init
()
{
}
}
},
components
:
{
Edit
,
...
...
src/views/daily/workInspection/edit.vue
View file @
51eca016
...
...
@@ -31,7 +31,7 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"分类"
ref=
"flid"
prop=
"flid"
>
<RelSelect
style=
"width: 100%;"
src=
'/aqgl/rcgl/wxzyfl/query'
filterable
clearable
:match=
"
{value:'id',label:'name'}" v-model='form.flid' >
</RelSelect>
<RelSelect
style=
"width: 100%;"
src=
'/aqgl/rcgl/wxzyfl/query'
clearable
:match=
"
{value:'id',label:'name'}" v-model='form.flid' >
</RelSelect>
</el-form-item>
</el-col>
<el-col
:span=
"24"
>
...
...
src/views/daily/workInspection/index.vue
View file @
51eca016
...
...
@@ -32,9 +32,9 @@
<el-row
class=
"tool-bar"
>
<PrintButton
:app=
'app'
></PrintButton>
<ViewButton
ref=
"view"
:app=
'app'
></ViewButton>
<AddButton
ref=
"add"
:app=
'app'
></AddButton
>
<CopyButton
ref=
"copy"
:app=
'app'
></CopyButton
>
<EditButton
ref=
"edit"
:app=
'app'
></EditButton
>
<!--
<AddButton
ref=
"add"
:app=
'app'
></AddButton>
--
>
<!--
<CopyButton
ref=
"copy"
:app=
'app'
></CopyButton>
--
>
<!--
<EditButton
ref=
"edit"
:app=
'app'
></EditButton>
--
>
<AttachFileButton
:app=
'app'
></AttachFileButton>
<FieldButton
:app=
'app'
></FieldButton>
<ExcelButton
:app=
'app'
></ExcelButton>
...
...
@@ -109,7 +109,7 @@
{
label
:
"分类"
,
prop
:
"flName"
,
fieldType
:
"ftString"
,
width
:
192
},
{
label
:
"人员"
,
prop
:
"tbrName"
,
fieldType
:
"ftString"
,
width
:
192
},
// {label: "备注", prop: "bz", fieldType: "ftString",width:300},
{
label
:
"状态"
,
prop
:
"zt"
,
fieldType
:
"ftString"
,
width
:
100
},
{
label
:
"状态"
,
prop
:
"zt
Name
"
,
fieldType
:
"ftString"
,
width
:
100
},
{
label
:
"维护人"
,
prop
:
"whr"
,
fieldType
:
"ftString"
},
{
label
:
"维护时间"
,
prop
:
"whsj"
,
fieldType
:
"ftDateTime"
},
{
label
:
"创建人"
,
prop
:
"cjr"
,
fieldType
:
"ftString"
},
...
...
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