Compare commits
10 Commits
79b9a0726a
...
6b9949dfae
Author | SHA1 | Date |
---|---|---|
朱浩 | 6b9949dfae | |
朱浩 | 56976c6642 | |
朱浩 | 27c7033522 | |
朱浩 | 4c66cc90c0 | |
lyc | c2b54714ac | |
lyc | cafea2d719 | |
yangws | d5afede36c | |
朱浩 | dfe28eb037 | |
朱浩 | 03e61c8440 | |
朱浩 | 0ccde18f00 |
|
@ -17,7 +17,7 @@ asarUnpack:
|
||||||
nsis:
|
nsis:
|
||||||
oneClick: false
|
oneClick: false
|
||||||
allowToChangeInstallationDirectory: true
|
allowToChangeInstallationDirectory: true
|
||||||
artifactName: ${name}-${version}-setup.${ext}
|
artifactName: ${name}-${version}-setup-lt.${ext}
|
||||||
shortcutName: ${productName}
|
shortcutName: ${productName}
|
||||||
uninstallDisplayName: ${productName}
|
uninstallDisplayName: ${productName}
|
||||||
createDesktopShortcut: always
|
createDesktopShortcut: always
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "aix-win",
|
"name": "aix-win",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "example.com",
|
"author": "example.com",
|
||||||
|
|
|
@ -114,6 +114,7 @@ const emitChangeBook = async () => {
|
||||||
*/
|
*/
|
||||||
let levelFirstId = null
|
let levelFirstId = null
|
||||||
let levelSecondId = null
|
let levelSecondId = null
|
||||||
|
let bookeId = curBook.data.id
|
||||||
if (curData.parentNode) {
|
if (curData.parentNode) {
|
||||||
levelFirstId = curData.parentNode.id
|
levelFirstId = curData.parentNode.id
|
||||||
levelSecondId = curData.id
|
levelSecondId = curData.id
|
||||||
|
@ -121,7 +122,7 @@ const emitChangeBook = async () => {
|
||||||
levelFirstId = curData.id
|
levelFirstId = curData.id
|
||||||
levelSecondId = ''
|
levelSecondId = ''
|
||||||
}
|
}
|
||||||
localStorage.setItem('unitId', JSON.stringify({ levelFirstId, levelSecondId}))
|
localStorage.setItem('unitId', JSON.stringify({ levelFirstId, levelSecondId, bookeId}))
|
||||||
emit('changeBook', data)
|
emit('changeBook', data)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -206,6 +207,7 @@ const handleNodeClick = (data, node) => {
|
||||||
*/
|
*/
|
||||||
let levelFirstId = null
|
let levelFirstId = null
|
||||||
let levelSecondId = null
|
let levelSecondId = null
|
||||||
|
let bookeId = curBook.data.id
|
||||||
if (nodeData.parentNode) {
|
if (nodeData.parentNode) {
|
||||||
levelFirstId = nodeData.parentNode.id
|
levelFirstId = nodeData.parentNode.id
|
||||||
levelSecondId = nodeData.id
|
levelSecondId = nodeData.id
|
||||||
|
@ -213,7 +215,7 @@ const handleNodeClick = (data, node) => {
|
||||||
levelFirstId = nodeData.id
|
levelFirstId = nodeData.id
|
||||||
levelSecondId = ''
|
levelSecondId = ''
|
||||||
}
|
}
|
||||||
localStorage.setItem('unitId', JSON.stringify({ levelFirstId, levelSecondId}))
|
localStorage.setItem('unitId', JSON.stringify({ levelFirstId, levelSecondId, bookeId}))
|
||||||
|
|
||||||
emit('nodeClick', curData)
|
emit('nodeClick', curData)
|
||||||
|
|
||||||
|
|
|
@ -102,8 +102,9 @@ const getTreeData = () => {
|
||||||
levelFirstId = curNode.id
|
levelFirstId = curNode.id
|
||||||
levelSecondId = ''
|
levelSecondId = ''
|
||||||
}
|
}
|
||||||
|
let bookeId = curBookId
|
||||||
// 头部 教材分析、作业设计:打开外部链接需要当前章节ID
|
// 头部 教材分析、作业设计:打开外部链接需要当前章节ID
|
||||||
localStorage.setItem('unitId', JSON.stringify({ levelFirstId, levelSecondId}))
|
localStorage.setItem('unitId', JSON.stringify({ levelFirstId, levelSecondId, bookeId}))
|
||||||
|
|
||||||
// const data = {
|
// const data = {
|
||||||
// textBook: {
|
// textBook: {
|
||||||
|
|
|
@ -168,10 +168,11 @@ const clickMenu = ({isOuter, path, disabled}) =>{
|
||||||
let fullPath = configObj.fullPath + path
|
let fullPath = configObj.fullPath + path
|
||||||
if(path == '/teaching/classtaskassign?titleName=作业布置&openDialog=newClassTask' || path == '/teaching/classtaskassign?titleName=作业布置'){
|
if(path == '/teaching/classtaskassign?titleName=作业布置&openDialog=newClassTask' || path == '/teaching/classtaskassign?titleName=作业布置'){
|
||||||
// 头部 教材分析打开外部链接需要当前章节ID
|
// 头部 教材分析打开外部链接需要当前章节ID
|
||||||
const { levelFirstId, levelSecondId } = JSON.parse(localStorage.getItem('unitId'))
|
const { levelFirstId, levelSecondId, bookeId } = JSON.parse(localStorage.getItem('unitId'))
|
||||||
|
|
||||||
let unitId = levelSecondId ? levelSecondId : levelFirstId
|
let unitId = levelSecondId ? levelSecondId : levelFirstId
|
||||||
fullPath = fullPath + `&unitId=${unitId}`
|
|
||||||
|
fullPath = fullPath + `&unitId=${unitId}&bookeId=${bookeId}`
|
||||||
|
|
||||||
console.log(fullPath)
|
console.log(fullPath)
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
:before-close="handleClose"
|
:before-close="handleClose"
|
||||||
>
|
>
|
||||||
<el-steps v-if="type==1" style="max-width: 100%;-webkit-app-region: no-drag;height:35px" :active="activeIndex" finish-status="success" simple>
|
<el-steps v-if="type==1" style="max-width: 100%;-webkit-app-region: no-drag;height:35px" :active="activeIndex" finish-status="success" simple>
|
||||||
<el-step title="1.基本信息" @click="activeIndex=1" />
|
<el-step title="1.基本信息" @click="activeIndex=1" style="cursor:pointer"/>
|
||||||
<el-step title="2.在校信息" />
|
<el-step title="2.在校信息" />
|
||||||
</el-steps>
|
</el-steps>
|
||||||
<el-form
|
<el-form
|
||||||
|
@ -40,9 +40,11 @@
|
||||||
<el-form-item label="所属地区" prop="address" v-if="activeIndex==2">
|
<el-form-item label="所属地区" prop="address" v-if="activeIndex==2">
|
||||||
<el-cascader
|
<el-cascader
|
||||||
style="width:100%"
|
style="width:100%"
|
||||||
|
popper-class="aix-regist-address"
|
||||||
v-model="ruleForm.address"
|
v-model="ruleForm.address"
|
||||||
:options="regionData"
|
:options="regionData"
|
||||||
@change="handleChange"
|
@change="handleChange"
|
||||||
|
:props="{checkStrictly: true}"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="学校" prop="school" v-if="activeIndex==2">
|
<el-form-item label="学校" prop="school" v-if="activeIndex==2">
|
||||||
|
@ -72,6 +74,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="activeIndex==2">
|
<el-form-item v-if="activeIndex==2">
|
||||||
<div class="centerDiv">
|
<div class="centerDiv">
|
||||||
|
<el-button type="default" @click="activeIndex=1">上一步</el-button>
|
||||||
<el-button type="primary" @click="submitForm(ruleFormRef)">立即注册</el-button>
|
<el-button type="primary" @click="submitForm(ruleFormRef)">立即注册</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -294,7 +297,6 @@ const nextStep = (formEl) => {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
getSubject()
|
getSubject()
|
||||||
console.log(res)
|
|
||||||
})
|
})
|
||||||
console.log('submit!')
|
console.log('submit!')
|
||||||
}
|
}
|
||||||
|
@ -308,7 +310,8 @@ const getSubject = async ()=>{
|
||||||
const rows= await listEvaluation({ itemkey: "subject", pageSize: 500 })
|
const rows= await listEvaluation({ itemkey: "subject", pageSize: 500 })
|
||||||
console.log(rows,'所有学科')
|
console.log(rows,'所有学科')
|
||||||
allSubjectList.value = rows.data
|
allSubjectList.value = rows.data
|
||||||
|
accessToDisciplines()
|
||||||
|
getClassmain()
|
||||||
}
|
}
|
||||||
|
|
||||||
const submitForm = async (formEl) => {
|
const submitForm = async (formEl) => {
|
||||||
|
@ -419,9 +422,15 @@ const sbmitImg=()=>{
|
||||||
const handleChange = (value) => {
|
const handleChange = (value) => {
|
||||||
console.log('选中的地址值:', value);
|
console.log('选中的地址值:', value);
|
||||||
};
|
};
|
||||||
const handleSchoolChange= async ()=>{
|
const handleSchoolChange= ()=>{
|
||||||
ruleForm.discipline=[];
|
ruleForm.discipline=[];
|
||||||
ruleForm.class=[];
|
ruleForm.class=[];
|
||||||
|
//获取学科班级
|
||||||
|
accessToDisciplines()
|
||||||
|
getClassmain()
|
||||||
|
}
|
||||||
|
// 获取学科
|
||||||
|
const accessToDisciplines = () => {
|
||||||
getDept({deptId:ruleForm.school[2]}).then(res =>{
|
getDept({deptId:ruleForm.school[2]}).then(res =>{
|
||||||
if(res.data.studying && res.data.studying.length){
|
if(res.data.studying && res.data.studying.length){
|
||||||
let studying = res.data.studying.split(',')
|
let studying = res.data.studying.split(',')
|
||||||
|
@ -444,11 +453,12 @@ const handleSchoolChange= async ()=>{
|
||||||
schoolSubject.value = []
|
schoolSubject.value = []
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
listClassmain( {entpid: ruleForm.school[2], pageSize: 500, status: 'open'}).then(res=>{
|
}
|
||||||
|
// 获取班级
|
||||||
|
const getClassmain = async ()=>{
|
||||||
|
console.log(ruleForm.school)
|
||||||
|
const res = await listClassmain( {entpid: ruleForm.school[2], pageSize: 500, status: 'open'})
|
||||||
gradeTree.value = groupByCondition(res.rows, item => item.agekey);
|
gradeTree.value = groupByCondition(res.rows, item => item.agekey);
|
||||||
console.log(gradeTree.value,'班级')
|
|
||||||
})
|
|
||||||
|
|
||||||
}
|
}
|
||||||
//将所有班级筛选成二级的数组
|
//将所有班级筛选成二级的数组
|
||||||
const groupByCondition = (arr, condition)=>{
|
const groupByCondition = (arr, condition)=>{
|
||||||
|
@ -484,7 +494,10 @@ const gradeName = (key) =>{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
|
//默认给到地区重庆
|
||||||
|
ruleForm.address = ['50']
|
||||||
|
//默认给到学校的值
|
||||||
|
ruleForm.school = [100,255,279]
|
||||||
})
|
})
|
||||||
defineExpose({
|
defineExpose({
|
||||||
OpenModel,
|
OpenModel,
|
||||||
|
@ -498,4 +511,17 @@ defineExpose({
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<style lang="scss">
|
||||||
|
.aix-regist-address{
|
||||||
|
.el-cascader-node{
|
||||||
|
position: relative!important;
|
||||||
|
.el-radio{
|
||||||
|
position: absolute!important;
|
||||||
|
width: 90%!important;
|
||||||
|
left:5px!important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -208,7 +208,8 @@ export default {
|
||||||
openFileWin(items) {
|
openFileWin(items) {
|
||||||
if (items.fileFlag === 'apt') {
|
if (items.fileFlag === 'apt') {
|
||||||
console.log(this.curNode);
|
console.log(this.curNode);
|
||||||
const path="/teaching/aptindex?id="+items.fileId + "&cataId=" + this.curNode.id;
|
let curBook = JSON.parse(localStorage.getItem('curBook'))
|
||||||
|
const path="/teaching/aptindex?id="+items.fileId + "&unitId=" + this.curNode.id + "&bookId=" + curBook.id;
|
||||||
let configObj = outLink().getBaseData()
|
let configObj = outLink().getBaseData()
|
||||||
let fullPath = configObj.fullPath + path
|
let fullPath = configObj.fullPath + path
|
||||||
fullPath = fullPath.replaceAll('//', '/')
|
fullPath = fullPath.replaceAll('//', '/')
|
||||||
|
|
Loading…
Reference in New Issue