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
419383fc
Commit
419383fc
authored
Nov 11, 2022
by
dingyoujian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整
parent
8671bdc1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
206 additions
and
153 deletions
+206
-153
enterTV.js
src/api/threeViolations/enterTV.js
+0
-1
tFPasses.js
src/api/threeViolations/tFPasses.js
+37
-0
index.js
src/router/index.js
+15
-1
index.vue
src/views/threeViolations/enterTV/index.vue
+2
-0
index.vue
src/views/threeViolations/tFPasses/index.vue
+152
-151
No files found.
src/api/threeViolations/enterTV.js
View file @
419383fc
...
...
@@ -35,4 +35,3 @@ export function doDelete(query) {
src/api/threeViolations/tFPasses.js
0 → 100644
View file @
419383fc
import
request
from
'common/src/utils/request'
/* 查询 */
export
function
doQuery
(
query
)
{
return
request
({
url
:
'/aqgl/swgl/swjlsp/query'
,
method
:
'post'
,
data
:
query
||
{}
})
}
/* 更新 */
export
function
doUpdate
(
query
)
{
return
request
({
url
:
'/aqgl/swgl/swjlsp/update'
,
method
:
'post'
,
data
:
query
||
{}
})
}
export
function
doAdd
(
query
)
{
return
request
({
url
:
'/aqgl/swgl/swjlsp/add'
,
method
:
'post'
,
data
:
query
||
{}
})
}
export
function
doDelete
(
query
)
{
return
request
({
url
:
'/aqgl/swgl/swjlsp/delete'
,
method
:
'post'
,
data
:
query
||
{}
})
}
src/router/index.js
View file @
419383fc
import
Vue
from
'vue'
import
Router
from
'vue-router'
// import views from 'common'
Vue
.
use
(
Router
)
/* Layout */
...
...
@@ -126,6 +126,20 @@ export const constantRoutes = [
name
:
'scgw'
,
path
:
"scgw"
},
// {
// commonComponent:'test',
// component:() => import( "common/src/views/development/taskLog/index"),
// hidden:false,
// meta:{
// "title": "TEST",
// "icon": "",
// "noCache": false,
// "link": null,
// "mkid":101001300,
// },
// name:'test',
// path:"test"
// },
{
commonComponent
:
'announcementManagement'
,
component
:()
=>
import
(
"@/views/basicData/announcementManagement/index"
),
...
...
src/views/threeViolations/enterTV/index.vue
View file @
419383fc
...
...
@@ -24,6 +24,7 @@
<AttachFileButton
:app=
'app'
></AttachFileButton>
<FieldButton
:app=
'app'
></FieldButton>
<ExcelButton
:app=
'app'
></ExcelButton>
<WorkFlowButton
:app=
'app'
></WorkFlowButton>
<!-- 额外按钮-->
<!-- 表头设置 -->
...
...
@@ -85,6 +86,7 @@
{
label
:
"手机"
,
prop
:
"phone"
,
fieldType
:
"ftString"
,
width
:
192
},
{
label
:
"违章日期"
,
prop
:
"wzrq"
,
fieldType
:
"ftDateTime"
},
{
label
:
"违章行为"
,
prop
:
"wzxw"
,
fieldType
:
"ftString"
,
width
:
300
},
{
label
:
"状态"
,
prop
:
"wfpname"
,
fieldType
:
"ftString"
,
width
:
100
},
// {label: "备注", prop: "bz", fieldType: "ftString",width:300},
// {label: "维护人", prop: "whr", fieldType: "ftString"},
// {label: "维护时间", prop: "whsj", fieldType: "ftDateTime"},
...
...
src/views/threeViolations/tFPasses/index.vue
View file @
419383fc
...
...
@@ -38,9 +38,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>
...
...
@@ -87,12 +87,13 @@
doAdd
,
doUpdate
,
doDelete
}
from
'@/api/threeViolations/
enterTV.js'
;
}
from
'@/api/threeViolations/
tFPasses.js'
;
/* edit页面*/
import
Edit
from
'./edit'
import
Exposure
from
'./exposure.vue'
import
SafetyCourse
from
'./safetyCourse.vue'
import
Reflect
from
'./reflect.vue'
import
Leadership
from
'./leadership.vue'
import
Reflect
from
'./reflect.vue'
import
Leadership
from
'./leadership.vue'
import
Family
from
'./family.vue'
import
{
tableMixin
...
...
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