+ :data="'全部项目/' + form.projectName">
管理项目
+ @click="$router.push('manage')">管理项目
@@ -137,6 +137,8 @@
diff --git a/src/pages/activity/manage/manage/index.vue b/src/pages/activity/manage/manage/index.vue
index ee66765..8d4b72c 100644
--- a/src/pages/activity/manage/manage/index.vue
+++ b/src/pages/activity/manage/manage/index.vue
@@ -28,11 +28,12 @@
diff --git a/src/pages/information/contentManage/index.vue b/src/pages/information/contentManage/index.vue
index 027ed8e..bcda3b1 100644
--- a/src/pages/information/contentManage/index.vue
+++ b/src/pages/information/contentManage/index.vue
@@ -52,6 +52,7 @@ export default {
}).then(res => {
this.menuList = res.columnTree
const storeId = this.$store.state.info.columnId
+ console.log("🚀 ~ file: index.vue ~ line 46 ~ getMenuData ~ storeId", storeId)
if (this.menuList.length) {
this.getId(this.menuList)
this.columnId = this.menuList[0].id
diff --git a/src/pages/match/add/index.vue b/src/pages/match/add/index.vue
index 6bfda41..657295f 100644
--- a/src/pages/match/add/index.vue
+++ b/src/pages/match/add/index.vue
@@ -118,7 +118,6 @@ import step2 from './step2'
import step3 from './step3'
import step4 from './step4'
import { Loading } from 'element-ui'
-import qs from 'qs'
export default {
name: "add",
data () {
@@ -290,8 +289,7 @@ export default {
}
},
backPage () {
- const { params } = this.$store.state.match
- this.$router.push(`/match?${qs.stringify(params.form)}&page=${params.page}`)
+ this.$router.push(`/match?page=${this.$store.state.match.page}`)
}
}
};
diff --git a/src/pages/match/list/index.vue b/src/pages/match/list/index.vue
index 5180033..5ac48c2 100644
--- a/src/pages/match/list/index.vue
+++ b/src/pages/match/list/index.vue
@@ -36,7 +36,7 @@
@@ -217,12 +217,15 @@
diff --git a/src/pages/match/manage/matchRank.vue b/src/pages/match/manage/matchRank.vue
index addc292..34e1d7f 100644
--- a/src/pages/match/manage/matchRank.vue
+++ b/src/pages/match/manage/matchRank.vue
@@ -4,7 +4,7 @@
class="m-b-20 head-card">
@@ -286,7 +286,7 @@ export default {
competitionType: +this.$route.query.competitionType,
rule: +this.$route.query.rule,
searchTimer: null,
- keyword: this.$route.query.keyword || '',
+ keyword: '',
teamCalculationMethods: [
{
id: 0,
@@ -307,7 +307,7 @@ export default {
active: '',
grades: [],
list: [],
- page: +this.$route.query.page || 1,
+ page: 1,
pageSize: 10,
total: 0,
type: 0,
@@ -354,13 +354,6 @@ export default {
keyword: function (val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
- this.$router.push({
- path: 'rank',
- query: {
- ...this.$route.query,
- keyword: val
- }
- })
this.getRank();
}, 500);
}
@@ -414,7 +407,7 @@ export default {
keyword: this.keyword
}).then(({ page, publishStatus, total }) => {
this.published = publishStatus
- this.list = page || []
+ this.list = page
this.total = total
this.getPublishTime()
this.loading = false
@@ -461,7 +454,8 @@ export default {
this.getRank()
},
initData () {
- this.handleCurrentChange(1)
+ this.page = 1
+ this.getData()
},
// tab回调
tabChange (i) {
@@ -557,13 +551,6 @@ export default {
this.multipleSelection = val;
},
handleCurrentChange (val) { // 切换分页
- this.$router.push({
- path: 'rank',
- query: {
- ...this.$route.query,
- page: val
- }
- })
this.page = val;
this.getData();
},
@@ -784,9 +771,6 @@ export default {
this.getRank()
this.importVisible = false
},
- back () {
- this.$router.push(this.$store.state.match.referrer)
- }
}
};
diff --git a/src/pages/match/manage/matchSignup.vue b/src/pages/match/manage/matchSignup.vue
index ba9dda0..77f37b3 100644
--- a/src/pages/match/manage/matchSignup.vue
+++ b/src/pages/match/manage/matchSignup.vue
@@ -16,7 +16,7 @@
+ @change="initData">
{
- this.$router.push({
- path: 'manage',
- query: {
- ...this.$route.query,
- keyword: val
- }
- })
this.initData();
}, 500);
}
@@ -503,13 +496,6 @@ export default {
this.multipleSelection = val;
},
handleCurrentChange (val) {
- this.$router.push({
- path: 'manage',
- query: {
- ...this.$route.query,
- page: val
- }
- })
this.page = val;
this.getData();
},
@@ -523,16 +509,6 @@ export default {
if (column.prop === 'teamName') this.teamOrder = column.order ? column.order === 'ascending' ? 2 : 1 : ''
this.getData()
},
- disableChange (val) {
- this.$router.push({
- path: 'manage',
- query: {
- ...this.$route.query,
- isDisable: val
- }
- })
- this.initData()
- },
// 自动分配
autoAllocation () {
diff --git a/src/pages/match/manage/notice.vue b/src/pages/match/manage/notice.vue
index 3ee0107..6d79de0 100644
--- a/src/pages/match/manage/notice.vue
+++ b/src/pages/match/manage/notice.vue
@@ -65,8 +65,7 @@
layout="total, prev, pager, next"
:total="totals"
@current-change="handleCurrentChange"
- :current-page="pageNo"
- :page-size="pageSize">
+ :current-page="pageNo">
@@ -77,6 +76,7 @@ import util from "@/libs/util";
import Setting from "@/setting";
export default {
+ name: "matchSignup",
data () {
return {
token: util.local.get(Setting.tokenKey),
@@ -84,8 +84,8 @@ export default {
keyword: "",
listData: [],
multipleSelection: [],
- pageNo: +this.$route.query.page || 1,
- pageSize: 1,
+ pageNo: 1,
+ pageSize: 10,
totals: 0
};
},
@@ -112,13 +112,6 @@ export default {
this.multipleSelection = val;
},
handleCurrentChange (val) {
- this.$router.push({
- path: 'manage',
- query: {
- ...this.$route.query,
- page: val
- }
- })
this.pageNo = val;
this.getData();
},
diff --git a/src/pages/product/list/index.vue b/src/pages/product/list/index.vue
index 5b08879..7e33333 100644
--- a/src/pages/product/list/index.vue
+++ b/src/pages/product/list/index.vue
@@ -194,8 +194,10 @@
diff --git a/src/pages/project/list/index.vue b/src/pages/project/list/index.vue
index 7842a5d..bac9c62 100644
--- a/src/pages/project/list/index.vue
+++ b/src/pages/project/list/index.vue
@@ -12,7 +12,7 @@
-
-
-
-
@@ -35,7 +35,7 @@
-
-
@@ -216,22 +216,22 @@ export default {
return {
showBack: Boolean(this.$route.query.show),
lc: [11, 12, 19],
- cid: [this.$route.query.mallId ? +this.$route.query.mallId : '', this.$route.query.cid ? +this.$route.query.cid : ''],
+ cid: [],
curs: [],
+ systemId: "",
systemList: [],
systemListAll: [],
curriculumId: '',
curriculumList: [],
- form: {
- projectName: this.$route.query.projectName || '',
+ queryData: {
platformId: 1, // 平台:职站:1 中台:3
founder: +this.$route.query.founder || 2, // 创建人角色(0:系统 1:老师 2:全部)
- state: this.$route.query.state ? +this.$route.query.state : '', // 状态(0:草稿箱 1:已发布)
- permissions: this.$route.query.permissions ? +this.$route.query.permissions : '', // 项目用途(0:练习 1:考核 2:竞赛)
- cid: this.$route.query.cid ? +this.$route.query.cid : '',
- mallId: this.$route.query.mallId ? +this.$route.query.mallId : '',
- systemId: this.$route.query.systemId ? +this.$route.query.systemId : '',
+ state: "", // 状态(0:草稿箱 1:已发布)
+ permissions: "", // 项目用途(0:练习 1:考核 2:竞赛)
+ cid: '',
+ mallId: ''
},
+ keyword: "",
status: "",
listData: [],
total: 0,
@@ -312,37 +312,46 @@ export default {
...mapState("project", [
"lastSystemId",
"assFields",
+ "queryDataStatus",
])
},
watch: {
- 'form.projectName': function (val) {
+ keyword: function (val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
}, 500);
},
+ queryData: {
+ handler: function (newVal) {
+ this.setQueryStatus({ ...newVal })
+ },
+ deep: true
+ }
},
mounted () {
- const { query } = this.$route
- if (query.page) {
- this.$store.commit('project/setParams', null)
- this.$router.push('list').catch(() => { })
- }
-
this.getSystemData()
this.getData()
+ if (this.queryDataStatus.platformId) {
+ this.queryData = this.queryDataStatus
+ }
},
methods: {
...mapActions("project", [
"setSystemId"
]),
+ ...mapMutations({
+ setQueryStatus: "project/SET_QUERYDATASTATUS"
+ }),
getData () {
- this.setSystemId(this.form.systemId);
+ this.setSystemId(this.systemId);
if (this.isFirst) this.page = +this.$route.query.page || 1
let data = {
- ...this.form,
+ ...this.queryData,
+ projectName: this.keyword,
pageNum: this.page,
pageSize: this.pageSize,
+ systemId: this.systemId,
};
this.$post(this.api.queryProjectManage, data).then(res => {
this.isFirst = false
@@ -362,7 +371,7 @@ export default {
getschoolCourse () {
this.$get(this.api.getSchoolEffectiveCourse).then(({ data }) => {
this.curriculumList = data
- const { mallId } = this.form
+ const { mallId } = this.queryData
if (data.length) {
this.cid = [mallId || data[0].mallId]
const all = this.systemListAll
@@ -398,24 +407,22 @@ export default {
},
handleCurrentChange (val) { // 切换页码
this.page = val;
+ // this.$router.push({
+ // path: '/project/list',
+ // query: {
+ // ...this.$route.query,
+ // page: val
+ // }
+ // })
this.getData();
},
- // 缓存参数及分页
- setCache () {
- this.$store.commit('project/setParams', {
- form: this.form,
- page: this.page,
- })
- },
add () { // 新增项目
- this.setCache()
- this.setSystemId(this.form.systemId);
- this.$router.push(`/project/add?founder=${this.form.founder}`);
+ this.setSystemId(this.systemId);
+ this.$router.push(`/project/add?founder=${this.queryData.founder}`);
},
edit (row, show) { // 编辑
- this.setCache()
this.setSystemId(row.systemId);
- this.$router.push(`/project/add?projectId=${row.projectId}&founder=${this.form.founder}${show ? `&show=1` : ''}`);
+ this.$router.push(`/project/add?projectId=${row.projectId}&founder=${this.queryData.founder}${show ? `&show=1` : ''}`);
},
handleSelectionChange (val) { // 处理多选
this.multipleSelection = val;
@@ -435,7 +442,7 @@ export default {
this.$confirm("确定要删除吗?", "提示", {
type: "warning"
}).then(() => {
- this.$post(`${this.api.deleteProjectManage}?projectIds=${ids}&platformId=${this.form.platformId}`).then(res => {
+ this.$post(`${this.api.deleteProjectManage}?projectIds=${ids}&platformId=${this.queryData.platformId}`).then(res => {
util.successMsg("删除成功");
this.$refs.table.clearSelection()
this.getData();
@@ -456,7 +463,7 @@ export default {
},
// 项目禁用
switchOff (row) {
- this.$get(`${this.api.updateIsOpen}?isOpen=${row.ccupationlabOpen}&projectId=${row.projectId}&platformId=${this.form.platformId}`).then(res => {
+ this.$get(`${this.api.updateIsOpen}?isOpen=${row.ccupationlabOpen}&projectId=${row.projectId}&platformId=${this.queryData.platformId}`).then(res => {
util.successMsg("更新启用状态成功");
this.getData();
}).catch(err => {
@@ -470,9 +477,9 @@ export default {
// 如果选择的是课程,则默认选中下面第一个系统
this.cid = [mallId, this.curs.find(e => e.id === mallId).children[0].id]
}
- this.form.mallId = mallId
- this.form.cid = this.curs.find(e => e.id === mallId).cid
- this.form.systemId = this.cid[1]
+ this.queryData.mallId = mallId
+ this.queryData.cid = this.curs.find(e => e.id === mallId).cid
+ this.systemId = this.cid[1]
this.initData()
},
copyData (projectId) { // 复制,根据项目id查询详情
@@ -487,10 +494,10 @@ export default {
}
})
this.copyCurs = curs
- this.copyMallId = [this.form.mallId, this.form.systemId]
+ this.copyMallId = [this.queryData.mallId, this.systemId]
this.copyForm = {
projectName: res.projectManage.projectName,
- mallId: this.form.mallId
+ mallId: this.queryData.mallId
}
this.curRow = {
projectManage: JSON.parse(JSON.stringify(res.projectManage)),
diff --git a/src/pages/station/list/index.vue b/src/pages/station/list/index.vue
index 87dc58c..add214a 100644
--- a/src/pages/station/list/index.vue
+++ b/src/pages/station/list/index.vue
@@ -63,7 +63,7 @@ export default {
data () {
return {
isSq: Setting.isSq,
- keyword: this.$route.query.keyword || '',
+ keyword: "",
active: 0,
tabs: [
{
@@ -92,10 +92,12 @@ export default {
}).catch(err => { }) :
this.$get(this.api.schoolCourse).then(res => {
this.curriculumList = res.data;
- }).catch(err => { });
+ }).catch(err => {
+ console.log(err);
+ });
},
goPreview (item) {
- this.$router.push(`/station/preview?courseId=${item.cid}&curriculumName=${item.goodsName}&mallId=${item.mallId || ''}&keyword=${this.keyword}`);
+ this.$router.push(`/station/preview?courseId=${item.cid}&curriculumName=${item.goodsName}&mallId=${item.mallId || ''}`);
},
// tab切换
tabChange (item) {
diff --git a/src/pages/station/preview/index.vue b/src/pages/station/preview/index.vue
index cce8abe..497e00e 100644
--- a/src/pages/station/preview/index.vue
+++ b/src/pages/station/preview/index.vue
@@ -562,7 +562,7 @@ export default {
goBack () {
this.fromAdmin ?
this.$router.back() :
- this.$router.push(`/station?keyword=${this.$route.query.keyword || ''}`)
+ this.$router.push('/station')
},
init () {
this.insertScript();
diff --git a/src/setting.js b/src/setting.js
index fade122..9f67ee8 100644
--- a/src/setting.js
+++ b/src/setting.js
@@ -30,7 +30,7 @@ if (isPro) {
sandPath = `http://${location.hostname}:9520`
uploadURL = `http://121.37.12.51/`
host = "http://121.37.12.51/"; // 中台测试服
- host = 'https://www.occupationlab.com/' // 正式服
+ // host = 'https://www.occupationlab.com/' // 正式服
host = "http://192.168.31.51:9000/";
host = localStorage.getItem('localIp') == 1 ? 'http://192.168.31.51:9000/' : 'http://192.168.31.217:9000/'
} else if (isSq) {
diff --git a/src/store/modules/achievement.js b/src/store/modules/achievement.js
index 0907470..b0c309d 100644
--- a/src/store/modules/achievement.js
+++ b/src/store/modules/achievement.js
@@ -1,5 +1,5 @@
/**
- * 成绩相关
+ * 赛事相关
* */
export default {
namespaced: true,
diff --git a/src/store/modules/activity.js b/src/store/modules/activity.js
index 834c429..80d87ff 100644
--- a/src/store/modules/activity.js
+++ b/src/store/modules/activity.js
@@ -4,16 +4,12 @@
export default {
namespaced: true,
state: {
- params: null,
- referrer: '',
+ page: 1,
cache: null
},
mutations: {
- setParams: (state, val) => {
- state.params = val
- },
- setReferrer: (state, val) => {
- state.referrer = val
+ setPage: (state, page) => {
+ state.page = page
},
setCache: (state, cache) => {
state.cache = cache
diff --git a/src/store/modules/assessment.js b/src/store/modules/assessment.js
deleted file mode 100644
index cf9a70b..0000000
--- a/src/store/modules/assessment.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
- * 考核相关
- * */
-export default {
- namespaced: true,
- state: {
- params: null
- },
- mutations: {
- setParams: (state, val) => {
- state.params = val
- }
- },
- actions: {
-
- }
-};
\ No newline at end of file
diff --git a/src/store/modules/expSystem.js b/src/store/modules/expSystem.js
deleted file mode 100644
index 834c429..0000000
--- a/src/store/modules/expSystem.js
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * 赛事相关
- * */
-export default {
- namespaced: true,
- state: {
- params: null,
- referrer: '',
- cache: null
- },
- mutations: {
- setParams: (state, val) => {
- state.params = val
- },
- setReferrer: (state, val) => {
- state.referrer = val
- },
- setCache: (state, cache) => {
- state.cache = cache
- }
- },
- actions: {
-
- }
-};
\ No newline at end of file
diff --git a/src/store/modules/match.js b/src/store/modules/match.js
index b216890..80d87ff 100644
--- a/src/store/modules/match.js
+++ b/src/store/modules/match.js
@@ -4,16 +4,12 @@
export default {
namespaced: true,
state: {
- params: null,
- cache: null,
- referrer: '',
+ page: 1,
+ cache: null
},
mutations: {
- setParams: (state, val) => {
- state.params = val
- },
- setReferrer: (state, val) => {
- state.referrer = val
+ setPage: (state, page) => {
+ state.page = page
},
setCache: (state, cache) => {
state.cache = cache
diff --git a/src/store/modules/product.js b/src/store/modules/product.js
deleted file mode 100644
index 85ad0a2..0000000
--- a/src/store/modules/product.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
- * 产品相关
- * */
-export default {
- namespaced: true,
- state: {
- params: null
- },
- mutations: {
- setParams: (state, val) => {
- state.params = val
- }
- },
- actions: {
-
- }
-};
\ No newline at end of file
diff --git a/src/store/modules/project.js b/src/store/modules/project.js
index 5ec433e..b3d7bd6 100644
--- a/src/store/modules/project.js
+++ b/src/store/modules/project.js
@@ -4,16 +4,12 @@
export default {
namespaced: true,
state: {
- params: null,
lastSystemId: "",
projectFields: {},
assFields: {},
- queryDataStatus: null
+ queryDataStatus: {}
},
mutations: {
- setParams: (state, val) => {
- state.params = val
- },
SET_SYSTEM_ID: (state, systemId) => {
state.lastSystemId = systemId;
},
@@ -23,6 +19,9 @@ export default {
SET_ASS: (state, assFields) => {
state.assFields = assFields;
},
+ SET_QUERYDATASTATUS: (state, newStatus) => {
+ state.queryDataStatus = newStatus
+ }
},
actions: {
setSystemId({ state, commit }, systemId) {