Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
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
wangqi
dd_school
Commits
2199c8a2
Commit
2199c8a2
authored
Nov 10, 2023
by
Cat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zd 教师电子档案
parent
c6373719
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
40 deletions
+2
-40
ruoyi-ui/build/index.js
+0
-35
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
+2
-5
No files found.
ruoyi-ui/build/index.js
deleted
100644 → 0
View file @
c6373719
const
{
run
}
=
require
(
'runjs'
)
const
chalk
=
require
(
'chalk'
)
const
config
=
require
(
'../vue.config.js'
)
const
rawArgv
=
process
.
argv
.
slice
(
2
)
const
args
=
rawArgv
.
join
(
' '
)
if
(
process
.
env
.
npm_config_preview
||
rawArgv
.
includes
(
'--preview'
))
{
const
report
=
rawArgv
.
includes
(
'--report'
)
run
(
`vue-cli-service build
${
args
}
`
)
const
port
=
9526
const
publicPath
=
config
.
publicPath
var
connect
=
require
(
'connect'
)
var
serveStatic
=
require
(
'serve-static'
)
const
app
=
connect
()
app
.
use
(
publicPath
,
serveStatic
(
'./dist'
,
{
index
:
[
'index.html'
,
'/'
]
})
)
app
.
listen
(
port
,
function
()
{
console
.
log
(
chalk
.
green
(
`> Preview at http://localhost:
${
port
}${
publicPath
}
`
))
if
(
report
)
{
console
.
log
(
chalk
.
green
(
`> Report at http://localhost:
${
port
}${
publicPath
}
report.html`
))
}
})
}
else
{
run
(
`vue-cli-service build
${
args
}
`
)
}
ruoyi-ui/src/views/smartSchool/personWork/electronicRecord/index.vue
View file @
2199c8a2
...
...
@@ -720,10 +720,9 @@ export default {
handleExtract
()
{
const
id
=
this
.
form
.
id
;
syncNotice
(
id
).
then
((
res
)
=>
{
this
.
$modal
.
msgSuccess
(
"提取成功"
);
this
.
tableDataInfo
.
forEach
((
item
)
=>
{
getFileTnfo
(
item
).
then
((
res
)
=>
{
this
.
form
=
res
.
data
;
//
this.form = res.data;
this
.
tableFirstData
=
res
.
data
.
thesisList
;
this
.
tableSecondData
=
res
.
data
.
materialList
;
this
.
tableThirdData
=
res
.
data
.
trainingList
;
...
...
@@ -766,9 +765,9 @@ export default {
val
.
thesisListInfo
=
val
.
schoolAccessoryList
;
return
val
;
});
this
.
$modal
.
msgSuccess
(
"页面已刷新"
);
});
});
this
.
$modal
.
msgSuccess
(
"提取成功"
);
});
},
...
...
@@ -890,13 +889,11 @@ export default {
},
//提交按钮
handleSubmit
(
row
)
{
console
.
log
(
row
,
"提交row"
);
const
id
=
row
.
fid
;
this
.
$modal
.
confirm
(
"是否提交该活动?"
)
.
then
(
function
()
{
return
fileSubReview
(
id
);
console
.
log
(
row
,
"提交按钮"
);
})
.
then
(()
=>
{
this
.
getList
();
...
...
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