Compare commits

..

No commits in common. "241b0d3f2403bb3b7114d93d3417881e714db1bb" and "15f6b5dcbda43b6f4467b199e114249e6c012d45" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View File

@ -9,7 +9,6 @@ export const asyncLocalFile = (item) => {
if (isAsync === true) { if (isAsync === true) {
item.async = 'on' item.async = 'on'
if (type === 'down') { if (type === 'down') {
console.log(item)
ipcRenderer.send('download-file-default', { ipcRenderer.send('download-file-default', {
url: item.fileFullPath, url: item.fileFullPath,
fileName: item.fileNewName fileName: item.fileNewName

View File

@ -232,7 +232,7 @@ export default {
}, },
asyncAllFile() { asyncAllFile() {
this.isLoading = true this.isLoading = true
return getSmarttalkPage({ getSmarttalkPage({
...this.uploadData, ...this.uploadData,
orderByColumn: 'uploadTime', orderByColumn: 'uploadTime',
isAsc: 'desc', isAsc: 'desc',
@ -249,11 +249,9 @@ export default {
await asyncLocalFile(item) await asyncLocalFile(item)
} }
this.asyncAllFileVisiable = false this.asyncAllFileVisiable = false
return Promise.resolve()
}) })
.catch(() => { .catch(() => {
this.isLoading = false this.isLoading = false
return Promise.resolve()
}) })
}, },
async nodeClick(data) { async nodeClick(data) {
@ -266,7 +264,7 @@ export default {
this.uploadData.levelSecondId = cata[1] this.uploadData.levelSecondId = cata[1]
this.uploadData.levelThirdId = cata[2] this.uploadData.levelThirdId = cata[2]
this.uploadData.textbookId = data.textBook.curBookId this.uploadData.textbookId = data.textBook.curBookId
await this.asyncAllFile() this.asyncAllFile()
if (this.uploadData.levelSecondId) { if (this.uploadData.levelSecondId) {
// ID // ID
const res = await this.getChapterId() const res = await this.getChapterId()
@ -294,7 +292,7 @@ export default {
getChapterId() { getChapterId() {
return listEntpcourse({ evalid: this.uploadData.levelSecondId, edituserid: this.userStore.userId, pageSize: 500 }) return listEntpcourse({ evalid: this.uploadData.levelSecondId, edituserid: this.userStore.userId, pageSize: 500 })
}, },
// //
createTimer() { createTimer() {
this.timerId = setInterval(() => { this.timerId = setInterval(() => {
this.getHomeWorkList() this.getHomeWorkList()

View File

@ -213,7 +213,6 @@ export default {
> .btn { > .btn {
position: relative; position: relative;
display: flex; display: flex;
margin-top: 30px;
> .upload { > .upload {
display: block; display: block;
width: 60px; width: 60px;
@ -223,6 +222,7 @@ export default {
left: 0; left: 0;
opacity: 0; opacity: 0;
} }
margin-top: 30px;
} }
} }
.personal-authentica { .personal-authentica {