Compare commits
No commits in common. "219e4abdc04b24f714e2b5c7bfcbdcebcb0d7470" and "ea4afb409f54d8f6c4cd9eee3a69a4da7209a705" have entirely different histories.
219e4abdc0
...
ea4afb409f
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "aix-win",
|
"name": "aix-win",
|
||||||
"version": "1.1.0",
|
"version": "1.0.7",
|
||||||
"description": "An Electron application with Vue",
|
"description": "An Electron application with Vue",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "example.com",
|
"author": "example.com",
|
||||||
|
|
|
@ -159,11 +159,11 @@ export function deleteSmartReserv(id) {
|
||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
export function startClass(id, ex3) {
|
export function startClass(id) {
|
||||||
return request({
|
return request({
|
||||||
url: '/smarttalk/classReserv/startClass',
|
url: '/smarttalk/classReserv/startClass',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: {id, ex3}
|
params: {id}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
export function endClass(id) {
|
export function endClass(id) {
|
||||||
|
|
|
@ -594,8 +594,9 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 上课-工具类悬浮
|
// 上课-工具类悬浮
|
||||||
async openLesson() {
|
openLesson() {
|
||||||
await startClass(this.curClassReserv.id)
|
const toolStore = useToolState()
|
||||||
|
startClass(this.curClassReserv.id)
|
||||||
createWindow('tool-sphere', {
|
createWindow('tool-sphere', {
|
||||||
url:
|
url:
|
||||||
'/tool/sphere?entpcourseid=' +
|
'/tool/sphere?entpcourseid=' +
|
||||||
|
|
Loading…
Reference in New Issue