Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
saas-manage
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chehuidong
saas-manage
Commits
8daebed0
Commit
8daebed0
authored
Jul 03, 2023
by
yangzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:工单
parent
25c48e12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
19 deletions
+25
-19
src/common/components/element-ui.js
+4
-0
src/views/basics/currency.vue
+1
-1
src/views/home/navMenu.vue
+8
-8
src/views/system/timed_task.vue
+0
-0
src/views/taskManage/index.vue
+12
-10
No files found.
src/common/components/element-ui.js
View file @
8daebed0
...
...
@@ -24,6 +24,8 @@ import {
MenuItemGroup
,
Tag
,
Checkbox
,
Tabs
,
TabPane
,
Tree
,
Dropdown
,
DropdownItem
,
...
...
@@ -50,6 +52,8 @@ const components = [
MenuItem
,
Submenu
,
MenuItemGroup
,
Tabs
,
TabPane
,
Tag
,
Checkbox
,
Tree
,
...
...
src/views/basics/currency.vue
View file @
8daebed0
...
...
@@ -160,7 +160,7 @@ export default {
],
},
paginationOptions
:
{
pageSize
:
10
0
,
pageSize
:
10
,
currentPage
:
1
,
total
:
0
,
},
...
...
src/views/home/navMenu.vue
View file @
8daebed0
...
...
@@ -187,14 +187,14 @@ export default {
index
:
'/saas/currency'
,
children
:
[],
},
//
{
//
id: 4,
//
path: '',
//
label: '定时任务',
//
icon: 'el-icon-message-solid',
//
index: '/saas/timed_task',
//
children: [],
//
},
{
id
:
4
,
path
:
''
,
label
:
'定时任务'
,
icon
:
'el-icon-message-solid'
,
index
:
'/saas/timed_task'
,
children
:
[],
},
],
},
],
...
...
src/views/system/timed_task.vue
0 → 100644
View file @
8daebed0
This diff is collapsed.
Click to expand it.
src/views/taskManage/index.vue
View file @
8daebed0
...
...
@@ -467,12 +467,11 @@ export default {
Edit
,
},
data
()
{
const
userInfo
=
localStorage
.
getItem
(
'user
info
'
)
const
userInfo
=
localStorage
.
getItem
(
'user'
)
let
employeeId
if
(
userInfo
)
{
employeeId
=
JSON
.
parse
(
userInfo
).
employeeId
}
return
{
loading
:
false
,
detailLoading
:
false
,
...
...
@@ -483,6 +482,7 @@ export default {
currentPage
:
1
,
total
:
0
,
},
userInfo
:
JSON
.
parse
(
userInfo
),
taskLeader
:
''
,
assignVisible
:
false
,
periodTime
:
[],
...
...
@@ -527,7 +527,7 @@ export default {
)
},
computed
:
{
...
mapState
([
'deptStaff'
,
'userInfo'
]),
...
mapState
([
'deptStaff'
]),
tableColumns
()
{
// const employeeId = this.employeeId
return
[
...
...
@@ -536,7 +536,7 @@ export default {
key
:
'title'
,
minWidth
:
120
,
align
:
'left'
,
render
:
(
item
)
=>
(
render
:
item
=>
(
<
span
style
=
"position: relative;"
>
<
span
>
{
item
.
title
}
<
/span
>
{
item
.
sign
===
1
&&
...
...
@@ -584,7 +584,7 @@ export default {
{
label
:
'描述'
,
key
:
'content'
,
render
:
(
item
)
=>
{
render
:
item
=>
{
return
(
<
div
class
=
"description"
...
...
@@ -623,7 +623,7 @@ export default {
fixed
:
'right'
,
width
:
80
,
align
:
'center'
,
render
:
(
item
)
=>
(
render
:
item
=>
(
<
span
>
{
<
span
...
...
@@ -853,8 +853,10 @@ export default {
},
async
getlist
()
{
this
.
loading
=
true
const
{
pageSize
,
currentPage
}
=
this
.
centerPageOptions
const
{
pageSize
,
currentPage
,
}
=
this
.
centerPageOptions
axios
.
post
(
'platform/platformWorkOrder/list_page'
,
{
pageSize
,
...
...
@@ -867,7 +869,7 @@ export default {
this
.
searchForm
.
leaders
&&
this
.
searchForm
.
leaders
.
join
(
','
),
})
.
then
(
(
res
)
=>
{
.
then
(
res
=>
{
if
(
res
.
code
!==
200
)
return
this
.
sourceData
=
res
.
data
.
records
this
.
centerPageOptions
.
total
=
res
.
data
.
total
...
...
@@ -971,7 +973,7 @@ export default {
.
get
(
`platform/platformWorkOrderChat/getByWorkOrder?workOrderId=
${
item
.
id
}
`
,
)
.
then
(
(
res
)
=>
{
.
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
this
.
chatRecord
=
res
.
data
}
...
...
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