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
57fd2195
Commit
57fd2195
authored
Nov 10, 2022
by
zhoumaotao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面调整
parent
f41ad82f
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
25 deletions
+35
-25
common.js
src/api/common/common.js
+20
-0
wxdwsb.js
src/api/outsourcingDirector/wxdwsb.js
+0
-9
mainIndex.vue
src/views/basicData/operationDcManagement/mainIndex.vue
+2
-2
mainIndex.vue
src/views/basicData/securityDocumentManagement/mainIndex.vue
+8
-7
edit.vue
src/views/dangerManagement/maintenanceDg/edit.vue
+2
-3
index.vue
src/views/dangerManagement/maintenanceDg/index.vue
+3
-4
No files found.
src/api/common/common.js
0 → 100644
View file @
57fd2195
import
request
from
'common/src/utils/request'
/* 事务类型接口 */
export
function
initSwlx
(
query
)
{
return
request
({
url
:
'/jcsj/common/wfstate'
,
method
:
'post'
,
data
:
query
||
{}
})
}
/* 部门接口 */
export
function
initBm
(
query
)
{
return
request
({
url
:
'/kzzx/bm/query'
,
method
:
'post'
,
data
:
query
||
{}
})
}
src/api/outsourcingDirector/wxdwsb.js
View file @
57fd2195
...
...
@@ -51,15 +51,6 @@ export function initDwlx(query) {
data
:
query
||
{}
})
}
/* 事务类型接口 */
export
function
initSwlx
(
query
)
{
return
request
({
url
:
'/jcsj/common/wfstate'
,
method
:
'post'
,
data
:
query
||
{}
})
}
/* 外协单位审批查询 */
export
function
doQuerySp
(
query
)
{
...
...
src/views/basicData/operationDcManagement/mainIndex.vue
View file @
57fd2195
...
...
@@ -7,7 +7,7 @@
<el-col
:span=
"12"
class=
"search-col"
>
<div
class=
"search-item"
>
<span
class=
"search-span"
>
名称:
</span>
<el-input
v-model=
"queryParams.
info
"
></el-input>
<el-input
v-model=
"queryParams.
name
"
></el-input>
</div>
</el-col>
</el-row>
...
...
@@ -76,7 +76,7 @@
baseUrl
:
'/aqgl/jcsj/bzzywdml'
,
/* 查询参数*/
queryParams
:
{
info
:
''
name
:
''
},
/* 表格标题对应参数*/
tableTitle
:
[
...
...
src/views/basicData/securityDocumentManagement/mainIndex.vue
View file @
57fd2195
...
...
@@ -4,30 +4,30 @@
<div
class=
"search"
v-condition
>
<SearchButton
:app=
'app'
></SearchButton>
<el-row
:gutter=
"20"
class=
"search-row-1"
>
<el-col
:span=
"6"
class=
"search-col"
>
<!--
<el-col
:span=
"6"
class=
"search-col"
>
<div
class=
"search-item"
>
<span
class=
"search-span"
>
事务类型:
</span>
<el-select
placeholder=
"请选择"
></el-select>
</div>
</el-col>
</el-col>
-->
<el-col
:span=
"6"
class=
"search-col"
>
<div
class=
"search-item"
>
<span
class=
"search-span"
>
目录名称:
</span>
<el-input></el-input>
<el-input
v-model=
"queryParams.name"
></el-input>
</div>
</el-col>
<el-col
:span=
"6"
class=
"search-col"
>
<div
class=
"search-item"
>
<span
class=
"search-span"
>
文档标题:
</span>
<el-input
></el-input>
<el-input
v-model=
"queryParams.title"
></el-input>
</div>
</el-col>
<el-col
:span=
"6"
class=
"search-col"
>
<!--
<el-col
:span=
"6"
class=
"search-col"
>
<div
class=
"search-item"
>
<span
class=
"search-span"
>
状态:
</span>
<el-select
placeholder=
"请选择"
></el-select>
</div>
</el-col>
</el-col>
-->
</el-row>
</div>
...
...
@@ -87,7 +87,8 @@
baseUrl
:
'aqgl/jcsj/aqwdml'
,
/* 查询参数*/
queryParams
:
{
name
:
''
,
title
:
''
},
/* 表格标题对应参数*/
tableTitle
:
[
...
...
src/views/dangerManagement/maintenanceDg/edit.vue
View file @
57fd2195
...
...
@@ -4,7 +4,7 @@
<el-form
slot=
"form"
ref=
"form"
:model=
"form"
label-width=
"80px"
:rules=
"rules"
>
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"项目"
ref=
"xm"
prop=
"xm"
>
<el-form-item
label=
"
检验
项目"
ref=
"xm"
prop=
"xm"
>
<el-input
:readonly=
"readonly"
v-model=
"form.xm"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -27,9 +27,8 @@
</el-col>
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"内容"
ref=
"content"
prop=
"content"
>
<el-form-item
label=
"
检验
内容"
ref=
"content"
prop=
"content"
>
<el-input
type=
"textarea"
:readonly=
"readonly"
v-model=
"form.content"
></el-input>
</el-form-item>
</el-col>
...
...
src/views/dangerManagement/maintenanceDg/index.vue
View file @
57fd2195
...
...
@@ -88,13 +88,12 @@
},
/* 表格标题对应参数*/
tableTitle
:
[
{
label
:
"
分类"
,
prop
:
"flid"
,
fieldType
:
"ftString"
,
width
:
192
},
{
label
:
"
项目"
,
prop
:
"xm"
,
fieldType
:
"ftString"
,
width
:
30
0
},
{
label
:
"
检验项目"
,
prop
:
"xm"
,
fieldType
:
"ftString"
,
width
:
160
},
{
label
:
"
检验内容"
,
prop
:
"content"
,
fieldType
:
"ftString"
,
width
:
28
0
},
{
label
:
"隐患等级"
,
prop
:
"yhdj"
,
fieldType
:
"ftString"
,
width
:
100
},
{
label
:
"考核分数"
,
prop
:
"khfs"
,
fieldType
:
"int"
},
{
label
:
"罚款金额"
,
prop
:
"fkje"
,
fieldType
:
"int"
},
{
label
:
"内容"
,
prop
:
"content"
,
fieldType
:
"ftString"
,
width
:
300
},
{
label
:
"备注"
,
prop
:
"bz"
,
fieldType
:
"ftString"
,
width
:
300
},
{
label
:
"备注"
,
prop
:
"bz"
,
fieldType
:
"ftString"
,
width
:
200
},
{
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