Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhouqian
vue-gjjs
Commits
044a003c
Commit
044a003c
authored
Dec 28, 2021
by
liushikai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
任务列表添加标记
parent
860d9cf6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
7 deletions
+26
-7
Event.js
src/model/Sptsel/Event.js
+7
-4
Event.js
src/model/Trnrel/Event.js
+3
-0
Menu.vue
src/views/Business/Sptsel/Sptbrk/Menu.vue
+4
-1
Inftrnps.vue
src/views/Business/Trnrel/Inftrnps.vue
+3
-1
index.vue
src/views/TaskList/index.vue
+9
-1
No files found.
src/model/Sptsel/Event.js
View file @
044a003c
...
...
@@ -133,10 +133,12 @@ export default {
},
async
sptfndHandleSearch
()
{
this
.
model
.
chkpen
=
"t"
;
this
.
executeDefault
(
"sptstm"
).
then
(
res
=>
{
//TODO 处理数据逻辑
this
.
stmData
.
data
=
res
.
data
.
sptstm
.
rows
;
})
// this.executeDefault("sptstm").then(res => {
// //TODO 处理数据逻辑
// this.stmData.data = res.data.sptstm.rows;
// })
const
res
=
await
this
.
executeDefault
(
"sptstm"
)
this
.
stmData
.
data
=
res
.
data
.
sptstm
.
rows
;
}
}
\ No newline at end of file
src/model/Trnrel/Event.js
View file @
044a003c
...
...
@@ -338,6 +338,9 @@ export default {
this
.
model
.
trncorco
.
trnstm
=
res
.
data
.
trncorco_trnstm
;
})
// }
// const res = await this.executeDefault("searow")
// that.$refs.inftrnps.stmData.data = res.data.trncorco_trnstm.rows;
// this.model.trncorco.trnstm = res.data.trncorco_trnstm;
},
async
handleReset
()
{
...
...
src/views/Business/Sptsel/Sptbrk/Menu.vue
View file @
044a003c
...
...
@@ -398,7 +398,10 @@ export default {
},
};
},
mounted
()
{},
async
mounted
()
{
await
this
.
sptfndHandleSearch
()
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"sptbrk"
,
val
:
this
.
stmData
.
data
.
length
})
},
computed
:
{
chkinc
:
{
get
()
{
...
...
src/views/Business/Trnrel/Inftrnps.vue
View file @
044a003c
...
...
@@ -560,7 +560,7 @@ export default {
...
Event
,
},
created
:
function
()
{},
mounted
()
{
async
mounted
()
{
this
.
relflgCodes
=
[
{
label
:
"Correct"
,
value
:
"C"
},
...
...
@@ -571,6 +571,8 @@ export default {
{
label
:
"Rejected"
,
value
:
"N"
},
{
label
:
"Waiting"
,
value
:
"W"
},
];
await
this
.
handleSearch
()
this
.
$store
.
commit
(
"setTaskList"
,
{
key
:
"trnrel"
,
val
:
this
.
stmData
.
data
.
length
})
},
computed
:
{},
...
...
src/views/TaskList/index.vue
View file @
044a003c
...
...
@@ -5,11 +5,15 @@
<!--
<c-table
:columnsConfig=
"tableColumns"
:list=
"tableData"
></c-table>
-->
<span
slot=
"label"
>
待经办列表
<el-badge
v-if=
"$store.state.Status.taskList.sptsel"
:value=
"$store.state.Status.taskList.sptsel"
:max=
"99"
/>
<el-badge
v-if=
"$store.state.Status.taskList.sptsel
>0
"
:value=
"$store.state.Status.taskList.sptsel"
:max=
"99"
/>
</span>
<t-sptsel
/>
</el-tab-pane>
<el-tab-pane
label=
"待复核列表"
name=
"trnrel"
>
<span
slot=
"label"
>
待复核列表
<el-badge
v-if=
"$store.state.Status.taskList.trnrel>0"
:value=
"$store.state.Status.taskList.trnrel"
:max=
"99"
/>
</span>
<t-trnrel
/>
</el-tab-pane>
<el-tab-pane
label=
"已完成列表"
name=
"trnfnd"
>
...
...
@@ -19,6 +23,10 @@
<t-bopsel
/>
</el-tab-pane>
<el-tab-pane
label=
"草稿箱"
name=
"sptbrk"
>
<span
slot=
"label"
>
草稿箱
<el-badge
v-if=
"$store.state.Status.taskList.sptbrk>0"
:value=
"$store.state.Status.taskList.sptbrk"
:max=
"99"
/>
</span>
<t-sptbrk
/>
</el-tab-pane>
<el-tab-pane
label=
"到期提示"
name=
"diasel"
>
...
...
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