Merge remote-tracking branch 'remotes/origin/test'
This commit is contained in:
commit
72b4fc5f25
49
.eslintrc.js
49
.eslintrc.js
@ -25,31 +25,31 @@ module.exports = {
|
|||||||
"vue/no-v-html": "off",
|
"vue/no-v-html": "off",
|
||||||
'accessor-pairs': 2,
|
'accessor-pairs': 2,
|
||||||
"arrow-spacing": 0,//=>的前/后括号
|
"arrow-spacing": 0,//=>的前/后括号
|
||||||
'block-spacing': [2, 'always'],
|
'block-spacing': [2, 'always'], // 禁止或强制在代码块中开括号前和闭括号后有空格 { return 11 }
|
||||||
'brace-style': [2, '1tbs', {
|
'brace-style': [2, '1tbs', { // 强制在代码块中使用一致的大括号风格
|
||||||
'allowSingleLine': true
|
'allowSingleLine': true
|
||||||
}],
|
}],
|
||||||
'camelcase': [0, {
|
'camelcase': [0, { // 强制使用驼峰拼写法命名规定
|
||||||
'properties': 'always'
|
'properties': 'always'
|
||||||
}],
|
}],
|
||||||
'comma-dangle': [2, 'never'],
|
'comma-dangle': [2, 'never'], // 要求或禁止末尾逗号
|
||||||
'comma-spacing': [2, {
|
'comma-spacing': [2, { // 强制在逗号前后使用一致的空格
|
||||||
'before': false,
|
'before': false,
|
||||||
'after': true
|
'after': true
|
||||||
}],
|
}],
|
||||||
'comma-style': [2, 'last'],
|
'comma-style': [2, 'last'], // 强制在逗号前后使用一致的空格
|
||||||
'constructor-super': 2,
|
'constructor-super': 2, // 要求在构造函数中有super()调用
|
||||||
'curly': [2, 'multi-line'],
|
'curly': [2, 'multi-line'], // 强制所有控制语句使用一致的括号风格
|
||||||
'dot-location': [2, 'property'],
|
'dot-location': [2, 'property'], // 强制在点号之前和之后一致的换行
|
||||||
'eol-last': 2,
|
'eol-last': 2, // 禁止文件末尾存在空行禁止文件末尾存在空行
|
||||||
'generator-star-spacing': [2, {
|
'generator-star-spacing': [2, {
|
||||||
'before': true,
|
'before': true,
|
||||||
'after': true
|
'after': true
|
||||||
}],
|
}],
|
||||||
'handle-callback-err': [2, '^(err|error)$'],
|
'handle-callback-err': [2, '^(err|error)$'],
|
||||||
'indent': ["error", "tab"],
|
'indent': [2, 4], // 强制使用一致的缩进
|
||||||
'jsx-quotes': [2, 'prefer-single'],
|
'jsx-quotes': [2, 'prefer-single'], // 强制在JSX属性中一致地使用双引号或单引号
|
||||||
'key-spacing': [2, {
|
'key-spacing': [0, { // 强制要求在对象字面量的属性中键和值之间使用一致的间距
|
||||||
'beforeColon': false,
|
'beforeColon': false,
|
||||||
'afterColon': true
|
'afterColon': true
|
||||||
}],
|
}],
|
||||||
@ -58,8 +58,8 @@ module.exports = {
|
|||||||
'after': true
|
'after': true
|
||||||
}],
|
}],
|
||||||
"new-cap": 2,//函数名首行大写必须使用new方式调用,首行小写必须用不带new方式调用
|
"new-cap": 2,//函数名首行大写必须使用new方式调用,首行小写必须用不带new方式调用
|
||||||
'new-parens': 2,
|
'new-parens': 2, // 要求构造无参构造函数时有圆括号
|
||||||
'no-array-constructor': 2,
|
'no-array-constructor': 2, // 禁用Array构造函数
|
||||||
'no-caller': 2,
|
'no-caller': 2,
|
||||||
'no-console': 'off',
|
'no-console': 'off',
|
||||||
'no-class-assign': 2,
|
'no-class-assign': 2,
|
||||||
@ -96,7 +96,8 @@ module.exports = {
|
|||||||
"no-mixed-spaces-and-tabs": [2, false],//禁止混用tab和空格
|
"no-mixed-spaces-and-tabs": [2, false],//禁止混用tab和空格
|
||||||
"no-multi-spaces": 1,// 不能用多余的空格
|
"no-multi-spaces": 1,// 不能用多余的空格
|
||||||
'no-multi-str': 2,
|
'no-multi-str': 2,
|
||||||
'no-multiple-empty-lines': [2, {
|
'no-multiple-empty-lines': [2, { // 禁止出现多行空行
|
||||||
|
// 最大连续空行数
|
||||||
'max': 1
|
'max': 1
|
||||||
}],
|
}],
|
||||||
'no-native-reassign': 2,
|
'no-native-reassign': 2,
|
||||||
@ -121,7 +122,7 @@ module.exports = {
|
|||||||
'no-sparse-arrays': 2,
|
'no-sparse-arrays': 2,
|
||||||
'no-this-before-super': 2,
|
'no-this-before-super': 2,
|
||||||
'no-throw-literal': 2,
|
'no-throw-literal': 2,
|
||||||
"no-trailing-spaces": 1,//一行结束后面不要有空格
|
"no-trailing-spaces": 1,// 禁止行尾空格
|
||||||
'no-undef': 2,
|
'no-undef': 2,
|
||||||
'no-undef-init': 2,
|
'no-undef-init': 2,
|
||||||
'no-unexpected-multiline': 2,
|
'no-unexpected-multiline': 2,
|
||||||
@ -139,7 +140,7 @@ module.exports = {
|
|||||||
'no-useless-computed-key': 2,
|
'no-useless-computed-key': 2,
|
||||||
'no-useless-constructor': 2,
|
'no-useless-constructor': 2,
|
||||||
'no-useless-escape': 0,
|
'no-useless-escape': 0,
|
||||||
'no-whitespace-before-property': 2,
|
'no-whitespace-before-property': 2, // 禁止属性前有空白
|
||||||
'no-with': 2,
|
'no-with': 2,
|
||||||
'one-var': [2, {
|
'one-var': [2, {
|
||||||
'initialized': 'never'
|
'initialized': 'never'
|
||||||
@ -156,15 +157,15 @@ module.exports = {
|
|||||||
'allowTemplateLiterals': true
|
'allowTemplateLiterals': true
|
||||||
}],
|
}],
|
||||||
'semi': [2, 'always'], // 语句强制分号结尾
|
'semi': [2, 'always'], // 语句强制分号结尾
|
||||||
'semi-spacing': [2, {
|
'semi-spacing': [2, { // 强制分号之前和之后使用一致的空格
|
||||||
'before': false,
|
'before': false,
|
||||||
'after': true
|
'after': true
|
||||||
}],
|
}],
|
||||||
"strict": 2,//使用严格模式
|
"strict": 2,//使用严格模式
|
||||||
'space-before-blocks': [2, 'always'], //不以新行开始的块{前面要不要有空格
|
'space-before-blocks': [2, 'always'], // 不以新行开始的块{前面要不要有空格 强制在块之前使用一致的空格
|
||||||
"space-before-function-paren": [0, "always"],// 函数定义时括号前面要不要有空格
|
"space-before-function-paren": [0, "always"],// 函数定义时括号前面要不要有空格
|
||||||
"space-in-parens": [0, "never"],// 小括号里面要不要有空格
|
"space-in-parens": [0, "never"],// 小括号里面要不要有空格
|
||||||
"space-infix-ops": 0,//中缀操作符周围要不要有空格
|
"space-infix-ops": 2,// 要求操作符周围有空格
|
||||||
'space-unary-ops': [2, {
|
'space-unary-ops': [2, {
|
||||||
'words': true,
|
'words': true,
|
||||||
'nonwords': false
|
'nonwords': false
|
||||||
@ -172,7 +173,7 @@ module.exports = {
|
|||||||
'spaced-comment': [2, 'always', {
|
'spaced-comment': [2, 'always', {
|
||||||
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
|
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
|
||||||
}], //注释风格要不要有空格什么的
|
}], //注释风格要不要有空格什么的
|
||||||
'template-curly-spacing': [2, 'never'],
|
// 'template-curly-spacing': [2, 'never'],
|
||||||
'use-isnan': 2, //禁止比较时使用NaN,只能用isNaN()
|
'use-isnan': 2, //禁止比较时使用NaN,只能用isNaN()
|
||||||
'valid-typeof': 2, //必须使用合法的typeof的值
|
'valid-typeof': 2, //必须使用合法的typeof的值
|
||||||
"wrap-iife": [2, "inside"],//立即执行函数表达式的小括号风格
|
"wrap-iife": [2, "inside"],//立即执行函数表达式的小括号风格
|
||||||
@ -180,7 +181,7 @@ module.exports = {
|
|||||||
'yoda': [2, 'never'], //禁止尤达条件
|
'yoda': [2, 'never'], //禁止尤达条件
|
||||||
'prefer-const': 2,
|
'prefer-const': 2,
|
||||||
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
||||||
"object-curly-spacing": [0, "never"],//大括号内是否允许不必要的空格
|
"object-curly-spacing": [0, "never"], // 强制在大括号中使用一致的空格
|
||||||
"array-bracket-spacing": [2, "never"], //是否允许非空数组里面有多余的空格
|
"array-bracket-spacing": [2, "never"], // 禁止或强制在括号内使用空格
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,3 +65,12 @@ export function getCommodityProductLesson(prdCode) {
|
|||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 更新发布课程信息*/
|
||||||
|
export function updatePublishLesson(data) {
|
||||||
|
return request({
|
||||||
|
url: `/api/lesson/${data.id}/nameAndRemarks`,
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -115,7 +115,7 @@ export function updatePublishMapName(data) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 修改发布地图名称*/
|
/** 获取发布地图详情*/
|
||||||
export function getPublishMapDetailList(params, code) {
|
export function getPublishMapDetailList(params, code) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${code}/versions`,
|
url: `/api/map/${code}/versions`,
|
||||||
@ -132,7 +132,7 @@ export function hasDoorStationList(mapId) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 修改发布地图名称*/
|
/** 修改发布地图城市*/
|
||||||
export function updatePublishMapCity(data) {
|
export function updatePublishMapCity(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${data.mapId}/city`,
|
url: `/api/map/${data.mapId}/city`,
|
||||||
@ -140,3 +140,20 @@ export function updatePublishMapCity(data) {
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 设置归属项目 */
|
||||||
|
export function setMapProject(data) {
|
||||||
|
return request({
|
||||||
|
url: `/api/map/${data.id}/project`,
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 根据定制项目编号查询地图列表 */
|
||||||
|
export function getMapListByProjectCode(projectCode) {
|
||||||
|
return request({
|
||||||
|
url: `/api/map/project/${projectCode}/list`,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -26,9 +26,9 @@ export function getScriptById(id) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
/** 通过ID查询未发布剧本的详细信息 */
|
/** 通过ID查询未发布剧本的详细信息 */
|
||||||
export function getDraftScriptById(id) {
|
export function getDraftScriptByGroup(group) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/script/draft/${id}/detail`,
|
url: `/api/simulation/${group}/script/loadedScript`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -425,3 +425,12 @@ export function handlerIbpEvent(group, data) {
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 预览脚本仿真*/
|
||||||
|
export function scriptDraftRecordNotify(scriptId) {
|
||||||
|
return request({
|
||||||
|
url: `/api/simulation/scriptDraft/${scriptId}`,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -85,3 +85,11 @@ export function deleteSubSystem(id) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getSubSystemByProjectCode(projectCode) {
|
||||||
|
/** 根据项目编号查询地图子系统 */
|
||||||
|
return request({
|
||||||
|
url: `/api/mapSystem/project/${projectCode}`,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
<el-input
|
<el-input
|
||||||
v-model="formModel[item.prop]"
|
v-model="formModel[item.prop]"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
|
:autosize='item.isAutoSize||false'
|
||||||
:placeholder="item.placeholder"
|
:placeholder="item.placeholder"
|
||||||
:disabled="item.disabled"
|
:disabled="item.disabled"
|
||||||
:style="{width: item.tooltip ? 'calc(100% - 50px)' : '100%'}"
|
:style="{width: item.tooltip ? 'calc(100% - 50px)' : '100%'}"
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
style="padding-top: 18px;"
|
style="padding-top: 18px;"
|
||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="18">
|
<el-col :span="leftSpan">
|
||||||
<template v-for="(colNum, rIndex) in rowColumnList">
|
<template v-for="(colNum, rIndex) in rowColumnList">
|
||||||
<el-row :key="rIndex" :gutter="20">
|
<el-row :key="rIndex" :gutter="20">
|
||||||
<template v-for="(field, name, index) in queryObject">
|
<template v-for="(field, name, index) in queryObject">
|
||||||
@ -127,8 +127,8 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</template>
|
</template>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="5" :offset="1">
|
<el-col :span="24-leftSpan-1" :offset="1">
|
||||||
<el-button type="primary" size="small" :disabled="!canQuery" @click="query">{{ $t('global.query') }}</el-button>
|
<el-button style="margin-right: 10px" type="primary" size="small" :disabled="!canQuery" @click="query">{{ $t('global.query') }}</el-button>
|
||||||
<el-button v-if="queryForm.reset" type="primary" size="small" :disabled="!canQuery" @click="doClean">{{ $t('global.reset') }}</el-button>
|
<el-button v-if="queryForm.reset" type="primary" size="small" :disabled="!canQuery" @click="doClean">{{ $t('global.reset') }}</el-button>
|
||||||
<el-button v-if="exportFlag" type="primary" size="small" :disabled="!canQuery" @click="doExport">{{ $t('global.export') }}</el-button>
|
<el-button v-if="exportFlag" type="primary" size="small" :disabled="!canQuery" @click="doExport">{{ $t('global.export') }}</el-button>
|
||||||
<template v-for="(button, index) in queryList.actions">
|
<template v-for="(button, index) in queryList.actions">
|
||||||
@ -138,8 +138,8 @@
|
|||||||
:type="button.type ? button.type: 'primary'"
|
:type="button.type ? button.type: 'primary'"
|
||||||
size="small"
|
size="small"
|
||||||
:style="button.style"
|
:style="button.style"
|
||||||
@click="button.handler"
|
|
||||||
class="button_style"
|
class="button_style"
|
||||||
|
@click="button.handler"
|
||||||
>{{ button.text }}</el-button>
|
>{{ button.text }}</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-col>
|
</el-col>
|
||||||
@ -173,6 +173,12 @@ export default {
|
|||||||
canQuery: {
|
canQuery: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
required: true
|
required: true
|
||||||
|
},
|
||||||
|
leftSpan: {
|
||||||
|
type: Number,
|
||||||
|
default() {
|
||||||
|
return 18;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@ -481,7 +487,9 @@ export default {
|
|||||||
max-width: 240px;
|
max-width: 240px;
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
}
|
}
|
||||||
.button_style {
|
.el-button+.el-button {
|
||||||
|
margin-right:10px;
|
||||||
|
margin-left: 0;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="query-list-page" :style="{height: queryList.height ? 'auto' : listPageHeight}">
|
<!-- :style="{height: queryList.height ? 'auto' : listPageHeight}" -->
|
||||||
|
<div class="query-list-page">
|
||||||
<query-form
|
<query-form
|
||||||
v-show="!(queryForm.show === false)"
|
v-show="!(queryForm.show === false)"
|
||||||
ref="queryForm"
|
ref="queryForm"
|
||||||
:query-form="queryForm"
|
:query-form="queryForm"
|
||||||
|
:left-span="queryForm.leftSpan"
|
||||||
:query-list="queryList"
|
:query-list="queryList"
|
||||||
:before-query="queryForm.beforeQuery"
|
:before-query="queryForm.beforeQuery"
|
||||||
:can-query="canQuery"
|
:can-query="canQuery"
|
||||||
|
@ -21,6 +21,10 @@ export default {
|
|||||||
passedScriptFailed: 'Passed script failed',
|
passedScriptFailed: 'Passed script failed',
|
||||||
rejectScriptSuccess: 'Reject script success',
|
rejectScriptSuccess: 'Reject script success',
|
||||||
rejectScriptFailed: 'Reject script failed',
|
rejectScriptFailed: 'Reject script failed',
|
||||||
|
passedRunPlanSuccess: 'Passed run plan success',
|
||||||
|
passedRunPlanFailed: 'Passed run plan failed',
|
||||||
|
rejectRunPlanSuccess: 'reject run plan success',
|
||||||
|
rejectRunPlanFailed: 'reject run plan failed',
|
||||||
runPlanName: 'Run Plan Name',
|
runPlanName: 'Run Plan Name',
|
||||||
passedRunPlan: 'Passed Run Plan',
|
passedRunPlan: 'Passed Run Plan',
|
||||||
rejectRunPlan: 'Reject Run Plan',
|
rejectRunPlan: 'Reject Run Plan',
|
||||||
|
@ -5,6 +5,7 @@ export default {
|
|||||||
lessonName: 'Lesson Name',
|
lessonName: 'Lesson Name',
|
||||||
updateMapName: 'Update Map Name',
|
updateMapName: 'Update Map Name',
|
||||||
updateCityName: 'Update City',
|
updateCityName: 'Update City',
|
||||||
|
updateLesson: 'Modify Lesson',
|
||||||
updateTime: 'Update Time',
|
updateTime: 'Update Time',
|
||||||
operationSuccess: 'Operate successfully',
|
operationSuccess: 'Operate successfully',
|
||||||
deleteSuccess: 'Delete successfully',
|
deleteSuccess: 'Delete successfully',
|
||||||
|
@ -232,6 +232,7 @@ export default {
|
|||||||
enterCourseName: 'Please enter the course name',
|
enterCourseName: 'Please enter the course name',
|
||||||
selectAssociatedProduct: 'Please select the associated product',
|
selectAssociatedProduct: 'Please select the associated product',
|
||||||
enterCourseDescription: 'Please enter the course description',
|
enterCourseDescription: 'Please enter the course description',
|
||||||
|
pleaseLessonIntroduction: 'Please enter the course description',
|
||||||
courseIdIsEmpty: 'Course Id is empty',
|
courseIdIsEmpty: 'Course Id is empty',
|
||||||
selectCity: 'Please select city',
|
selectCity: 'Please select city',
|
||||||
enterStandardTime: 'Please enter standard time',
|
enterStandardTime: 'Please enter standard time',
|
||||||
|
@ -205,5 +205,6 @@ export default {
|
|||||||
publishTheCourseHint: 'This operation will publish the course. Are you sure?',
|
publishTheCourseHint: 'This operation will publish the course. Are you sure?',
|
||||||
rejectedCourseReleaseApplicationSuccessful: 'Rejected course release application successful!',
|
rejectedCourseReleaseApplicationSuccessful: 'Rejected course release application successful!',
|
||||||
rejectedCourseReleaseApplicationFailed: 'Rejected course release application failed!',
|
rejectedCourseReleaseApplicationFailed: 'Rejected course release application failed!',
|
||||||
duplicatePlanFailedTips: 'The interval needs to be more than 30 seconds or the times is more than 1'
|
duplicatePlanFailedTips: 'The interval needs to be more than 30 seconds or the times is more than 1',
|
||||||
|
createSwitchPortion: 'The relevant turnout is not formed'
|
||||||
};
|
};
|
||||||
|
@ -21,6 +21,12 @@ export default {
|
|||||||
passedScriptFailed: '通过剧本失败',
|
passedScriptFailed: '通过剧本失败',
|
||||||
rejectScriptSuccess: '驳回剧本成功',
|
rejectScriptSuccess: '驳回剧本成功',
|
||||||
rejectScriptFailed: '驳回剧本失败',
|
rejectScriptFailed: '驳回剧本失败',
|
||||||
|
|
||||||
|
passedRunPlanSuccess: '通过剧本成功',
|
||||||
|
passedRunPlanFailed: '通过剧本失败',
|
||||||
|
rejectRunPlanSuccess: '驳回剧本成功',
|
||||||
|
rejectRunPlanFailed: '驳回剧本失败',
|
||||||
|
|
||||||
runPlanName: '运行图名称',
|
runPlanName: '运行图名称',
|
||||||
passedRunPlan: '通过运行图',
|
passedRunPlan: '通过运行图',
|
||||||
rejectRunPlan: '驳回运行图',
|
rejectRunPlan: '驳回运行图',
|
||||||
|
@ -6,6 +6,7 @@ export default {
|
|||||||
updateMapName: '更新地图名称',
|
updateMapName: '更新地图名称',
|
||||||
updateCityName: '更新城市',
|
updateCityName: '更新城市',
|
||||||
updateTime: '更新时间',
|
updateTime: '更新时间',
|
||||||
|
updateLesson: '修改课程',
|
||||||
operationSuccess: '操作成功',
|
operationSuccess: '操作成功',
|
||||||
deleteSuccess: '删除成功',
|
deleteSuccess: '删除成功',
|
||||||
wellDelType: '此操作将删除该类型, 是否继续?',
|
wellDelType: '此操作将删除该类型, 是否继续?',
|
||||||
|
@ -242,6 +242,7 @@ export default {
|
|||||||
enterCourseName: '请输入课程名称',
|
enterCourseName: '请输入课程名称',
|
||||||
selectAssociatedProduct: '请选择关联产品',
|
selectAssociatedProduct: '请选择关联产品',
|
||||||
enterCourseDescription: '请输入课程说明',
|
enterCourseDescription: '请输入课程说明',
|
||||||
|
pleaseLessonIntroduction: '请输入课程简介',
|
||||||
courseIdIsEmpty: '课程Id为空',
|
courseIdIsEmpty: '课程Id为空',
|
||||||
selectCity: '请选择城市',
|
selectCity: '请选择城市',
|
||||||
enterStandardTime: '请输入标准用时',
|
enterStandardTime: '请输入标准用时',
|
||||||
|
@ -205,5 +205,6 @@ export default {
|
|||||||
publishTheCourseHint: '此操作将发布课程,是否确定?',
|
publishTheCourseHint: '此操作将发布课程,是否确定?',
|
||||||
rejectedCourseReleaseApplicationSuccessful: '驳回课程发布申请成功!',
|
rejectedCourseReleaseApplicationSuccessful: '驳回课程发布申请成功!',
|
||||||
rejectedCourseReleaseApplicationFailed: '驳回课程发布申请失败!',
|
rejectedCourseReleaseApplicationFailed: '驳回课程发布申请失败!',
|
||||||
duplicatePlanFailedTips: '间隔时间需要大于30秒或次数大于1'
|
duplicatePlanFailedTips: '间隔时间需要大于30秒或次数大于1',
|
||||||
|
createSwitchPortion: '相关道岔未生成'
|
||||||
};
|
};
|
||||||
|
@ -40,6 +40,7 @@ class Jlmap {
|
|||||||
initMapInstance(opts) {
|
initMapInstance(opts) {
|
||||||
const width = opts.dom.clientWidth;
|
const width = opts.dom.clientWidth;
|
||||||
const height = opts.dom.clientHeight;
|
const height = opts.dom.clientHeight;
|
||||||
|
this.zoomOnMouseWheel = opts.options.zoomOnMouseWheel;
|
||||||
|
|
||||||
this.$zr = zrender.init(opts.dom, deepAssign({ renderer, devicePixelRatio, width, height }, opts.config));
|
this.$zr = zrender.init(opts.dom, deepAssign({ renderer, devicePixelRatio, width, height }, opts.config));
|
||||||
|
|
||||||
@ -125,6 +126,7 @@ class Jlmap {
|
|||||||
if (this.$options.disabled == true) {
|
if (this.$options.disabled == true) {
|
||||||
this.$mouseController.disable();
|
this.$mouseController.disable();
|
||||||
} else {
|
} else {
|
||||||
|
opts['zoomOnMouseWheel'] = this.zoomOnMouseWheel;
|
||||||
this.$mouseController.enable(opts);
|
this.$mouseController.enable(opts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
<template>
|
|
||||||
<section class="app-main">
|
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper">
|
|
||||||
<transition name="fade" mode="out-in">
|
|
||||||
<router-view />
|
|
||||||
</transition>
|
|
||||||
</el-scrollbar>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'AppMain',
|
|
||||||
computed: {
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
@ -26,17 +26,18 @@ export default {
|
|||||||
Qcode
|
Qcode
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
entryList: [
|
entryList: [
|
||||||
{
|
{
|
||||||
name: 'global.designPlatformEntrance',
|
name: 'global.designPlatformEntrance',
|
||||||
handle: this.goToDesign,
|
handle: this.goToDesign,
|
||||||
hidden: getSessionStorage('project') === 'design'
|
hidden: getSessionStorage('project').startsWith('design')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'global.trainingPlatformEntrance',
|
name: 'global.trainingPlatformEntrance',
|
||||||
handle: this.goToTraining,
|
handle: this.goToTraining,
|
||||||
hidden: getSessionStorage('project') !== 'design'
|
hidden: !getSessionStorage('project').startsWith('design')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'global.scan',
|
name: 'global.scan',
|
||||||
@ -46,7 +47,7 @@ export default {
|
|||||||
{
|
{
|
||||||
name: 'global.quickEntry',
|
name: 'global.quickEntry',
|
||||||
handle: this.quickEntry,
|
handle: this.quickEntry,
|
||||||
hidden: getSessionStorage('project') === 'design'
|
hidden: getSessionStorage('project').startsWith('design')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: LangStorage.getLang('zh')==='zh'?'English':'中文',
|
name: LangStorage.getLang('zh')==='zh'?'English':'中文',
|
||||||
@ -62,6 +63,9 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
username() {
|
username() {
|
||||||
return this.$store.state.user.nickname;
|
return this.$store.state.user.nickname;
|
||||||
|
},
|
||||||
|
project() {
|
||||||
|
return getSessionStorage('project');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -81,19 +85,37 @@ export default {
|
|||||||
},
|
},
|
||||||
goToDesign() {
|
goToDesign() {
|
||||||
const routeData = this.$router.resolve({
|
const routeData = this.$router.resolve({
|
||||||
path: '/design'
|
path: this.getPath()
|
||||||
});
|
});
|
||||||
window.open(routeData.href, '_blank');
|
window.open(routeData.href, '_blank');
|
||||||
},
|
},
|
||||||
goToTraining() {
|
goToTraining() {
|
||||||
const routeData = this.$router.resolve({
|
const routeData = this.$router.resolve({
|
||||||
path: '/'
|
path: this.getPath()
|
||||||
});
|
});
|
||||||
window.open(routeData.href, '_blank');
|
window.open(routeData.href, '_blank');
|
||||||
},
|
},
|
||||||
switchLanguage() {
|
switchLanguage() {
|
||||||
this.$i18n.locale = this.lang;
|
this.$i18n.locale = this.lang;
|
||||||
LangStorage.setLang(this.lang);
|
LangStorage.setLang(this.lang);
|
||||||
|
},
|
||||||
|
getPath() {
|
||||||
|
let path = '/';
|
||||||
|
switch (this.project) {
|
||||||
|
case 'login':
|
||||||
|
path = '/design/login';
|
||||||
|
break;
|
||||||
|
case 'xty':
|
||||||
|
path='/designxty/login';
|
||||||
|
break;
|
||||||
|
case 'design':
|
||||||
|
path = '/login';
|
||||||
|
break;
|
||||||
|
case 'designxty':
|
||||||
|
path= '/xty/login';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
export { default as Navbar } from './Navbar';
|
export { default as Navbar } from './Navbar';
|
||||||
export { default as Sidebar } from './Sidebar';
|
export { default as Sidebar } from './Sidebar';
|
||||||
export { default as AppMain } from './AppMain';
|
// export { default as AppMain } from './AppMain';
|
||||||
|
@ -119,7 +119,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import md5 from 'js-md5';
|
import md5 from 'js-md5';
|
||||||
import { getInfo } from '@/api/login';
|
import { getInfo } from '@/api/login';
|
||||||
import { getDesignToken } from '@/utils/auth'; // 验权
|
import { getDesignToken, getToken } from '@/utils/auth'; // 验权
|
||||||
import { getUserinfoName, getUserinfoNickname, getUserinfoMobile, getUserinfoMobileCode, getUserinfoEmailCode, getUserinfoEmail, getUserinfoPassword } from '@/api/management/user';
|
import { getUserinfoName, getUserinfoNickname, getUserinfoMobile, getUserinfoMobileCode, getUserinfoEmailCode, getUserinfoEmail, getUserinfoPassword } from '@/api/management/user';
|
||||||
import { setInterval, clearInterval } from 'timers';
|
import { setInterval, clearInterval } from 'timers';
|
||||||
|
|
||||||
@ -187,7 +187,8 @@ export default {
|
|||||||
},
|
},
|
||||||
doShow() {
|
doShow() {
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
getInfo(getDesignToken()).then(response => {
|
const token = getToken() || getDesignToken();
|
||||||
|
getInfo(token).then(response => {
|
||||||
const user = response.data;
|
const user = response.data;
|
||||||
this.userInfo = {
|
this.userInfo = {
|
||||||
name: user.name,
|
name: user.name,
|
||||||
|
@ -2,22 +2,28 @@
|
|||||||
<div class="app-wrapper" :class="classObj">
|
<div class="app-wrapper" :class="classObj">
|
||||||
<div class="main-container">
|
<div class="main-container">
|
||||||
<navbar />
|
<navbar />
|
||||||
<app-main :style="{width: width+'px', height: height+'px'}" />
|
<section class="app-main" :style="{height: height+'px'}">
|
||||||
<el-footer style="height:30px;text-align:right;line-height: 30px;">
|
<!-- <el-scrollbar wrap-class="scrollbar-wrapper app_scrollbar_box"> -->
|
||||||
<span style="font-size:14px;">Copyright ©2018 北京玖琏科技有限公司 京ICP备18028522号</span>
|
<transition name="fade" mode="out-in">
|
||||||
|
<router-view />
|
||||||
|
</transition>
|
||||||
|
<!-- </el-scrollbar> -->
|
||||||
|
</section>
|
||||||
|
<el-footer class="footers" style="height:30px;">
|
||||||
|
<div style="font-size:14px;float:left;">北京玖琏科技有限公司 联系电话: 13201793090 </div>
|
||||||
|
<div style="font-size:14px;float:right;">Copyright ©2018 北京玖琏科技有限公司 京ICP备18028522号</div>
|
||||||
</el-footer>
|
</el-footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { Navbar, AppMain } from './components'; // Sidebar
|
import { Navbar } from './components'; // Sidebar
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Layout',
|
name: 'Layout',
|
||||||
components: {
|
components: {
|
||||||
Navbar,
|
Navbar
|
||||||
AppMain
|
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -40,7 +46,7 @@ export default {
|
|||||||
return this.$store.state.app.width;
|
return this.$store.state.app.width;
|
||||||
},
|
},
|
||||||
height() {
|
height() {
|
||||||
return this.$store.state.app.height-60-30;
|
return this.$store.state.app.height - 90;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@ -70,6 +76,10 @@ export default {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.app-main{
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.drawer-bg {
|
.drawer-bg {
|
||||||
background: #000;
|
background: #000;
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
@ -80,4 +90,64 @@ export default {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
}
|
}
|
||||||
|
.footers{
|
||||||
|
line-height: 30px;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
bottom: 0;
|
||||||
|
background: #fff;
|
||||||
|
border-top: 1px #ebeef5 solid;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style rel="stylesheet/scss" lang="scss">
|
||||||
|
.app_scrollbar_box{
|
||||||
|
.el-scrollbar__view{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 定义公共card样式
|
||||||
|
.joylink-card{
|
||||||
|
border: 1px solid #EBEEF5;
|
||||||
|
background-color: #FFF;
|
||||||
|
color: #303133;
|
||||||
|
transition: .3s;
|
||||||
|
box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 谷歌、safari、qq浏览器、360浏览器滚动条样式
|
||||||
|
// 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
// height: 110px;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
/*定义滚动条轨道 内阴影+圆角*/
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
// box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: #FFFFFF;;
|
||||||
|
}
|
||||||
|
/*定义滑块 内阴影+圆角*/
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 10px;
|
||||||
|
// box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||||||
|
background-color: #eaeaea;
|
||||||
|
}
|
||||||
|
/*滑块效果*/
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
border-radius: 5px;
|
||||||
|
// box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||||
|
background: rgba(0,0,0,0.4);
|
||||||
|
}
|
||||||
|
/*IE滚动条颜色*/
|
||||||
|
html {
|
||||||
|
scrollbar-face-color:#bfbfbf;/*滚动条颜色*/
|
||||||
|
scrollbar-highlight-color:#000;
|
||||||
|
scrollbar-3dlight-color:#000;
|
||||||
|
scrollbar-darkshadow-color:#000;
|
||||||
|
scrollbar-Shadow-color:#adadad;/*滑块边色*/
|
||||||
|
scrollbar-arrow-color:rgba(0,0,0,0.4);/*箭头颜色*/
|
||||||
|
scrollbar-track-color:#eeeeee;/*背景颜色*/
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -15,7 +15,7 @@ function hasPermission(roles, permissionRoles) {
|
|||||||
return roles.some(role => permissionRoles.indexOf(role) >= 0);
|
return roles.some(role => permissionRoles.indexOf(role) >= 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
const whiteList = ['/login', '/design/login', '/xty/login']; // 不重定向白名单
|
const whiteList = ['/login', '/design/login', '/xty/login', '/designxty/login']; // 不重定向白名单
|
||||||
|
|
||||||
const loginPage = whiteList[0];
|
const loginPage = whiteList[0];
|
||||||
|
|
||||||
@ -23,19 +23,25 @@ const loginDesignPage = whiteList[1];
|
|||||||
|
|
||||||
const loginXtyPage = whiteList[2];
|
const loginXtyPage = whiteList[2];
|
||||||
|
|
||||||
|
const loginDesignXtyPage = whiteList[3];
|
||||||
|
|
||||||
// 获取路径数据
|
// 获取路径数据
|
||||||
function getRouteInfo(to) {
|
function getRouteInfo(to) {
|
||||||
let loginPath = '/';
|
let loginPath = '/';
|
||||||
let getTokenInfo = () => { };
|
let getTokenInfo = () => { };
|
||||||
let clientId = '';
|
let clientId = '';
|
||||||
const toRoutePath = to.redirectedFrom || to.path;
|
const toRoutePath = to.redirectedFrom || to.path;
|
||||||
if (/^\/design/.test(toRoutePath) || /^\/scriptDisplay/.test(toRoutePath) || /^\/publish/.test(toRoutePath) || /^\/orderauthor/.test(toRoutePath) || /^\/system/.test(toRoutePath)|| /^\/display\/record/.test(toRoutePath) || /^\/display\/manage/.test(toRoutePath) || /^\/apply/.test(toRoutePath)) {
|
if (/^\/designxty/.test(toRoutePath)) {
|
||||||
loginPath = loginDesignPage;
|
loginPath = loginDesignXtyPage;
|
||||||
|
getTokenInfo = getDesignToken;
|
||||||
|
clientId = LoginParams.Design.clientId;
|
||||||
|
} else if (/^\/design/.test(toRoutePath) || /^\/scriptDisplay/.test(toRoutePath) || /^\/publish/.test(toRoutePath) || /^\/orderauthor/.test(toRoutePath) || /^\/system/.test(toRoutePath) || /^\/display\/record/.test(toRoutePath) || /^\/display\/manage/.test(toRoutePath) || /^\/apply/.test(toRoutePath)) {
|
||||||
|
loginPath = getSessionStorage('project') === 'designxty' ? loginDesignXtyPage : loginDesignPage;
|
||||||
getTokenInfo = getDesignToken;
|
getTokenInfo = getDesignToken;
|
||||||
clientId = LoginParams.Design.clientId;
|
clientId = LoginParams.Design.clientId;
|
||||||
} else if (/^\/plan/.test(toRoutePath) || /^\/display\/plan/.test(toRoutePath)) {
|
} else if (/^\/plan/.test(toRoutePath) || /^\/display\/plan/.test(toRoutePath)) {
|
||||||
if (getSessionStorage('project')==='design') {
|
if (getSessionStorage('project').startsWith('design')) {
|
||||||
loginPath = loginDesignPage;
|
loginPath = getSessionStorage('project') === 'designxty' ? loginDesignXtyPage : loginDesignPage;
|
||||||
getTokenInfo = getDesignToken;
|
getTokenInfo = getDesignToken;
|
||||||
clientId = LoginParams.Design.clientId;
|
clientId = LoginParams.Design.clientId;
|
||||||
} else {
|
} else {
|
||||||
@ -62,7 +68,7 @@ function handleRoute(to, from, next, routeInfo) {
|
|||||||
store.dispatch('GetInfo', routeInfo.getTokenInfo).then(res => {
|
store.dispatch('GetInfo', routeInfo.getTokenInfo).then(res => {
|
||||||
// 根据roles权限生成可访问的路由表
|
// 根据roles权限生成可访问的路由表
|
||||||
const roles = res.roles;
|
const roles = res.roles;
|
||||||
if (getSessionStorage('project')==='design') {
|
if (getSessionStorage('project').startsWith('design')) {
|
||||||
roles.push(userDesign);
|
roles.push(userDesign);
|
||||||
}
|
}
|
||||||
store.dispatch('GenerateRoutes', { roles, clientId: routeInfo.clientId }).then(() => {
|
store.dispatch('GenerateRoutes', { roles, clientId: routeInfo.clientId }).then(() => {
|
||||||
@ -86,11 +92,7 @@ function handleRoute(to, from, next, routeInfo) {
|
|||||||
// 除没有动态改变权限的需求可直接next() 删下方权限判断
|
// 除没有动态改变权限的需求可直接next() 删下方权限判断
|
||||||
if (hasPermission(store.getters.roles, to.meta.roles)) {
|
if (hasPermission(store.getters.roles, to.meta.roles)) {
|
||||||
if (to.path === '/404' && to.redirectedFrom === '/') {
|
if (to.path === '/404' && to.redirectedFrom === '/') {
|
||||||
if (getSessionStorage('project') === 'design') {
|
|
||||||
next('/design/home');
|
|
||||||
} else {
|
|
||||||
next(localStore.get('trainingPlatformRoute' + store.getters.id) || '/trainingPlatform');
|
next(localStore.get('trainingPlatformRoute' + store.getters.id) || '/trainingPlatform');
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
next();
|
next();
|
||||||
}
|
}
|
||||||
|
@ -279,12 +279,27 @@ export const constantRoutes = [
|
|||||||
component: Login,
|
component: Login,
|
||||||
hidden: true
|
hidden: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/xty',
|
||||||
|
redirect: '/xty/login',
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
// 设计平台登录
|
// 设计平台登录
|
||||||
{
|
{
|
||||||
path: '/design/login',
|
path: '/design/login',
|
||||||
component: Login,
|
component: Login,
|
||||||
hidden: true
|
hidden: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/designxty/login',
|
||||||
|
component: Login,
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/designxty',
|
||||||
|
redirect: '/designxty/login',
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/design/jlmap3d/edit',
|
path: '/design/jlmap3d/edit',
|
||||||
component: Jlmap3dedit,
|
component: Jlmap3dedit,
|
||||||
@ -557,7 +572,6 @@ export const asyncRouter = [
|
|||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
redirect: '/trainingPlatform/permission/14',
|
|
||||||
component: TrainingPlatform,
|
component: TrainingPlatform,
|
||||||
meta: {
|
meta: {
|
||||||
},
|
},
|
||||||
|
@ -2200,5 +2200,11 @@ export const IbpOperation = {
|
|||||||
export const loginTitle = {
|
export const loginTitle = {
|
||||||
xty: '西铁院实训平台',
|
xty: '西铁院实训平台',
|
||||||
login: '城市轨道交通实训平台',
|
login: '城市轨道交通实训平台',
|
||||||
design: '城市轨道交通设计平台'
|
design: '城市轨道交通设计平台',
|
||||||
|
designxty: '西铁院设计平台'
|
||||||
|
};
|
||||||
|
|
||||||
|
export const ProjectCode = {
|
||||||
|
xty: 'XTY',
|
||||||
|
designxty: 'XTY'
|
||||||
};
|
};
|
||||||
|
@ -48,7 +48,7 @@ function hasPermission(roles, route, parentsRoles) {
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
// return roles.some(role => route.meta.roles.indexOf(role) >= 0);
|
// return roles.some(role => route.meta.roles.indexOf(role) >= 0);
|
||||||
if (getSessionStorage('project')==='design') {
|
if (getSessionStorage('project').startsWith('design')) {
|
||||||
roles= roles.filter(function (role) {
|
roles= roles.filter(function (role) {
|
||||||
return route.meta.roles.indexOf(role) >= 0;
|
return route.meta.roles.indexOf(role) >= 0;
|
||||||
});
|
});
|
||||||
|
@ -3,9 +3,9 @@ export function getBaseUrl() {
|
|||||||
let BASE_API;
|
let BASE_API;
|
||||||
if (process.env.NODE_ENV === 'development') {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
// BASE_API = 'https://joylink.club/jlcloud';
|
// BASE_API = 'https://joylink.club/jlcloud';
|
||||||
// BASE_API = 'https://test.joylink.club/jlcloud';
|
BASE_API = 'https://test.joylink.club/jlcloud';
|
||||||
// BASE_API = 'http://192.168.3.5:9000'; // 袁琪
|
// BASE_API = 'http://192.168.3.5:9000'; // 袁琪
|
||||||
BASE_API = 'http://192.168.3.6:9000'; // 旭强
|
// BASE_API = 'http://192.168.3.6:9000'; // 旭强
|
||||||
// BASE_API = 'http://192.168.3.41:9000'; // 王兴杰
|
// BASE_API = 'http://192.168.3.41:9000'; // 王兴杰
|
||||||
} else {
|
} else {
|
||||||
BASE_API = process.env.VUE_APP_BASE_API;
|
BASE_API = process.env.VUE_APP_BASE_API;
|
||||||
|
@ -158,22 +158,22 @@
|
|||||||
handleConfirmPass(data){
|
handleConfirmPass(data){
|
||||||
publishRunPlan(data.id,data).then(resp => {
|
publishRunPlan(data.id,data).then(resp => {
|
||||||
if(resp.data.length<=0){
|
if(resp.data.length<=0){
|
||||||
this.$message.success(this.$t('approval.passedScriptSuccess'));
|
this.$message.success(this.$t('approval.passedRunPlanSuccess'));
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
this.$messageBox(`${this.$t('approval.passedScriptFailed')}: ${resp.data[0]}`);
|
this.$messageBox(`${this.$t('approval.passedRunPlanFailed')}: ${resp.data[0]}`);
|
||||||
}
|
}
|
||||||
this.reloadTable();
|
this.reloadTable();
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
this.$messageBox(`${this.$t('approval.passedScriptFailed')}: ${error.message}`);
|
this.$messageBox(`${this.$t('approval.passedRunPlanFailed')}: ${error.message}`);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleConfirmReject(data){
|
handleConfirmReject(data){
|
||||||
rejectRunPlan(data.id,data).then(resp => {
|
rejectRunPlan(data.id,data).then(resp => {
|
||||||
this.reloadTable();
|
this.reloadTable();
|
||||||
this.$message.success(this.$t('approval.rejectScriptSuccess'));
|
this.$message.success(this.$t('approval.rejectRunPlanSuccess'));
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
this.$messageBox(`${this.$t('approval.rejectScriptFailed')}: ${error.message}`);
|
this.$messageBox(`${this.$t('approval.rejectRunPlanFailed')}: ${error.message}`);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { launchFullscreen } from '@/utils/screen';
|
import { launchFullscreen } from '@/utils/screen';
|
||||||
import { UrlConfig } from '@/router/index';
|
import { UrlConfig } from '@/router/index';
|
||||||
import { scriptRecordNotify } from '@/api/simulation';
|
import { scriptDraftRecordNotify } from '@/api/simulation';
|
||||||
import ScriptOperate from './operate';
|
import ScriptOperate from './operate';
|
||||||
import { reviewScriptList,publishScript,rejectScript } from '@/api/designPlatform';
|
import { reviewScriptList,publishScript,rejectScript } from '@/api/designPlatform';
|
||||||
import { listPublishMap } from '@/api/jmap/map';
|
import { listPublishMap } from '@/api/jmap/map';
|
||||||
@ -148,7 +148,7 @@
|
|||||||
},
|
},
|
||||||
scriptPreview(index,row){
|
scriptPreview(index,row){
|
||||||
let mapInfo=this.allMapList.find(elem=>{return elem.id==row.mapId});
|
let mapInfo=this.allMapList.find(elem=>{return elem.id==row.mapId});
|
||||||
scriptRecordNotify(row.id).then(resp => {
|
scriptDraftRecordNotify(row.id).then(resp => {
|
||||||
const query = { mapId: row.mapId, group: resp.data, scriptId: row.id,skinCode:mapInfo.skinCode,try:0};
|
const query = { mapId: row.mapId, group: resp.data, scriptId: row.id,skinCode:mapInfo.skinCode,try:0};
|
||||||
this.$router.push({ path: `${UrlConfig.design.display}/demon`, query });
|
this.$router.push({ path: `${UrlConfig.design.display}/demon`, query });
|
||||||
launchFullscreen();
|
launchFullscreen();
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div slot="header" style="text-align: center;">
|
<div slot="header" style="text-align: center;">
|
||||||
<span><b>{{ $t('demonstration.simulationName') + courseModel.name }}</b></span>
|
<span><b>{{ $t('demonstration.simulationName') + courseModel.name }}</b></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="simulation-detail" :style="{ height: height-190 +'px' }">
|
<div class="simulation-detail" :style="{ height: height-230 +'px' }">
|
||||||
<p class="list-item">
|
<p class="list-item">
|
||||||
<span class="list-label">{{ $t('demonstration.productDescription') }}</span>
|
<span class="list-label">{{ $t('demonstration.productDescription') }}</span>
|
||||||
<span class="list-elem">{{ courseModel.remarks }}</span>
|
<span class="list-elem">{{ courseModel.remarks }}</span>
|
||||||
|
@ -1,39 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div v-loading="loading" class="joylink-card map-list-main">
|
||||||
<el-card v-loading="loading" class="map-list-main" :header="$t('map.publishedMapList')">
|
<div class="clearfix">
|
||||||
<filter-city ref="filerCity" filter-empty :query-function="queryFunction" :local-param-name="localParamName" @filterSelectChange="refresh" />
|
<span>{{ $t('map.publishedMapList') }}</span>
|
||||||
<el-input v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
|
</div>
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{ height: (height-125) +'px' }">
|
<div class="text_item" style="height: calc(100% - 47px);">
|
||||||
<el-tree
|
<filter-city v-if="project==='design'" ref="filerCity" filter-empty :query-function="queryFunction" :local-param-name="localParamName" @filterSelectChange="refresh" />
|
||||||
ref="tree"
|
<el-input v-if="project==='design'" v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
|
||||||
:data="treeList"
|
<div style="height: calc(100% - 76px);">
|
||||||
node-key="id"
|
<el-tree ref="tree" class="tree_box" :data="treeList" node-key="id" :props="defaultProps" highlight-current :span="22" :filter-node-method="filterNode" @node-click="clickEvent">
|
||||||
:props="defaultProps"
|
|
||||||
highlight-current
|
|
||||||
:span="22"
|
|
||||||
:filter-node-method="filterNode"
|
|
||||||
@node-click="clickEvent"
|
|
||||||
>
|
|
||||||
<!-- @node-contextmenu="showContextMenu" -->
|
|
||||||
<span slot-scope="{ node:tnode, data }">
|
<span slot-scope="{ node:tnode, data }">
|
||||||
<span
|
<span class="el-icon-tickets" :style="{color: data.valid ? 'green':''}" />
|
||||||
class="el-icon-tickets"
|
|
||||||
:style="{color: data.valid ? 'green':''}"
|
|
||||||
></span>
|
|
||||||
<span> {{ tnode.label }}</span>
|
<span> {{ tnode.label }}</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
</el-scrollbar>
|
</div>
|
||||||
</el-card>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { listPublishMap } from '@/api/jmap/map';
|
import { listPublishMap, getMapListByProjectCode } from '@/api/jmap/map';
|
||||||
import { UrlConfig } from '@/router/index';
|
import { UrlConfig } from '@/router/index';
|
||||||
import { superAdmin, admin } from '@/router';
|
import { superAdmin, admin } from '@/router';
|
||||||
import { getSessionStorage, setSessionStorage, removeSessionStorage } from '@/utils/auth';
|
import { getSessionStorage, setSessionStorage, removeSessionStorage } from '@/utils/auth';
|
||||||
import FilterCity from '@/views/components/filterCity';
|
import FilterCity from '@/views/components/filterCity';
|
||||||
import localStore from 'storejs';
|
import localStore from 'storejs';
|
||||||
|
import { ProjectCode } from '@/scripts/ConstDic';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PublicMapList',
|
name: 'PublicMapList',
|
||||||
@ -41,10 +32,6 @@ export default {
|
|||||||
FilterCity
|
FilterCity
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
height: {
|
|
||||||
type: Number,
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
width: {
|
width: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: true
|
required: true
|
||||||
@ -70,10 +57,14 @@ export default {
|
|||||||
y: 0
|
y: 0
|
||||||
},
|
},
|
||||||
editModel: {},
|
editModel: {},
|
||||||
localParamName: 'publish_cityCode',
|
localParamName: 'publish_cityCode'
|
||||||
cityCode: ''
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
project() {
|
||||||
|
return getSessionStorage('project');
|
||||||
|
}
|
||||||
|
},
|
||||||
watch: {
|
watch: {
|
||||||
filterText(val) {
|
filterText(val) {
|
||||||
this.treeList = this.treeData.filter((res) => {
|
this.treeList = this.treeData.filter((res) => {
|
||||||
@ -84,6 +75,11 @@ export default {
|
|||||||
beforeDestroy () {
|
beforeDestroy () {
|
||||||
removeSessionStorage('demonList');
|
removeSessionStorage('demonList');
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
if (this.project === 'designxty') {
|
||||||
|
this.refresh();
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
filterNode(value, data) {
|
filterNode(value, data) {
|
||||||
if (!value) return true;
|
if (!value) return true;
|
||||||
@ -104,7 +100,7 @@ export default {
|
|||||||
}
|
}
|
||||||
case 'lessonDesign': {
|
case 'lessonDesign': {
|
||||||
setSessionStorage('designType', 'lessonDesign');
|
setSessionStorage('designType', 'lessonDesign');
|
||||||
this.$router.push({ path: `${UrlConfig.design.lessonHome}/${obj.mapId}/${obj.skinCode}`, query: {cityCode: this.cityCode} });
|
this.$router.push({ path: `${UrlConfig.design.lessonHome}/${obj.mapId}/${obj.skinCode}`, query: {cityCode: obj.cityCode} });
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'runPlanDesign': {
|
case 'runPlanDesign': {
|
||||||
@ -121,37 +117,38 @@ export default {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// this.$refs.menu.doClose();
|
|
||||||
},
|
},
|
||||||
// async myrefresh(filterSelect){
|
|
||||||
|
|
||||||
// },
|
|
||||||
async refresh(filterSelect) {
|
async refresh(filterSelect) {
|
||||||
this.cityCode=filterSelect;
|
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.treeData = this.treeList = [];
|
this.treeData = this.treeList = [];
|
||||||
try {
|
try {
|
||||||
const res = await listPublishMap({cityCode: filterSelect});
|
let res = '';
|
||||||
|
if (this.project === 'designxty') {
|
||||||
|
res = await getMapListByProjectCode(ProjectCode[this.project]);
|
||||||
|
} else {
|
||||||
|
res = await listPublishMap({cityCode: filterSelect});
|
||||||
|
}
|
||||||
|
|
||||||
res.data.forEach(elem=>{
|
res.data && res.data.forEach(elem=>{
|
||||||
// debugger;
|
|
||||||
// elem.children.find(n => { return n.name.includes("行调")})
|
// elem.children.find(n => { return n.name.includes("行调")})
|
||||||
elem.children = [
|
elem.children = [
|
||||||
{
|
{
|
||||||
id: '1',
|
id: '1',
|
||||||
name: this.$t('designPlatform.mapPreview'),
|
name: this.$t('designPlatform.mapPreview'),
|
||||||
type: 'mapPreview',
|
type: 'mapPreview',
|
||||||
mapId: elem.id
|
mapId: elem.id,
|
||||||
|
cityCode: elem.cityCode
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
this.isAdministrator()?elem.children.push({id: '2',name: this.$t('designPlatform.lessonDesign'),type: 'lessonDesign',mapId: elem.id,skinCode: elem.skinCode}):'';
|
this.isAdministrator() ? elem.children.push({id: '2', name: this.$t('designPlatform.lessonDesign'), type: 'lessonDesign', mapId: elem.id, skinCode: elem.skinCode, cityCode: elem.cityCode}) : '';
|
||||||
elem.children.push(
|
elem.children.push(
|
||||||
{
|
{
|
||||||
id: '3',
|
id: '3',
|
||||||
name: this.$t('designPlatform.scriptDesign'),
|
name: this.$t('designPlatform.scriptDesign'),
|
||||||
type: 'scriptDesign',
|
type: 'scriptDesign',
|
||||||
mapId: elem.id,
|
mapId: elem.id,
|
||||||
skinCode: elem.skinCode
|
skinCode: elem.skinCode,
|
||||||
|
cityCode: elem.cityCode
|
||||||
// code:elem.children.find(n => { return n.name.includes("行调")})
|
// code:elem.children.find(n => { return n.name.includes("行调")})
|
||||||
});
|
});
|
||||||
elem.children.push(
|
elem.children.push(
|
||||||
@ -160,7 +157,8 @@ export default {
|
|||||||
name: this.$t('designPlatform.runPlanDesign'),
|
name: this.$t('designPlatform.runPlanDesign'),
|
||||||
type: 'runPlanDesign',
|
type: 'runPlanDesign',
|
||||||
mapId: elem.id,
|
mapId: elem.id,
|
||||||
skinCode: elem.skinCode
|
skinCode: elem.skinCode,
|
||||||
|
cityCode: elem.cityCode
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@ -186,10 +184,7 @@ export default {
|
|||||||
},
|
},
|
||||||
isAdministrator() {
|
isAdministrator() {
|
||||||
return this.$store.state.user.roles.includes(superAdmin) || this.$store.state.user.roles.includes(admin);
|
return this.$store.state.user.roles.includes(superAdmin) || this.$store.state.user.roles.includes(admin);
|
||||||
},
|
}
|
||||||
// createMap() {
|
|
||||||
// this.$emit("createMap");
|
|
||||||
// },
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@ -205,6 +200,17 @@ export default {
|
|||||||
|
|
||||||
.map-list-main{
|
.map-list-main{
|
||||||
text-align:left;
|
text-align:left;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.clearfix{
|
||||||
|
padding: 0 20px;
|
||||||
|
border-bottom: 1px solid #EBEEF5;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 47px;
|
||||||
|
line-height: 47px;
|
||||||
|
}
|
||||||
|
.tree_box{
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style>
|
<style>
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-card :style="{height: height+'px'}">
|
<el-card>
|
||||||
<div class="home-box" :style="{height: height+'px'}">
|
<div class="home-box" :style="{height: height+'px'}">
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper">
|
<el-scrollbar wrap-class="scrollbar-wrapper">
|
||||||
|
<div class="content_box">
|
||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
城市轨道交通设计平台
|
城市轨道交通设计平台
|
||||||
<!-- <img :src="logo" alt="" class="logo-img"> -->
|
|
||||||
</h1>
|
</h1>
|
||||||
<div class="card-box">
|
<div class="card-box">
|
||||||
<el-carousel :interval="4000" type="card" height="380px">
|
<el-carousel :interval="4000" type="card" height="380px">
|
||||||
@ -14,19 +14,20 @@
|
|||||||
</el-carousel>
|
</el-carousel>
|
||||||
</div>
|
</div>
|
||||||
<div class="brief-box">{{ $t('demonstration.simulationSystemDescription') }}</div>
|
<div class="brief-box">{{ $t('demonstration.simulationSystemDescription') }}</div>
|
||||||
|
</div>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import logo from '@/assets/logo.png';
|
|
||||||
import home1 from '@/assets/home/home1.png';
|
import home1 from '@/assets/home/home1.png';
|
||||||
import home2 from '@/assets/home/home2.png';
|
import home2 from '@/assets/home/home2.png';
|
||||||
import home3 from '@/assets/home/demon1.jpg';
|
import home3 from '@/assets/home/demon1.jpg';
|
||||||
import home4 from '@/assets/home/tring1.png';
|
import home4 from '@/assets/home/tring1.png';
|
||||||
import home5 from '@/assets/home/tring4.jpg';
|
import home5 from '@/assets/home/tring4.jpg';
|
||||||
import home6 from '@/assets/home/demon2.jpg';
|
import home6 from '@/assets/home/demon2.jpg';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Home',
|
name: 'Home',
|
||||||
data() {
|
data() {
|
||||||
@ -38,13 +39,12 @@
|
|||||||
{ src: home4 },
|
{ src: home4 },
|
||||||
{ src: home5 },
|
{ src: home5 },
|
||||||
{ src: home6 }
|
{ src: home6 }
|
||||||
],
|
]
|
||||||
logo: logo
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
height() {
|
height() {
|
||||||
return this.$store.state.app.height - 50-30;
|
return this.$store.state.app.height - 93;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -57,11 +57,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.home-box {
|
.home-box {
|
||||||
padding: 15px 100px;
|
|
||||||
float: left;
|
float: left;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-family: 'Microsoft YaHei';
|
font-family: 'Microsoft YaHei';
|
||||||
|
|
||||||
|
.content_box{
|
||||||
|
padding: 0 100px 15px;
|
||||||
|
}
|
||||||
.title {
|
.title {
|
||||||
font-size: 35px;
|
font-size: 35px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-wrapper">
|
<div class="app-wrapper">
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper">
|
|
||||||
<div v-show="listShow" class="examList" :style="{width: widthLeft+'px'}">
|
<div v-show="listShow" class="examList" :style="{width: widthLeft+'px'}">
|
||||||
<demon-list ref="demonList" :height="height" :width="widthLeft" />
|
<demon-list ref="demonList" :width="widthLeft" />
|
||||||
</div>
|
</div>
|
||||||
<drap-left :width-left="widthLeft" @drapWidth="drapWidth" />
|
<drap-left :width-left="widthLeft" @drapWidth="drapWidth" />
|
||||||
<transition>
|
<transition>
|
||||||
<router-view :product-list="productList" :widthLeft="widthLeft"/>
|
<router-view :product-list="productList" :width-left="widthLeft" />
|
||||||
</transition>
|
</transition>
|
||||||
</el-scrollbar>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -39,9 +37,6 @@ export default {
|
|||||||
...mapGetters([
|
...mapGetters([
|
||||||
'lessonbar'
|
'lessonbar'
|
||||||
]),
|
]),
|
||||||
height() {
|
|
||||||
return this.$store.state.app.height - 50-30;
|
|
||||||
},
|
|
||||||
width() {
|
width() {
|
||||||
return this.$store.state.app.width;
|
return this.$store.state.app.width;
|
||||||
}
|
}
|
||||||
@ -77,14 +72,14 @@ export default {
|
|||||||
resize() {
|
resize() {
|
||||||
this.widthLeft = Number(localStore.get('LeftWidth')) || this.widthLeft;
|
this.widthLeft = Number(localStore.get('LeftWidth')) || this.widthLeft;
|
||||||
const width = this.$store.state.app.width - 521 - this.widthLeft;
|
const width = this.$store.state.app.width - 521 - this.widthLeft;
|
||||||
const height = this.$store.state.app.height - 90;
|
// const height = this.$store.state.app.height - 90;
|
||||||
this.$store.dispatch('config/resize', { width: width, height: height });
|
this.$store.dispatch('config/resize', { width: width });
|
||||||
},
|
},
|
||||||
setMapResize(LeftWidth) {
|
setMapResize(LeftWidth) {
|
||||||
this.currentWidth=this.$store.state.app.width - this.widthLeft;
|
this.currentWidth=this.$store.state.app.width - this.widthLeft;
|
||||||
const widths = this.$store.state.app.width - 521 - LeftWidth;
|
const widths = this.$store.state.app.width - 521 - LeftWidth;
|
||||||
const heights = this.$store.state.app.height - 90;
|
// const heights = this.$store.state.app.height - 90;
|
||||||
this.$store.dispatch('config/resize', { width: widths, height: heights });
|
this.$store.dispatch('config/resize', { width: widths });
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -102,8 +97,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.examList {
|
.examList {
|
||||||
// position: fixed;
|
|
||||||
// top: 61px;
|
|
||||||
float: left;
|
float: left;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
@ -1,28 +1,31 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="map-view">
|
<div class="map-view">
|
||||||
<jlmap-visual ref="jlmapVisual" @onSelect="clickEvent" @onMenu="onContextmenu" />
|
<jlmap-visual ref="jlmapVisual" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import JlmapVisual from '@/views/jlmap/index';
|
import JlmapVisual from '@/views/jlmap/index';
|
||||||
import { loadMapData, loadMapDataById } from '@/utils/loaddata';
|
import { loadMapDataById } from '@/utils/loaddata';
|
||||||
|
import { EventBus } from '@/scripts/event-bus';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'mapPreview',
|
name: 'MapPreview',
|
||||||
components: {
|
components: {
|
||||||
JlmapVisual
|
JlmapVisual
|
||||||
},
|
},
|
||||||
|
props: {
|
||||||
|
widthLeft: {
|
||||||
|
type: Number,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
size: {
|
size: {
|
||||||
width: document.documentElement.clientWidth - 400,
|
width: document.documentElement.clientWidth - 400,
|
||||||
height: document.documentElement.clientHeight - 80
|
height: document.documentElement.clientHeight - 80
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
props: {
|
|
||||||
widthLeft: {
|
|
||||||
required: true
|
|
||||||
}
|
}
|
||||||
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
mapId() {
|
mapId() {
|
||||||
@ -32,15 +35,6 @@
|
|||||||
return this.$store.state.app.height - 50-30;
|
return this.$store.state.app.height - 50-30;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async beforeDestroy() {
|
|
||||||
// await this.clearAllTimer();
|
|
||||||
// if (!this.isReplay) {
|
|
||||||
// await this.quit();
|
|
||||||
// }
|
|
||||||
// await this.$store.dispatch('training/reset');
|
|
||||||
await this.$store.dispatch('map/mapClear');
|
|
||||||
// EventBus.$off('clearCheckLogin');
|
|
||||||
},
|
|
||||||
watch: {
|
watch: {
|
||||||
widthLeft(val) {
|
widthLeft(val) {
|
||||||
this.setWindowSize();
|
this.setWindowSize();
|
||||||
@ -57,7 +51,16 @@
|
|||||||
// },
|
// },
|
||||||
'$store.state.app.windowSizeCount': function() {
|
'$store.state.app.windowSizeCount': function() {
|
||||||
this.setWindowSize();
|
this.setWindowSize();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
async beforeDestroy() {
|
||||||
|
// await this.clearAllTimer();
|
||||||
|
// if (!this.isReplay) {
|
||||||
|
// await this.quit();
|
||||||
|
// }
|
||||||
|
// await this.$store.dispatch('training/reset');
|
||||||
|
await this.$store.dispatch('map/mapClear');
|
||||||
|
// EventBus.$off('clearCheckLogin');
|
||||||
},
|
},
|
||||||
async mounted() {
|
async mounted() {
|
||||||
await this.setWindowSize();
|
await this.setWindowSize();
|
||||||
@ -94,16 +97,10 @@
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
EventBus.$emit('viewLoading', false);
|
EventBus.$emit('viewLoading', false);
|
||||||
});
|
});
|
||||||
},
|
|
||||||
clickEvent(em){
|
|
||||||
|
|
||||||
},
|
|
||||||
onContextmenu(em){
|
|
||||||
|
|
||||||
},
|
},
|
||||||
setWindowSize() {
|
setWindowSize() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
const width = this.$store.state.app.width-this.widthLeft;
|
const width = this.$store.state.app.width-(this.widthLeft||450);
|
||||||
const height = this.height;
|
const height = this.height;
|
||||||
this.$store.dispatch('config/resize', { width, height });
|
this.$store.dispatch('config/resize', { width, height });
|
||||||
// this.$store.dispatch('training/updateOffsetStationCode', { offsetStationCode: this.offsetStationCode });
|
// this.$store.dispatch('training/updateOffsetStationCode', { offsetStationCode: this.offsetStationCode });
|
||||||
|
@ -1,40 +1,26 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-card v-loading="loading" class="map-list-main" :header="$t('map.myMapList')">
|
<div v-loading="loading" class="joylink-card map-list-main">
|
||||||
|
<div class="clearfix">
|
||||||
|
<span>{{ $t('map.myMapList') }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="text_item" style="height: calc(100% - 47px);">
|
||||||
<el-input v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
|
<el-input v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{ height: (height-185) +'px' }">
|
<div style="height: calc(100% - 89px); overflow-y: auto;">
|
||||||
<el-tree
|
<el-tree ref="tree" :data="treeList" node-key="id" :props="defaultProps" highlight-current :span="22" :filter-node-method="filterNode" @node-click="clickEvent" @node-contextmenu="showContextMenu">
|
||||||
ref="tree"
|
|
||||||
:data="treeList"
|
|
||||||
node-key="id"
|
|
||||||
:props="defaultProps"
|
|
||||||
highlight-current
|
|
||||||
:span="22"
|
|
||||||
:filter-node-method="filterNode"
|
|
||||||
@node-click="clickEvent"
|
|
||||||
@node-contextmenu="showContextMenu"
|
|
||||||
>
|
|
||||||
<span slot-scope="{ node:tnode, data }">
|
<span slot-scope="{ node:tnode, data }">
|
||||||
<span
|
<span class="el-icon-tickets" :style="{color: data.valid ? 'green':''}" />
|
||||||
class="el-icon-tickets"
|
|
||||||
:style="{color: data.valid ? 'green':''}"
|
|
||||||
></span>
|
|
||||||
<span> {{ tnode.label }}</span>
|
<span> {{ tnode.label }}</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
</el-scrollbar>
|
</div>
|
||||||
<div class="buttonList">
|
<div class="buttonList">
|
||||||
<el-button size="small" type="primary" class="eachButton uploadDemo ">
|
<el-button size="small" type="primary" class="eachButton uploadDemo ">
|
||||||
<input
|
<input ref="files" type="file" class="file_box" accept=".json, application/json" @change="importf">
|
||||||
ref="files"
|
|
||||||
type="file"
|
|
||||||
class="file_box"
|
|
||||||
accept=".json, application/json"
|
|
||||||
@change="importf"
|
|
||||||
>
|
|
||||||
{{ $t('map.importMap') }}
|
{{ $t('map.importMap') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button size="small" type="primary" class="eachButton" @click="createMap">{{ $t('map.newConstruction') }}</el-button>
|
<el-button size="small" type="primary" class="eachButton" @click="createMap">{{ $t('map.newConstruction') }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<map-operate-menu
|
<map-operate-menu
|
||||||
ref="menu"
|
ref="menu"
|
||||||
:point="point"
|
:point="point"
|
||||||
@ -43,7 +29,7 @@
|
|||||||
@refresh="loadInitData"
|
@refresh="loadInitData"
|
||||||
@jlmap3d="jlmap3d"
|
@jlmap3d="jlmap3d"
|
||||||
/>
|
/>
|
||||||
</el-card>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { DeviceMenu } from '@/scripts/ConstDic';
|
import { DeviceMenu } from '@/scripts/ConstDic';
|
||||||
@ -59,10 +45,6 @@ export default {
|
|||||||
MapOperateMenu
|
MapOperateMenu
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
height: {
|
|
||||||
type: Number,
|
|
||||||
required: true
|
|
||||||
},
|
|
||||||
width: {
|
width: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: true
|
required: true
|
||||||
@ -223,6 +205,16 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.clearfix{
|
||||||
|
padding: 0 20px;
|
||||||
|
border-bottom: 1px solid #EBEEF5;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 47px;
|
||||||
|
line-height: 47px;
|
||||||
|
}
|
||||||
|
.tree_box{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
.buttonList{
|
.buttonList{
|
||||||
padding: 8px 0px 8px 0px;
|
padding: 8px 0px 8px 0px;
|
||||||
border-top: 1px #ccc solid;
|
border-top: 1px #ccc solid;
|
||||||
@ -249,5 +241,6 @@ export default {
|
|||||||
}
|
}
|
||||||
.map-list-main{
|
.map-list-main{
|
||||||
text-align:left;
|
text-align:left;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,21 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-wrapper">
|
<div class="app-wrapper" style="height: 100%;">
|
||||||
<map-create ref="mapCreate" :skin-code="skinCode" @refresh="refresh1" @editmap="handleNodeClick" />
|
<map-create ref="mapCreate" :skin-code="skinCode" @refresh="refresh1" @editmap="handleNodeClick" />
|
||||||
<!-- <el-scrollbar wrap-class="scrollbar-wrapper"> -->
|
|
||||||
<div>
|
|
||||||
<div v-show="listShow" class="examList" :style="{width: widthLeft+'px'}">
|
<div v-show="listShow" class="examList" :style="{width: widthLeft+'px'}">
|
||||||
<demon-list ref="demonList" :height="height" :width="widthLeft" @createMap="createMap" />
|
<demon-list ref="demonList" :width="widthLeft" @createMap="createMap" />
|
||||||
</div>
|
</div>
|
||||||
<drap-left :width-left="widthLeft" @drapWidth="drapWidth" />
|
<drap-left :width-left="widthLeft" @drapWidth="drapWidth" />
|
||||||
<transition>
|
<transition>
|
||||||
<!-- position:'relative', -->
|
|
||||||
<!-- :style="{left:widthLeft+'px', width: (width - widthLeft)+'px'}" -->
|
|
||||||
<router-view :product-list="productList" />
|
<router-view :product-list="productList" />
|
||||||
</transition>
|
</transition>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- </el-scrollbar> -->
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -26,6 +19,7 @@ import { launchFullscreen } from '@/utils/screen';
|
|||||||
import localStore from 'storejs';
|
import localStore from 'storejs';
|
||||||
import { getSessionStorage, setSessionStorage } from '@/utils/auth';
|
import { getSessionStorage, setSessionStorage } from '@/utils/auth';
|
||||||
import MapCreate from '@/views/map/mapdraft/mapmanage/create';
|
import MapCreate from '@/views/map/mapdraft/mapmanage/create';
|
||||||
|
import { UrlConfig } from '@/router/index';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DesignPlatform',
|
name: 'DesignPlatform',
|
||||||
@ -46,9 +40,6 @@ export default {
|
|||||||
...mapGetters([
|
...mapGetters([
|
||||||
'lessonbar'
|
'lessonbar'
|
||||||
]),
|
]),
|
||||||
height() {
|
|
||||||
return this.$store.state.app.height - 50;
|
|
||||||
},
|
|
||||||
width() {
|
width() {
|
||||||
return this.$store.state.app.width;
|
return this.$store.state.app.width;
|
||||||
}
|
}
|
||||||
@ -139,8 +130,6 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.examList {
|
.examList {
|
||||||
// position: fixed;
|
|
||||||
// top: 61px;
|
|
||||||
float: left;
|
float: left;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getScriptPageListOnline, getScriptById,getDraftScriptById } from '@/api/script';
|
import { getScriptPageListOnline, getScriptById,getDraftScriptByGroup } from '@/api/script';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'AddQuest',
|
name: 'AddQuest',
|
||||||
@ -154,7 +154,7 @@ export default {
|
|||||||
},
|
},
|
||||||
async handleLoad(index, row) {
|
async handleLoad(index, row) {
|
||||||
this.row = row;
|
this.row = row;
|
||||||
const res = this.$route.fullPath.includes('design/display/demon')?await getDraftScriptById(row.id):await getScriptById(row.id);
|
const res = this.$route.fullPath.includes('design/display/demon')?await getDraftScriptByGroup(row.group):await getScriptById(row.id);
|
||||||
let newMemberList = [];
|
let newMemberList = [];
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
if (res.data.playerVOList && res.data.playerVOList.length > 0) {
|
if (res.data.playerVOList && res.data.playerVOList.length > 0) {
|
||||||
|
@ -258,6 +258,7 @@ export default {
|
|||||||
|
|
||||||
await this.setWindowSize();
|
await this.setWindowSize();
|
||||||
await this.initLoadData();
|
await this.initLoadData();
|
||||||
|
this.switchMode('');
|
||||||
},
|
},
|
||||||
async beforeDestroy() {
|
async beforeDestroy() {
|
||||||
await this.clearAllTimer();
|
await this.clearAllTimer();
|
||||||
@ -480,7 +481,8 @@ export default {
|
|||||||
},
|
},
|
||||||
async runAddRolesLoadShow() {
|
async runAddRolesLoadShow() {
|
||||||
// this.$refs.addQuest.doShow();
|
// this.$refs.addQuest.doShow();
|
||||||
const row={id: this.$route.query.scriptId};
|
// const row={id: this.$route.query.scriptId};
|
||||||
|
const row={group: this.$route.query.group,id: this.$route.query.scriptId};
|
||||||
this.$refs.addQuest.handleLoad(1, row);
|
this.$refs.addQuest.handleLoad(1, row);
|
||||||
},
|
},
|
||||||
// 选择脚本
|
// 选择脚本
|
||||||
|
@ -10,7 +10,8 @@
|
|||||||
<el-button v-if="isShowScheduling" type="primary" @click="jumpScheduling">{{ $t('display.demon.dispatchingPlan') }}</el-button>
|
<el-button v-if="isShowScheduling" type="primary" @click="jumpScheduling">{{ $t('display.demon.dispatchingPlan') }}</el-button>
|
||||||
<el-button type="jumpjlmap3d" @click="jumpjlmap3d">{{ jl3dname }}</el-button>
|
<el-button type="jumpjlmap3d" @click="jumpjlmap3d">{{ jl3dname }}</el-button>
|
||||||
<template v-if="isShowQuest">
|
<template v-if="isShowQuest">
|
||||||
<el-button type="danger" @click="handleQuitQuest">{{ $t('display.demon.exitScript') }}</el-button>
|
<!-- && !isDesignPlatform -->
|
||||||
|
<el-button v-if="!isDesignPlatform " type="danger" @click="handleQuitQuest">{{ $t('display.demon.exitScript') }}</el-button>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<el-button type="success" :disabled="isDisable" @click="selectBeginTime">{{ $t('display.demon.drivingByPlan') }}</el-button>
|
<el-button type="success" :disabled="isDisable" @click="selectBeginTime">{{ $t('display.demon.drivingByPlan') }}</el-button>
|
||||||
@ -81,6 +82,9 @@ export default {
|
|||||||
},
|
},
|
||||||
isShowScheduling() {
|
isShowScheduling() {
|
||||||
return this.$route.query.prdType == '05';
|
return this.$route.query.prdType == '05';
|
||||||
|
},
|
||||||
|
isDesignPlatform(){
|
||||||
|
return this.$route.fullPath.includes('design/display/demon');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div slot="header" style="text-align: center;">
|
<div slot="header" style="text-align: center;">
|
||||||
<b>{{ $t('exam.courseName') + ': '+ courseModel.name }}</b>
|
<b>{{ $t('exam.courseName') + ': '+ courseModel.name }}</b>
|
||||||
</div>
|
</div>
|
||||||
<div style=" margin:50px" :style="{ height: height - 150 +'px' }">
|
<div style=" margin:50px" :style="{ height: height - 190 +'px' }">
|
||||||
<el-tabs v-model="activeName">
|
<el-tabs v-model="activeName">
|
||||||
<el-tab-pane :label="this.$t('exam.itemList')" name="first">
|
<el-tab-pane :label="this.$t('exam.itemList')" name="first">
|
||||||
<div v-if="courseModel.treeList.length != 0" :style="{ height: height - 230 +'px' }">
|
<div v-if="courseModel.treeList.length != 0" :style="{ height: height - 230 +'px' }">
|
||||||
|
@ -131,6 +131,12 @@ export default {
|
|||||||
document.getElementById(this.canvasId).oncontextmenu = function (e) {
|
document.getElementById(this.canvasId).oncontextmenu = function (e) {
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
// 默认个人地图绘制可以滚轮放大缩小 其他地图显示不允许此操作
|
||||||
|
const path = window.location.href;
|
||||||
|
let flag = false;
|
||||||
|
if (path.includes('design/userlist/map/draw')) {
|
||||||
|
flag = true;
|
||||||
|
}
|
||||||
|
|
||||||
Vue.prototype.$jlmap = new Jlmap({
|
Vue.prototype.$jlmap = new Jlmap({
|
||||||
dom: document.getElementById(this.canvasId),
|
dom: document.getElementById(this.canvasId),
|
||||||
@ -142,7 +148,8 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
scaleRate: 1,
|
scaleRate: 1,
|
||||||
offsetX: 0,
|
offsetX: 0,
|
||||||
offsetY: 0
|
offsetY: 0,
|
||||||
|
zoomOnMouseWheel: flag
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
dataLoaded: this.handleDataLoaded,
|
dataLoaded: this.handleDataLoaded,
|
||||||
@ -283,7 +290,11 @@ export default {
|
|||||||
.zoom-view {
|
.zoom-view {
|
||||||
// position: fixed;
|
// position: fixed;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: 28px;
|
bottom: 0;
|
||||||
|
background: #fff;
|
||||||
|
padding-top: 5px;
|
||||||
|
height: 42px;
|
||||||
|
border-bottom: 1px #f3f3f3 solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
/deep/ {
|
/deep/ {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-card>
|
<el-card style="height: 100%; overflow-y: auto;">
|
||||||
<div slot="header" style="text-align: center;">
|
<div slot="header" style="text-align: center;">
|
||||||
<b>{{ $t('lesson.courseName') + ': '+ name }}</b>
|
<b>{{ $t('lesson.courseName') + ': '+ name }}</b>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="card-box">
|
<div class="card-box steps">
|
||||||
<el-steps class="steps" :active="display">
|
<!-- class="steps" -->
|
||||||
|
<el-steps :active="display">
|
||||||
<el-step :title="this.$t('lesson.trainingSequence')" icon="el-icon-edit-outline" />
|
<el-step :title="this.$t('lesson.trainingSequence')" icon="el-icon-edit-outline" />
|
||||||
<el-step title="" icon="el-icon-upload" />
|
<el-step title="" icon="el-icon-upload" />
|
||||||
</el-steps>
|
</el-steps>
|
||||||
<el-card class="forms">
|
<el-card class="forms">
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{height: height -60 + 'px'}">
|
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{height: height -60-30 + 'px'}">
|
||||||
<el-tree
|
<el-tree
|
||||||
ref="lessonTree"
|
ref="lessonTree"
|
||||||
:data="treeData"
|
:data="treeData"
|
||||||
@ -82,14 +83,23 @@ export default {
|
|||||||
},
|
},
|
||||||
allowDrop(draggingNode, dropNode, type) {
|
allowDrop(draggingNode, dropNode, type) {
|
||||||
if (draggingNode && draggingNode.data.type === 'Chapter') {
|
if (draggingNode && draggingNode.data.type === 'Chapter') {
|
||||||
return dropNode && draggingNode.parent == dropNode.parent && (
|
// debugger;
|
||||||
dropNode.data.type === 'Chapter' && type !== 'Inner');
|
return dropNode && (dropNode.data.type === 'Chapter');
|
||||||
} else if (draggingNode && draggingNode.data.type === 'Training') {
|
// return dropNode && draggingNode.parent == dropNode.parent && (
|
||||||
return dropNode && draggingNode.parent == dropNode.parent && (
|
// dropNode.data.type === 'Chapter' && type !== 'Inner');
|
||||||
dropNode.data.type === 'Training' && type !== 'Inner');
|
}
|
||||||
|
else if (draggingNode && draggingNode.data.type === 'Training') {
|
||||||
|
// dropNode.data.type === 'Chapter' ||
|
||||||
|
return dropNode && (dropNode.data.type === 'Training' && type !== 'inner' && draggingNode.parent == dropNode.parent );
|
||||||
|
// return dropNode && draggingNode.parent == dropNode.parent && (
|
||||||
|
// dropNode.data.type === 'Training' && type !== 'Inner');
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
allowDrag(draggingNode) {
|
allowDrag(draggingNode) {
|
||||||
|
// debugger;
|
||||||
return draggingNode && (draggingNode.data.type === 'Chapter' || draggingNode.data.type === 'Training');
|
return draggingNode && (draggingNode.data.type === 'Chapter' || draggingNode.data.type === 'Training');
|
||||||
},
|
},
|
||||||
getLeesonId(node) {
|
getLeesonId(node) {
|
||||||
|
@ -148,6 +148,9 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.draftContext {
|
.draftContext {
|
||||||
// float: left;
|
width:100%;
|
||||||
|
}
|
||||||
|
.mainContext{
|
||||||
|
display: -webkit-box;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog v-dialogDrag :title="title" :visible.sync="dialogVisible" width="25%" :before-close="handleClose" center>
|
<el-dialog
|
||||||
|
v-dialogDrag
|
||||||
|
:title="title"
|
||||||
|
:visible.sync="dialogVisible"
|
||||||
|
width="25%"
|
||||||
|
:before-close="handleClose"
|
||||||
|
center
|
||||||
|
>
|
||||||
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
|
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button v-loading="loading" type="primary" @click="doSave">{{ $t('global.confirm') }}</el-button>
|
<el-button v-loading="loading" type="primary" @click="doSave">{{ $t('global.confirm') }}</el-button>
|
||||||
@ -32,7 +39,14 @@ export default {
|
|||||||
const form = {
|
const form = {
|
||||||
labelWidth: '120px',
|
labelWidth: '120px',
|
||||||
items: [
|
items: [
|
||||||
{ prop: 'skinCode', label: this.$t('lesson.skinType'), type: 'select', required: true, options: this.skinCodeList, disabled: true }
|
{
|
||||||
|
prop: 'skinCode',
|
||||||
|
label: this.$t('lesson.skinType'),
|
||||||
|
type: 'select',
|
||||||
|
required: true,
|
||||||
|
options: this.skinCodeList,
|
||||||
|
disabled: true
|
||||||
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
return form;
|
return form;
|
||||||
@ -40,7 +54,11 @@ export default {
|
|||||||
rules() {
|
rules() {
|
||||||
const crules = {
|
const crules = {
|
||||||
skinCode: [
|
skinCode: [
|
||||||
{ required: true, message: this.$t('rules.inputSkinType'), trigger: 'change' }
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$t('rules.inputSkinType'),
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
return crules;
|
return crules;
|
||||||
@ -77,13 +95,19 @@ export default {
|
|||||||
const self = this;
|
const self = this;
|
||||||
this.$refs.dataform.validateForm(() => {
|
this.$refs.dataform.validateForm(() => {
|
||||||
if (this.isShow) {
|
if (this.isShow) {
|
||||||
this.$confirm(this.$t('lesson.wellClearOperate'), this.$t('global.tips'), {
|
this.$confirm(
|
||||||
|
this.$t('lesson.wellClearOperate'),
|
||||||
|
this.$t('global.tips'),
|
||||||
|
{
|
||||||
confirmButtonText: this.$t('global.confirm'),
|
confirmButtonText: this.$t('global.confirm'),
|
||||||
cancelButtonText: this.$t('global.cancel'),
|
cancelButtonText: this.$t('global.cancel'),
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
self.create();
|
self.create();
|
||||||
}).catch(() => { });
|
})
|
||||||
|
.catch(() => {});
|
||||||
} else {
|
} else {
|
||||||
self.create();
|
self.create();
|
||||||
}
|
}
|
||||||
@ -92,14 +116,21 @@ export default {
|
|||||||
create() {
|
create() {
|
||||||
const self = this;
|
const self = this;
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
addTrainingRulesList(this.formModel.skinCode, OperationList[this.formModel.skinCode].list).then(response => {
|
addTrainingRulesList(
|
||||||
|
this.formModel.skinCode,
|
||||||
|
OperationList[this.formModel.skinCode].list
|
||||||
|
)
|
||||||
|
.then(response => {
|
||||||
self.loading = false;
|
self.loading = false;
|
||||||
self.$message.success(this.$t('lesson.batchCreateSuccess'));
|
self.$message.success(this.$t('lesson.batchCreateSuccess'));
|
||||||
self.handleClose();
|
self.handleClose();
|
||||||
self.$emit('reloadTable'); // 刷新列表
|
self.$emit('reloadTable'); // 刷新列表
|
||||||
}).catch(error => {
|
})
|
||||||
|
.catch(error => {
|
||||||
self.loading = false;
|
self.loading = false;
|
||||||
self.$message.error(`${this.$('error.batchCreateFailed')}:${error.message}`);
|
self.$message.error(
|
||||||
|
`${this.$('error.batchCreateFailed')}:${error.message}`
|
||||||
|
);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleClose() {
|
handleClose() {
|
||||||
|
@ -200,7 +200,7 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.formModel = {
|
this.formModel = {
|
||||||
skinCode: this.$route.query.skinCode
|
skinCode: this.$route.query.skinCode
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
repliceName(fieldValue, enumList) {
|
repliceName(fieldValue, enumList) {
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="height: 100%; overflow-y: auto;">
|
||||||
|
<!-- <div style="height: calc(100% - 80px); overflow-y: auto;"> -->
|
||||||
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
||||||
|
<!-- </div> -->
|
||||||
<training-edit ref="create" type="ADD" @reloadTable="reloadTable" />
|
<training-edit ref="create" type="ADD" @reloadTable="reloadTable" />
|
||||||
<training-edit ref="edit" type="EDIT" @reloadTable="reloadTable" />
|
<training-edit ref="edit" type="EDIT" @reloadTable="reloadTable" />
|
||||||
<add-batch ref="addBatch" @reloadTable="reloadTable" />
|
<add-batch ref="addBatch" @reloadTable="reloadTable" />
|
||||||
@ -14,7 +16,11 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getTrainingRulesList, deleteTrainingRulesData, getPlaceholderList } from '@/api/management/operation';
|
import {
|
||||||
|
getTrainingRulesList,
|
||||||
|
deleteTrainingRulesData,
|
||||||
|
getPlaceholderList
|
||||||
|
} from '@/api/management/operation';
|
||||||
import { getSkinCodeList } from '@/api/management/mapskin';
|
import { getSkinCodeList } from '@/api/management/mapskin';
|
||||||
import TrainingEdit from './addEdit';
|
import TrainingEdit from './addEdit';
|
||||||
import AddBatch from './addBatch';
|
import AddBatch from './addBatch';
|
||||||
@ -55,7 +61,6 @@ export default {
|
|||||||
label: this.$t('lesson.trainingName')
|
label: this.$t('lesson.trainingName')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
queryList: {
|
queryList: {
|
||||||
query: this.getList,
|
query: this.getList,
|
||||||
@ -66,28 +71,56 @@ export default {
|
|||||||
title: this.$t('lesson.trainingName'),
|
title: this.$t('lesson.trainingName'),
|
||||||
prop: 'trainingName',
|
prop: 'trainingName',
|
||||||
type: 'replicText',
|
type: 'replicText',
|
||||||
columnValue: (row) => { return this.repliceName(row.trainingName, this.placeholderMap[row.trainingType]); }
|
columnValue: row => {
|
||||||
|
return this.repliceName(
|
||||||
|
row.trainingName,
|
||||||
|
this.placeholderMap[row.trainingType]
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('lesson.skinType'),
|
title: this.$t('lesson.skinType'),
|
||||||
prop: 'skinCode',
|
prop: 'skinCode',
|
||||||
type: 'tag',
|
type: 'tag',
|
||||||
columnValue: (row) => { return this.$convertField(row.skinCode, this.skinCodeList, ['code', 'name']); },
|
columnValue: row => {
|
||||||
tagType: (row) => { return ''; }
|
return this.$convertField(row.skinCode, this.skinCodeList, [
|
||||||
|
'code',
|
||||||
|
'name'
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
tagType: row => {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('lesson.trainingType'),
|
title: this.$t('lesson.trainingType'),
|
||||||
prop: 'trainingType',
|
prop: 'trainingType',
|
||||||
type: 'tag',
|
type: 'tag',
|
||||||
columnValue: (row) => { return this.$convertField(row.trainingType, this.trainingTypeList, ['code', 'name']); },
|
columnValue: row => {
|
||||||
tagType: (row) => { return 'success'; }
|
return this.$convertField(
|
||||||
|
row.trainingType,
|
||||||
|
this.trainingTypeList,
|
||||||
|
['code', 'name']
|
||||||
|
);
|
||||||
|
},
|
||||||
|
tagType: row => {
|
||||||
|
return 'success';
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('lesson.operationType'),
|
title: this.$t('lesson.operationType'),
|
||||||
prop: 'operateType',
|
prop: 'operateType',
|
||||||
type: 'tag',
|
type: 'tag',
|
||||||
columnValue: (row) => { return this.$convertField(row.operateType, this.trainingOperateTypeMap[row.trainingType], ['code', 'name']); },
|
columnValue: row => {
|
||||||
tagType: (row) => { return 'success'; }
|
return this.$convertField(
|
||||||
|
row.operateType,
|
||||||
|
this.trainingOperateTypeMap[row.trainingType],
|
||||||
|
['code', 'name']
|
||||||
|
);
|
||||||
|
},
|
||||||
|
tagType: row => {
|
||||||
|
return 'success';
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('lesson.minDuration'),
|
title: this.$t('lesson.minDuration'),
|
||||||
@ -102,7 +135,12 @@ export default {
|
|||||||
title: this.$t('lesson.trainingRemark'),
|
title: this.$t('lesson.trainingRemark'),
|
||||||
prop: 'trainingRemark',
|
prop: 'trainingRemark',
|
||||||
type: 'replicText',
|
type: 'replicText',
|
||||||
columnValue: (row) => { return this.repliceName(row.trainingRemark, this.placeholderMap[row.trainingType]); }
|
columnValue: row => {
|
||||||
|
return this.repliceName(
|
||||||
|
row.trainingRemark,
|
||||||
|
this.placeholderMap[row.trainingType]
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
@ -185,7 +223,10 @@ export default {
|
|||||||
this.$Dictionary.trainingType().then(list => {
|
this.$Dictionary.trainingType().then(list => {
|
||||||
this.trainingTypeList = list;
|
this.trainingTypeList = list;
|
||||||
list.forEach(elem => {
|
list.forEach(elem => {
|
||||||
this.queryForm.queryObject.trainingType.config.data.push({ value: elem.code, label: elem.name });
|
this.queryForm.queryObject.trainingType.config.data.push({
|
||||||
|
value: elem.code,
|
||||||
|
label: elem.name
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -195,7 +236,10 @@ export default {
|
|||||||
if (enumList && enumList.length > 0) {
|
if (enumList && enumList.length > 0) {
|
||||||
for (let i = 0; i < enumList.length; i++) {
|
for (let i = 0; i < enumList.length; i++) {
|
||||||
if (fieldValue.includes(`{${enumList[i].id}}`)) {
|
if (fieldValue.includes(`{${enumList[i].id}}`)) {
|
||||||
fieldValue = fieldValue.replace(`{${enumList[i].id}}`, `{${enumList[i].name}}`);
|
fieldValue = fieldValue.replace(
|
||||||
|
`{${enumList[i].id}}`,
|
||||||
|
`{${enumList[i].name}}`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return fieldValue;
|
return fieldValue;
|
||||||
@ -209,7 +253,10 @@ export default {
|
|||||||
if (form && form.trainingType) {
|
if (form && form.trainingType) {
|
||||||
form.operateType = '';
|
form.operateType = '';
|
||||||
this.trainingOperateTypeMap[form.trainingType].forEach(elem => {
|
this.trainingOperateTypeMap[form.trainingType].forEach(elem => {
|
||||||
this.queryForm.queryObject.operateType.config.data.push({ value: elem.code, label: elem.name });
|
this.queryForm.queryObject.operateType.config.data.push({
|
||||||
|
value: elem.code,
|
||||||
|
label: elem.name
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -220,7 +267,10 @@ export default {
|
|||||||
return res;
|
return res;
|
||||||
},
|
},
|
||||||
handleViewDetail(index, row) {
|
handleViewDetail(index, row) {
|
||||||
this.$router.push({ path: `${UrlConfig.design.trainingRuleDetail}`, query: { id: row.id, type: row.trainingType, skinCode: row.skinCode } });
|
this.$router.push({
|
||||||
|
path: `${UrlConfig.design.trainingRuleDetail}`,
|
||||||
|
query: { id: row.id, type: row.trainingType, skinCode: row.skinCode }
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
handleEdit(index, row) {
|
handleEdit(index, row) {
|
||||||
@ -240,22 +290,28 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
handleDelete(index, row) {
|
handleDelete(index, row) {
|
||||||
this.$confirm(this.$t('lesson.wellDelTrainingRule'), this.$t('global.tips'), {
|
this.$confirm(
|
||||||
|
this.$t('lesson.wellDelTrainingRule'),
|
||||||
|
this.$t('global.tips'),
|
||||||
|
{
|
||||||
confirmButtonText: this.$t('global.confirm'),
|
confirmButtonText: this.$t('global.confirm'),
|
||||||
cancelButtonText: this.$t('global.cancel'),
|
cancelButtonText: this.$t('global.cancel'),
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}
|
||||||
deleteTrainingRulesData(row.id).then(response => {
|
).then(() => {
|
||||||
|
deleteTrainingRulesData(row.id)
|
||||||
|
.then(response => {
|
||||||
this.$message.success(this.$t('lesson.deleteSuccess'));
|
this.$message.success(this.$t('lesson.deleteSuccess'));
|
||||||
this.reloadTable();
|
this.reloadTable();
|
||||||
}).catch(() => {
|
})
|
||||||
|
.catch(() => {
|
||||||
this.reloadTable();
|
this.reloadTable();
|
||||||
this.$messageBox(this.$t('error.deleteFailed'));
|
this.$messageBox(this.$t('error.deleteFailed'));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
turnback() {
|
turnback() {
|
||||||
this.$router.go(-1)
|
this.$router.go(-1);
|
||||||
},
|
},
|
||||||
reloadTable() {
|
reloadTable() {
|
||||||
this.queryList.reload();
|
this.queryList.reload();
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog v-dialogDrag :title="title" :visible.sync="dialogVisible" width="25%" :before-close="handleClose" center>
|
<el-dialog
|
||||||
|
v-dialogDrag
|
||||||
|
:title="title"
|
||||||
|
:visible.sync="dialogVisible"
|
||||||
|
width="25%"
|
||||||
|
:before-close="handleClose"
|
||||||
|
center
|
||||||
|
>
|
||||||
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
|
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button v-loading="loading" type="primary" @click="doSave">{{ $t('global.confirm') }}</el-button>
|
<el-button v-loading="loading" type="primary" @click="doSave">{{ $t('global.confirm') }}</el-button>
|
||||||
@ -31,8 +38,20 @@ export default {
|
|||||||
const form = {
|
const form = {
|
||||||
labelWidth: '120px',
|
labelWidth: '120px',
|
||||||
items: [
|
items: [
|
||||||
{ prop: 'skinCodeFrom', label: this.$t('lesson.skinTypeFrom'), type: 'select', required: true, options: this.skinCodeList },
|
{
|
||||||
{ prop: 'skinCodeTo', label: this.$t('lesson.skinTypeTo'), type: 'select', required: true, options: this.skinCodeList }
|
prop: 'skinCodeFrom',
|
||||||
|
label: this.$t('lesson.skinTypeFrom'),
|
||||||
|
type: 'select',
|
||||||
|
required: true,
|
||||||
|
options: this.skinCodeList
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'skinCodeTo',
|
||||||
|
label: this.$t('lesson.skinTypeTo'),
|
||||||
|
type: 'select',
|
||||||
|
required: true,
|
||||||
|
options: this.skinCodeList
|
||||||
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
return form;
|
return form;
|
||||||
@ -40,10 +59,18 @@ export default {
|
|||||||
rules() {
|
rules() {
|
||||||
const crules = {
|
const crules = {
|
||||||
skinCodeFrom: [
|
skinCodeFrom: [
|
||||||
{ required: true, message: this.$t('rules.inputSkinType'), trigger: 'change' }
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$t('rules.inputSkinType'),
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
],
|
],
|
||||||
skinCodeTo: [
|
skinCodeTo: [
|
||||||
{ required: true, message: this.$t('rules.inputSkinType'), trigger: 'change' }
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$t('rules.inputSkinType'),
|
||||||
|
trigger: 'change'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
return crules;
|
return crules;
|
||||||
@ -87,14 +114,18 @@ export default {
|
|||||||
create() {
|
create() {
|
||||||
const self = this;
|
const self = this;
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
postOperateSaveAs(this.formModel.skinCodeFrom, this.formModel.skinCodeTo).then(response => {
|
postOperateSaveAs(this.formModel.skinCodeFrom, this.formModel.skinCodeTo)
|
||||||
|
.then(response => {
|
||||||
self.loading = false;
|
self.loading = false;
|
||||||
self.$message.success(this.$t('lesson.batchCreateSuccess'));
|
self.$message.success(this.$t('lesson.batchCreateSuccess'));
|
||||||
self.handleClose();
|
self.handleClose();
|
||||||
self.$emit('reloadTable'); // 刷新列表
|
self.$emit('reloadTable'); // 刷新列表
|
||||||
}).catch(error => {
|
})
|
||||||
|
.catch(error => {
|
||||||
self.loading = false;
|
self.loading = false;
|
||||||
self.$message.error(`${this.$('error.batchCreateFailed')}:${error.message}`);
|
self.$message.error(
|
||||||
|
`${this.$('error.batchCreateFailed')}:${error.message}`
|
||||||
|
);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleClose() {
|
handleClose() {
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div style="height: 100%; overflow-y: auto;">
|
||||||
|
<!-- <div style="height: calc(100% - 80px); overflow-y: auto;"> -->
|
||||||
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
||||||
|
<!-- </div> -->
|
||||||
<training-draft
|
<training-draft
|
||||||
ref="draftTrain"
|
ref="draftTrain"
|
||||||
:skin-code-list="skinCodeList"
|
:skin-code-list="skinCodeList"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="login-container" :style="{'background-image': 'url('+bgImg+')'}">
|
<div class="login-container" :style="{'background-image': 'url('+bgImg+')'}">
|
||||||
<div v-if="project==='xty'" class="text-box">{{ title }}</div>
|
<div v-if="project.endsWith('xty')" class="text-box">{{ title }}</div>
|
||||||
<div class="language_box">
|
<div class="language_box">
|
||||||
<el-tooltip effect="dark" :content="this.$t('login.clickSwitchLanguage')" placement="bottom-end">
|
<el-tooltip effect="dark" :content="this.$t('login.clickSwitchLanguage')" placement="bottom-end">
|
||||||
<el-button class="language_btn" type="text" @click="handleLanguage">{{ language }}</el-button>
|
<el-button class="language_btn" type="text" @click="handleLanguage">{{ language }}</el-button>
|
||||||
@ -131,7 +131,7 @@ export default {
|
|||||||
password: ''
|
password: ''
|
||||||
},
|
},
|
||||||
loginRules: {
|
loginRules: {
|
||||||
username: [{ required: true, trigger: 'blur', validator: validateUsername }, { required: true, trigger: 'change', validator: validateUsername }],
|
username: [{ required: true, trigger: 'blur', validator: validateUsername }],
|
||||||
password: [{ required: true, trigger: 'blur', validator: validatePass }]
|
password: [{ required: true, trigger: 'blur', validator: validatePass }]
|
||||||
},
|
},
|
||||||
loading: false,
|
loading: false,
|
||||||
@ -187,7 +187,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
computedAttribute() {
|
computedAttribute() {
|
||||||
if (this.project === 'design') {
|
if (this.project.startsWith('design')) {
|
||||||
this.cookiesName = 'UserDesignName';
|
this.cookiesName = 'UserDesignName';
|
||||||
this.cookiesToken = 'UserDesignToken';
|
this.cookiesToken = 'UserDesignToken';
|
||||||
this.modelType = 'design';
|
this.modelType = 'design';
|
||||||
@ -238,7 +238,7 @@ export default {
|
|||||||
this.clearTimer(this.checkLogin);
|
this.clearTimer(this.checkLogin);
|
||||||
this.checkLogin = setTimeout(() => {
|
this.checkLogin = setTimeout(() => {
|
||||||
checkLoginStatus(self.sessionId).then(response => {
|
checkLoginStatus(self.sessionId).then(response => {
|
||||||
if (this.project === 'design') {
|
if (this.project.startsWith('design')) {
|
||||||
setDesignToken(response.data.token);
|
setDesignToken(response.data.token);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
@ -245,11 +245,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -255,11 +255,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
<div class="point-section">
|
<div class="point-section">
|
||||||
<template v-for="(point, index) in formModel[item.prop]">
|
<template v-for="(point, index) in formModel[item.prop]">
|
||||||
<div :key="index" style="overflow: hidden;">
|
<div :key="index" style="overflow: hidden;">
|
||||||
|
<span style="display: table; margin-right: 3px; font-size: 14px; float: left; line-height: 28px;">{{ index == 0 ? '(起点)' : index == formModel[item.prop].length - 1 ? '(终点)' : `(中点${index})` }}</span>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label=""
|
label=""
|
||||||
:prop="'points[' + index + '].x'"
|
:prop="'points[' + index + '].x'"
|
||||||
@ -120,7 +121,7 @@
|
|||||||
label=""
|
label=""
|
||||||
:prop="'points[' + index + '].y'"
|
:prop="'points[' + index + '].y'"
|
||||||
style="display: table; float: left; margin-right: 5px;"
|
style="display: table; float: left; margin-right: 5px;"
|
||||||
label-width="10px"
|
label-width="4px"
|
||||||
>
|
>
|
||||||
<el-input-number v-model="point.y" :disabled="item.pointDisabled" />
|
<el-input-number v-model="point.y" :disabled="item.pointDisabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -136,6 +137,7 @@
|
|||||||
:disabled="index == 0 || index == formModel[item.prop].length - 1"
|
:disabled="index == 0 || index == formModel[item.prop].length - 1"
|
||||||
circle
|
circle
|
||||||
class="point-button"
|
class="point-button"
|
||||||
|
style="margin-left: 4px;"
|
||||||
@click="item.delPoint(index)"
|
@click="item.delPoint(index)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -107,6 +107,7 @@
|
|||||||
<div class="point-section" :style="{ width: `calc(100% - 10px - ${item.width})` }">
|
<div class="point-section" :style="{ width: `calc(100% - 10px - ${item.width})` }">
|
||||||
<template v-for="(point, index) in formModel[item.prop]">
|
<template v-for="(point, index) in formModel[item.prop]">
|
||||||
<div :key="index" style="overflow: hidden;">
|
<div :key="index" style="overflow: hidden;">
|
||||||
|
<span style="display: table; margin-right: 3px; font-size: 14px; float: left; line-height: 28px;" :style="{'margin-right': index == 0 || index == formModel[item.prop].length - 1 ? '9px' : '5px'}">{{ index == 0 ? '起 点' : index == formModel[item.prop].length - 1 ? '终 点' : `中点${index}` }}</span>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
label=""
|
label=""
|
||||||
:prop="'points[' + index + '].x'"
|
:prop="'points[' + index + '].x'"
|
||||||
@ -123,7 +124,7 @@
|
|||||||
label=""
|
label=""
|
||||||
:prop="'points[' + index + '].y'"
|
:prop="'points[' + index + '].y'"
|
||||||
style="display: table; float: left; margin-right: 5px;"
|
style="display: table; float: left; margin-right: 5px;"
|
||||||
label-width="10px"
|
label-width="4px"
|
||||||
>
|
>
|
||||||
<el-input-number v-model="point.y" :disabled="item.pointDisabled" />
|
<el-input-number v-model="point.y" :disabled="item.pointDisabled" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -139,6 +140,7 @@
|
|||||||
:disabled="index == 0 || index == formModel[item.prop].length - 1"
|
:disabled="index == 0 || index == formModel[item.prop].length - 1"
|
||||||
circle
|
circle
|
||||||
class="point-button"
|
class="point-button"
|
||||||
|
style="margin-left: 4px;"
|
||||||
@click="item.delPoint(index)"
|
@click="item.delPoint(index)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -247,9 +247,4 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -229,9 +229,4 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -398,6 +398,19 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/deep/ .button_box{
|
||||||
|
// width: 100%;
|
||||||
|
// background: #f0f0f0;
|
||||||
|
// overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
background: #ffffff;
|
||||||
|
overflow: hidden;
|
||||||
|
border-top: 1px #f3f1f1 solid;
|
||||||
|
box-shadow: 4px 7px 10px #565656;
|
||||||
|
border-radius: 0;
|
||||||
|
border-bottom: 1px transparent solid;
|
||||||
|
}
|
||||||
|
|
||||||
/deep/ .map-draft-group {
|
/deep/ .map-draft-group {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 6px 5px;
|
margin: 6px 5px;
|
||||||
|
@ -225,11 +225,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -216,11 +216,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ export default {
|
|||||||
{ prop: 'code', label: this.$t('map.lineCoding'), type: 'select', optionLabel: 'code', optionValue: 'code', options: this.lineList, change: true, deviceChange: this.deviceChange },
|
{ prop: 'code', label: this.$t('map.lineCoding'), type: 'select', optionLabel: 'code', optionValue: 'code', options: this.lineList, change: true, deviceChange: this.deviceChange },
|
||||||
{ prop: 'type', label: this.$t('map.lineType'), type: 'select', optionLabel: 'name', optionValue: 'code', options: this.LineTypeList },
|
{ prop: 'type', label: this.$t('map.lineType'), type: 'select', optionLabel: 'name', optionValue: 'code', options: this.LineTypeList },
|
||||||
{ prop: 'width', label: this.$t('map.lineWidth'), type: 'number', min: 1, placeholder: 'px' },
|
{ prop: 'width', label: this.$t('map.lineWidth'), type: 'number', min: 1, placeholder: 'px' },
|
||||||
{ prop: 'points', label: this.$t('map.segmentCoordinates'), type: 'points', width: '120px', isHidden: !this.isPointsShow, addPoint: this.addPoint, delPoint: this.delPoint }
|
{ prop: 'points', label: this.$t('map.segmentCoordinates'), type: 'points', width: '100px', isHidden: !this.isPointsShow, addPoint: this.addPoint, delPoint: this.delPoint }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
map: {
|
map: {
|
||||||
@ -258,11 +258,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.view-control {
|
.view-control {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -525,12 +525,6 @@ export default {
|
|||||||
height: calc(100% - 100px);
|
height: calc(100% - 100px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@
|
|||||||
<el-tab-pane class="view-control" label="批量删除" name="five" :style="{ height: cardHeight + 30 +'px' }">
|
<el-tab-pane class="view-control" label="批量删除" name="five" :style="{ height: cardHeight + 30 +'px' }">
|
||||||
<div class="link_box_select">
|
<div class="link_box_select">
|
||||||
<span style="margin-right: 12px;">选择link:</span>
|
<span style="margin-right: 12px;">选择link:</span>
|
||||||
<el-select v-model="linkCode" filterable size="mini">
|
<el-select v-model="linkCode" filterable multiple size="mini">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in linkList"
|
v-for="item in linkList"
|
||||||
:key="item.code"
|
:key="item.code"
|
||||||
@ -225,6 +225,7 @@ export default {
|
|||||||
},
|
},
|
||||||
linkCode: '',
|
linkCode: '',
|
||||||
tableData: [],
|
tableData: [],
|
||||||
|
oldPoint: [], // 区段未修改前 坐标
|
||||||
addModel: {
|
addModel: {
|
||||||
code: '',
|
code: '',
|
||||||
splitNumber: 2,
|
splitNumber: 2,
|
||||||
@ -343,7 +344,7 @@ export default {
|
|||||||
{ prop: 'segmentationPosition.y', firstLevel: 'segmentationPosition', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '20px', disabled: true }
|
{ prop: 'segmentationPosition.y', firstLevel: 'segmentationPosition', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '20px', disabled: true }
|
||||||
] },
|
] },
|
||||||
{ prop: 'isCurve', label: this.$t('map.isCurve'), type: 'checkbox', isHidden: !this.isSectionType },
|
{ prop: 'isCurve', label: this.$t('map.isCurve'), type: 'checkbox', isHidden: !this.isSectionType },
|
||||||
{ prop: 'points', label: this.$t('map.segmentCoordinates'), type: 'points', width: '140px', isHidden: !this.isPointsShow, pointDisabled: this.pointDisabledName, addPoint: this.addPoint, delPoint: this.delPoint }
|
{ prop: 'points', label: this.$t('map.segmentCoordinates'), type: 'points', width: '100px', isHidden: !this.isPointsShow, pointDisabled: this.pointDisabledName, addPoint: this.addPoint, delPoint: this.delPoint }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
map: {
|
map: {
|
||||||
@ -565,6 +566,7 @@ export default {
|
|||||||
this.editModel.logicSectionNum = selected.type === '01' ? selected.logicSectionNum : [0];
|
this.editModel.logicSectionNum = selected.type === '01' ? selected.logicSectionNum : [0];
|
||||||
this.editModel.isSegmentation = selected.isSegmentation || false;
|
this.editModel.isSegmentation = selected.isSegmentation || false;
|
||||||
this.editModel.points = JSON.parse(JSON.stringify(selected.points));
|
this.editModel.points = JSON.parse(JSON.stringify(selected.points));
|
||||||
|
this.oldPoint = JSON.parse(JSON.stringify(selected.points));
|
||||||
|
|
||||||
this.addModel.splitOffsetMax = Math.sqrt(new JTriangle(selected.points[0], selected.points[selected.points.length - 1]).abspowz);
|
this.addModel.splitOffsetMax = Math.sqrt(new JTriangle(selected.points[0], selected.points[selected.points.length - 1]).abspowz);
|
||||||
this.addModel.splitOffset = this.addModel.splitOffsetMax / 2;
|
this.addModel.splitOffset = this.addModel.splitOffsetMax / 2;
|
||||||
@ -836,7 +838,6 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
console.log(models, remove);
|
|
||||||
|
|
||||||
const _that = this;
|
const _that = this;
|
||||||
this.$confirm(this.$t('tip.confirmBatchGeneration'), this.$t('tip.hint'), {
|
this.$confirm(this.$t('tip.confirmBatchGeneration'), this.$t('tip.hint'), {
|
||||||
@ -865,7 +866,7 @@ export default {
|
|||||||
this.$refs['dataform'].validate((valid) => {
|
this.$refs['dataform'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
const edits = [];
|
const edits = [];
|
||||||
const model = Object.assign({_type: 'Section'}, this.editModel);
|
const model = Object.assign({_type: 'Section'}, this.editModel); // 修改元素model
|
||||||
model.leftStopPointOffset = Number(model.leftStopPointOffset);
|
model.leftStopPointOffset = Number(model.leftStopPointOffset);
|
||||||
model.rightStopPointOffset = Number(model.rightStopPointOffset);
|
model.rightStopPointOffset = Number(model.rightStopPointOffset);
|
||||||
this.sectionList.forEach(section => {
|
this.sectionList.forEach(section => {
|
||||||
@ -874,10 +875,24 @@ export default {
|
|||||||
section.trainPosType = model.trainPosType;
|
section.trainPosType = model.trainPosType;
|
||||||
edits.push(section);
|
edits.push(section);
|
||||||
}
|
}
|
||||||
|
if (section.linkCode == model.linkCode && model.code != section.code) {
|
||||||
|
// debugger;
|
||||||
|
const lastIndex = this.oldPoint.length - 1;
|
||||||
|
if (this.oldPoint[0].x == section.points[section.points.length -1].x && this.oldPoint[0].y == section.points[section.points.length -1].y) {
|
||||||
|
section.points[section.points.length -1].x = model.points[0].x;
|
||||||
|
section.points[section.points.length -1].y = model.points[0].y;
|
||||||
|
}
|
||||||
|
if (this.oldPoint[lastIndex].x == section.points[0].x && this.oldPoint[lastIndex].y == section.points[0].y) {
|
||||||
|
section.points[0].x = model.points[model.points.length -1].x;
|
||||||
|
section.points[0].y = model.points[model.points.length -1].y;
|
||||||
|
}
|
||||||
|
edits.push(section);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
edits.push(model);
|
edits.push(model);
|
||||||
this.fieldS = '';
|
this.fieldS = '';
|
||||||
this.$emit('addOrUpdateMapModel', edits);
|
this.$emit('addOrUpdateMapModel', edits);
|
||||||
|
this.oldPoint = JSON.parse(JSON.stringify(model.points));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -1101,8 +1116,9 @@ export default {
|
|||||||
delRelevanceSection() {
|
delRelevanceSection() {
|
||||||
const selected = [];
|
const selected = [];
|
||||||
const switchList = [];
|
const switchList = [];
|
||||||
|
this.linkCode.forEach(linkCode => {
|
||||||
this.sectionList.forEach(section => {
|
this.sectionList.forEach(section => {
|
||||||
if (section.linkCode == this.linkCode) {
|
if (section.linkCode == linkCode) {
|
||||||
const selectedSection = this.$store.getters['map/getDeviceByCode'](section.code);
|
const selectedSection = this.$store.getters['map/getDeviceByCode'](section.code);
|
||||||
selected.push(selectedSection);
|
selected.push(selectedSection);
|
||||||
this.switchList.forEach(switchEle => {
|
this.switchList.forEach(switchEle => {
|
||||||
@ -1113,6 +1129,7 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
this.$confirm(this.$t('tip.confirmDeletion'), this.$t('tip.hint'), {
|
this.$confirm(this.$t('tip.confirmDeletion'), this.$t('tip.hint'), {
|
||||||
confirmButtonText: this.$t('tip.confirm'),
|
confirmButtonText: this.$t('tip.confirm'),
|
||||||
cancelButtonText: this.$t('tip.cancel'),
|
cancelButtonText: this.$t('tip.cancel'),
|
||||||
@ -1123,6 +1140,7 @@ export default {
|
|||||||
});
|
});
|
||||||
await this.$emit('delMapModel', selected);
|
await this.$emit('delMapModel', selected);
|
||||||
this.deviceSelect();
|
this.deviceSelect();
|
||||||
|
this.linkCode = '';
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.$message.info(this.$t('tip.cancelledDelete'));
|
this.$message.info(this.$t('tip.cancelledDelete'));
|
||||||
});
|
});
|
||||||
@ -1153,11 +1171,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.el-transfer {
|
.el-transfer {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
@ -420,9 +420,4 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -276,9 +276,4 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -246,9 +246,4 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -300,9 +300,4 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -171,15 +171,15 @@ export default {
|
|||||||
create() { // 一键生成道岔
|
create() { // 一键生成道岔
|
||||||
this.questionList = []; // 有问题区段列表
|
this.questionList = []; // 有问题区段列表
|
||||||
const models = [];
|
const models = [];
|
||||||
// const remove = [];
|
|
||||||
const linkObj = {};
|
const linkObj = {};
|
||||||
this.linkList.forEach(link => {
|
this.linkList.forEach(link => {
|
||||||
if (link && link.leftFdCode && link.leftSdCode) { // 左侧同时都有关联link
|
if (link && link.leftFdCode && link.leftSdCode) { // 左侧同时都有关联link
|
||||||
linkObj[`${link.code}`] = { name: '', num: 0 };
|
linkObj[`${link.code}`] = { name: '', num: 0 };
|
||||||
} else if (link && link.rightFdCode && link.rightSdCode) { // 右侧同时都有关联link
|
} else if (link && link.rightFdCode && link.rightSdCode) { // 右侧同时都有关联link
|
||||||
linkObj[`${link.code}`] = { name: '', num: 0 };
|
linkObj[`${link.code}`] = { name: '', num: 0 };
|
||||||
|
} else if (link && link.leftFdCode && !link.leftSdCode && link.rightFdCode && !link.rightSdCode) { // 左右正向link关联,侧向link不关联检测
|
||||||
|
linkObj[`${link.code}`] = { name: '', num: 0 };
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
this.sectionList.forEach(section => {
|
this.sectionList.forEach(section => {
|
||||||
for (const link in linkObj) {
|
for (const link in linkObj) {
|
||||||
@ -227,7 +227,7 @@ export default {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
const swch = this.findSwitchData(model.sectionACode, model.sectionBCode, model.sectionCCode);
|
const swch = this.findSwitchData(model.sectionACode, model.sectionBCode, model.sectionCCode);
|
||||||
!swch && models.push(model);
|
!swch && models.push(model); // 已有的道岔不在创建
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -273,6 +273,16 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
const createArr = [];
|
||||||
|
models.forEach((item) => {
|
||||||
|
const sectionA = this.$store.getters['map/getDeviceByCode'](item.sectionACode);
|
||||||
|
const sectionB = this.$store.getters['map/getDeviceByCode'](item.sectionBCode);
|
||||||
|
const sectionC = this.$store.getters['map/getDeviceByCode'](item.sectionCCode);
|
||||||
|
if (linkObj[sectionA.linkCode].num != 1 && linkObj[sectionB.linkCode].num != 1 && linkObj[sectionC.linkCode].num != 1 ) {
|
||||||
|
createArr.push(item);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// console.log(models, createArr, '创建道岔list');
|
||||||
this.$confirm(this.$t('tip.confirmBatchGeneration'), this.$t('tip.hint'), {
|
this.$confirm(this.$t('tip.confirmBatchGeneration'), this.$t('tip.hint'), {
|
||||||
confirmButtonText: this.$t('tip.confirm'),
|
confirmButtonText: this.$t('tip.confirm'),
|
||||||
cancelButtonText: this.$t('tip.cancel'),
|
cancelButtonText: this.$t('tip.cancel'),
|
||||||
@ -280,14 +290,11 @@ export default {
|
|||||||
}).then(() => {
|
}).then(() => {
|
||||||
for (const link in linkObj) {
|
for (const link in linkObj) {
|
||||||
if (linkObj[link].num == 1) {
|
if (linkObj[link].num == 1) {
|
||||||
this.questionList.push(`${this.$t('map.section')}${linkObj[link].name}${this.$t('tip.linkNoneSplit')}`);
|
this.questionList.push(`${this.$t('map.section')}${linkObj[link].name}${this.$t('tip.linkNoneSplit')}, ${this.$t('tip.createSwitchPortion')}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!this.questionList.length) { // 没有问题list 再去创建
|
this.$emit('addOrUpdateMapModel', createArr);
|
||||||
// this.$emit('delMapModel', remove);
|
this.createSwitchSection(createArr);
|
||||||
this.$emit('addOrUpdateMapModel', models);
|
|
||||||
this.createSwitchSection(models);
|
|
||||||
}
|
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.$message({
|
this.$message({
|
||||||
type: 'info',
|
type: 'info',
|
||||||
@ -485,11 +492,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.el-transfer {
|
.el-transfer {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
@ -236,11 +236,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -196,8 +196,15 @@ export default {
|
|||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
.button_box{
|
||||||
|
// width: 100%;
|
||||||
|
// background: #f0f0f0;
|
||||||
|
// overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #f0f0f0;
|
background: #ffffff;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
border-top: 1px #f3f1f1 solid;
|
||||||
|
box-shadow: 4px 7px 10px #565656;
|
||||||
|
border-radius: 0;
|
||||||
|
border-bottom: 1px transparent solid;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -298,11 +298,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/deep/ {
|
/deep/ {
|
||||||
.card .el-transfer-panel__filter{
|
.card .el-transfer-panel__filter{
|
||||||
|
@ -223,11 +223,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.button_box{
|
|
||||||
width: 100%;
|
|
||||||
background: #f0f0f0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.coordinate {
|
.coordinate {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ export default {
|
|||||||
queryForm: {
|
queryForm: {
|
||||||
labelWidth: '140px',
|
labelWidth: '140px',
|
||||||
reset: true,
|
reset: true,
|
||||||
|
leftSpan: 18,
|
||||||
queryObject: {
|
queryObject: {
|
||||||
'canDistribute': {
|
'canDistribute': {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@ -106,7 +107,7 @@ export default {
|
|||||||
type: ''
|
type: ''
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '打包详情',
|
name: this.$t('orderAuthor.packingDetails'),
|
||||||
handleClick: this.handleDetail,
|
handleClick: this.handleDetail,
|
||||||
type: '',
|
type: '',
|
||||||
showControl: (row) => { return !row.permissionType; }
|
showControl: (row) => { return !row.permissionType; }
|
||||||
@ -115,19 +116,19 @@ export default {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
actions: [
|
actions: [
|
||||||
{ text: this.$t('permission.permissionPack'), btnCode: 'employee_insert', handler: this.handlePermissionPack },
|
{ text: this.$t('permission.permissionPack'), btnCode: 'employee_insert', handler: this.handlePermissionPack }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
|
||||||
this.loadInitData();
|
|
||||||
},
|
|
||||||
watch: {
|
watch: {
|
||||||
'$route.params.mapId': function (val) {
|
'$route.params.mapId': function (val) {
|
||||||
this.$refs.queryListPage.refresh(true);
|
this.$refs.queryListPage.refresh(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
this.loadInitData();
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleRoleVest(index, row) {
|
handleRoleVest(index, row) {
|
||||||
this.$refs.selectRole.doShow(row.id);
|
this.$refs.selectRole.doShow(row.id);
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-card :style="{height: height+'px'}">
|
<el-card :style="{height: height+'px'}" style="overflow-y:scroll;padding-bottom:20px;">
|
||||||
<div class="runPlanHeader" style="width: 90%;margin-left:5%;margin-top:20px;display: inline-block;">
|
<div class="runPlanHeader" style="width: 90%;margin-left:5%;margin-top:20px;display: inline-block;">
|
||||||
<div class="runPlanList">{{$t('planMonitor.openRunPlan.runPlanList')}}</div>
|
<div class="runPlanList">{{$t('planMonitor.openRunPlan.runPlanList')}}</div>
|
||||||
<el-button size="small" type="primary" @click="handleCreate" class="createRunPlan" v-if="isCreate">{{$t('planMonitor.createRunningDiagram')}}</el-button>
|
<el-button size="small" type="primary" @click="handleCreate" class="createRunPlan" v-if="isCreate">{{$t('planMonitor.createRunningDiagram')}}</el-button>
|
||||||
|
80
src/views/publish/publishLesson/draft.vue
Normal file
80
src/views/publish/publishLesson/draft.vue
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogVisible" width="500px" :before-close="doClose" center>
|
||||||
|
<data-form ref="dataform" :form="form" :formModel="formModel" :rules="rules"></data-form>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="doCreate">{{$t('global.confirm')}}</el-button>
|
||||||
|
<el-button @click="doClose">{{$t('global.cancel')}}</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'PublishLessonDraft',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialogVisible: false,
|
||||||
|
cityList:[],
|
||||||
|
formModel:{
|
||||||
|
id:'',
|
||||||
|
remarks:'',
|
||||||
|
name:'',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
title: String
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
form() {
|
||||||
|
let form={
|
||||||
|
labelWidth: '150px',
|
||||||
|
items: [
|
||||||
|
{ prop: 'name', label: this.$t('publish.lessonName'), type: 'text', required: true},
|
||||||
|
{ prop: 'remarks', label: this.$t('publish.lessonIntroduction'), type: 'textarea', required: true,isAutoSize:{ minRows:1, maxRows:5 }},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
return form
|
||||||
|
},
|
||||||
|
rules() {
|
||||||
|
let crules ={
|
||||||
|
name:[
|
||||||
|
{ required: true, message: this.$t('rules.pleaseInputLessonName'), trigger: 'blur',max:100 },
|
||||||
|
{ required: true, message: this.$t('rules.pleaseInputLessonName'), trigger: 'change',max:100 },
|
||||||
|
],
|
||||||
|
remarks:[
|
||||||
|
{ required: true, message: this.$t('rules.pleaseLessonIntroduction'), trigger: 'blur',max:300 },
|
||||||
|
{ required: true, message: this.$t('rules.pleaseLessonIntroduction'), trigger: 'change',max:300 },
|
||||||
|
]
|
||||||
|
}
|
||||||
|
return crules
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
doShow(row) {
|
||||||
|
this.formModel.id=row.id;
|
||||||
|
this.formModel.remarks=row.remarks;
|
||||||
|
this.formModel.name=row.name;
|
||||||
|
this.dialogVisible = true
|
||||||
|
},
|
||||||
|
doCreate() {
|
||||||
|
let self = this
|
||||||
|
this.$refs.dataform.validateForm(() => {
|
||||||
|
self.$emit('create', Object.assign({}, this.formModel));
|
||||||
|
self.doClose()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
doClose() {
|
||||||
|
// this.$refs.dataform.resetForm();
|
||||||
|
this.isShow = false;
|
||||||
|
this.dialogVisible = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/deep/ .el-dialog--center .el-dialog__body{
|
||||||
|
padding: 15px 65px 10px 10px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,16 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
||||||
|
<update-operate ref='updateLesson' @create="handleUpdate" :title="$t('publish.updateLesson')">
|
||||||
|
</update-operate>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { publishLessonList, delPublishLesson, putLessonOnLine, putLessonOffLine } from '@/api/jmap/lesson';
|
import { publishLessonList, delPublishLesson, putLessonOnLine, putLessonOffLine,updatePublishLesson } from '@/api/jmap/lesson';
|
||||||
import { getSkinCodeList } from '@/api/management/mapskin';
|
import { getSkinCodeList } from '@/api/management/mapskin';
|
||||||
import localStore from 'storejs';
|
import localStore from 'storejs';
|
||||||
|
import UpdateOperate from './draft.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PublishMap',
|
name: 'PublishMap',
|
||||||
|
components:{
|
||||||
|
UpdateOperate
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
cityList: [],
|
cityList: [],
|
||||||
@ -74,6 +80,12 @@ export default {
|
|||||||
type: 'warning',
|
type: 'warning',
|
||||||
showControl: (row) => { return row.status == 1; }
|
showControl: (row) => { return row.status == 1; }
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: this.$t('global.edit'),
|
||||||
|
handleClick: this.handleEdit,
|
||||||
|
type: 'primary',
|
||||||
|
showControl: () => { return this.isShow != -1; }
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: this.$t('global.delete'),
|
name: this.$t('global.delete'),
|
||||||
handleClick: this.handleDelete,
|
handleClick: this.handleDelete,
|
||||||
@ -115,8 +127,17 @@ export default {
|
|||||||
},
|
},
|
||||||
// 编辑
|
// 编辑
|
||||||
handleEdit(index, row) {
|
handleEdit(index, row) {
|
||||||
|
this.$refs.updateLesson.doShow(row);
|
||||||
|
},
|
||||||
|
// 确认编辑
|
||||||
|
handleUpdate(data){
|
||||||
|
updatePublishLesson(data).then(response => {
|
||||||
|
this.reloadTable();
|
||||||
|
this.$message.success(this.$t('publish.updateSuccess'));
|
||||||
|
}).catch(() => {
|
||||||
|
this.$messageBox(this.$t('error.updateFailed'));
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
// 删除
|
// 删除
|
||||||
handleDelete(index, row) {
|
handleDelete(index, row) {
|
||||||
this.$confirm(this.$t('publish.wellDelType'), this.$t('global.tips'), {
|
this.$confirm(this.$t('publish.wellDelType'), this.$t('global.tips'), {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<el-dialog :title="title" :visible.sync="dialogVisible" width="500px" :before-close="doClose" center>
|
<el-dialog :title="title" :visible.sync="dialogVisible" width="500px" :before-close="doClose" center>
|
||||||
<data-form ref="dataform" :form="form" :formModel="formModel" :rules="rules"></data-form>
|
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" @click="doCreate">{{ $t('global.confirm') }}</el-button>
|
<el-button type="primary" @click="doCreate">{{ $t('global.confirm') }}</el-button>
|
||||||
<el-button @click="doClose">{{ $t('global.cancel') }}</el-button>
|
<el-button @click="doClose">{{ $t('global.cancel') }}</el-button>
|
||||||
@ -31,6 +31,10 @@
|
|||||||
// import { updatePublishMapName } from '@/api/jmap/map';
|
// import { updatePublishMapName } from '@/api/jmap/map';
|
||||||
export default {
|
export default {
|
||||||
name: 'PublishMapDraft',
|
name: 'PublishMapDraft',
|
||||||
|
props: {
|
||||||
|
title: String,
|
||||||
|
type: String
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
dialogVisible: false,
|
dialogVisible: false,
|
||||||
@ -38,88 +42,83 @@
|
|||||||
formModel: {
|
formModel: {
|
||||||
mapId: '',
|
mapId: '',
|
||||||
cityCode: '',
|
cityCode: '',
|
||||||
name:'',
|
name: ''
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
form() {
|
||||||
|
let form={};
|
||||||
|
if (this.type=='updateMapName') {
|
||||||
|
form={
|
||||||
|
labelWidth: '150px',
|
||||||
|
items: [
|
||||||
|
{ prop: 'name', label: this.$t('publish.mapName'), type: 'text', required: true}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
form={
|
||||||
|
labelWidth: '150px',
|
||||||
|
items: [
|
||||||
|
{ prop: 'cityCode', label: this.$t('publish.city'), type: 'select', required: true, options: this.cityList}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return form;
|
||||||
|
},
|
||||||
|
rules() {
|
||||||
|
let crules ={};
|
||||||
|
if (this.type=='updateMapName') {
|
||||||
|
crules ={
|
||||||
|
name: [
|
||||||
|
{ required: true, message: this.$t('rules.pleaseInputMapName'), trigger: 'blur', max: 100 },
|
||||||
|
{ required: true, message: this.$t('rules.pleaseInputMapName'), trigger: 'change', max: 100 }
|
||||||
|
]
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
crules ={
|
||||||
|
id: [
|
||||||
|
{ required: true, message: this.$t('rules.pleaseSelectCity'), trigger: 'change', max: 100 }
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return crules;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loadInitData();
|
this.loadInitData();
|
||||||
},
|
},
|
||||||
props: {
|
|
||||||
title: String,
|
|
||||||
type:String,
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
form() {
|
|
||||||
let form={};
|
|
||||||
if(this.type=="updateMapName"){
|
|
||||||
form={
|
|
||||||
labelWidth: '150px',
|
|
||||||
items: [
|
|
||||||
{ prop: 'name', label: this.$t('publish.mapName'), type: 'text', required: true},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
form={
|
|
||||||
labelWidth: '150px',
|
|
||||||
items: [
|
|
||||||
{ prop: 'cityCode', label: this.$t('publish.city'), type: 'select', required: true,options:this.cityList},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return form
|
|
||||||
},
|
|
||||||
rules() {
|
|
||||||
let crules ={};
|
|
||||||
if(this.type=="updateMapName"){
|
|
||||||
crules ={
|
|
||||||
name:[
|
|
||||||
{ required: true, message: this.$t('rules.pleaseInputMapName'), trigger: 'blur',max:100 },
|
|
||||||
{ required: true, message: this.$t('rules.pleaseInputMapName'), trigger: 'change',max:100 },
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
crules ={
|
|
||||||
id:[
|
|
||||||
{ required: true, message: this.$t('rules.pleaseSelectCity'), trigger: 'change',max:100 },
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return crules
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
async loadInitData() {
|
async loadInitData() {
|
||||||
this.cityList = [];
|
this.cityList = [];
|
||||||
let res=await this.$Dictionary.cityType();
|
const res=await this.$Dictionary.cityType();
|
||||||
this.cityList = res.map(elem => { return { value: elem.code, label: elem.name } });
|
this.cityList = res.map(elem => { return { value: elem.code, label: elem.name }; });
|
||||||
},
|
},
|
||||||
doShow(row) {
|
doShow(row) {
|
||||||
this.formModel.mapId=row.id;
|
this.formModel.mapId=row.id;
|
||||||
if(this.type=="updateMapName"){
|
if (this.type=='updateMapName') {
|
||||||
this.formModel.name=row.name;
|
this.formModel.name=row.name;
|
||||||
} else {
|
} else {
|
||||||
this.formModel.cityCode=row.cityCode;
|
this.formModel.cityCode=row.cityCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dialogVisible = true
|
this.dialogVisible = true;
|
||||||
},
|
},
|
||||||
doCreate() {
|
doCreate() {
|
||||||
let self = this
|
const self = this;
|
||||||
this.$refs.dataform.validateForm(() => {
|
this.$refs.dataform.validateForm(() => {
|
||||||
self.$emit('create', Object.assign({}, this.formModel));
|
self.$emit('create', Object.assign({}, this.formModel));
|
||||||
self.doClose()
|
self.doClose();
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
doClose() {
|
doClose() {
|
||||||
this.$refs.dataform.resetForm();
|
this.$refs.dataform.resetForm();
|
||||||
this.isShow = false;
|
this.isShow = false;
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// export default {
|
// export default {
|
||||||
// name: 'PublishMapDraft',
|
// name: 'PublishMapDraft',
|
||||||
// data() {
|
// data() {
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
||||||
<update-operate ref='updateMapName' @reloadTable="reloadTable" @create="handleUpdateMap" :title="$t('publish.updateMapName')" type="updateMapName">
|
<update-operate ref="updateMapName" :title="$t('publish.updateMapName')" type="updateMapName" @create="handleUpdateMap" />
|
||||||
</update-operate>
|
<update-operate ref="updateCityName" :title="$t('publish.updateCityName')" type="updateCityName" @create="handleCityUpdate" />
|
||||||
<update-operate ref='updateCityName' @reloadTable="reloadTable" @create="handleCityUpdate" :title="$t('publish.updateCityName')" type="updateCityName">
|
<set-project ref="setProject" @refresh="reloadTable" />
|
||||||
</update-operate>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getPublishMapList, delPublishMap, getPublishMapExport, putMapOnLine, putMapOffLine, updatePublishMapName, updatePublishMapCity } from '@/api/jmap/map';
|
import { getPublishMapList, delPublishMap, getPublishMapExport, putMapOnLine, putMapOffLine, updatePublishMapName, updatePublishMapCity } from '@/api/jmap/map';
|
||||||
import { getSkinCodeList } from '@/api/management/mapskin';
|
import { getSkinCodeList } from '@/api/management/mapskin';
|
||||||
import { UrlConfig } from '@/router/index';
|
|
||||||
import localStore from 'storejs';
|
import localStore from 'storejs';
|
||||||
import UpdateOperate from './draft.vue';
|
import UpdateOperate from './draft.vue';
|
||||||
|
import SetProject from './project';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PublishMap',
|
name: 'PublishMap',
|
||||||
components: {
|
components: {
|
||||||
UpdateOperate
|
UpdateOperate,
|
||||||
|
SetProject
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -117,6 +117,10 @@ export default {
|
|||||||
name: this.$t('global.export'),
|
name: this.$t('global.export'),
|
||||||
handleClick: this.handleExportMapSame,
|
handleClick: this.handleExportMapSame,
|
||||||
showControl: () => { return process.env.NODE_ENV === 'development'; }
|
showControl: () => { return process.env.NODE_ENV === 'development'; }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '设置所属项目',
|
||||||
|
handleClick: this.handleSetProject
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -156,6 +160,9 @@ export default {
|
|||||||
// this.$router.push({ path: `${UrlConfig.publish.mapDraft}/edit/${row.id}`, query: { name: row.name } });
|
// this.$router.push({ path: `${UrlConfig.publish.mapDraft}/edit/${row.id}`, query: { name: row.name } });
|
||||||
this.$refs.updateMapName.doShow(row);
|
this.$refs.updateMapName.doShow(row);
|
||||||
},
|
},
|
||||||
|
handleSetProject(index, row) {
|
||||||
|
this.$refs.setProject.doShow(row);
|
||||||
|
},
|
||||||
// 编辑城市
|
// 编辑城市
|
||||||
handleUpdateCity(index, row) {
|
handleUpdateCity(index, row) {
|
||||||
this.$refs.updateCityName.doShow(row);
|
this.$refs.updateCityName.doShow(row);
|
||||||
|
87
src/views/publish/publishMap/project.vue
Normal file
87
src/views/publish/publishMap/project.vue
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog v-dialogDrag title="设置归属项目" :visible.sync="dialogVisible" width="30%" center>
|
||||||
|
<el-form ref="form" :model="formModel" label-width="100px" label-position="left">
|
||||||
|
<el-form-item label="地图名称">
|
||||||
|
<span>{{ formModel.name }}</span>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="是否归属项目" prop="project">
|
||||||
|
<el-radio-group v-model="formModel.project" @change="changeProject">
|
||||||
|
<el-radio :label="booleanValue.t">是</el-radio>
|
||||||
|
<el-radio :label="booleanValue.f">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
v-if="formModel.project"
|
||||||
|
label="归属项目"
|
||||||
|
prop="projectCode"
|
||||||
|
:rules="{
|
||||||
|
required: true, message: '归属项目不能为空', trigger: 'change'
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<el-select v-model="formModel.projectCode" placeholder="请选择归属项目">
|
||||||
|
<el-option label="西铁院" value="XTY" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="doSave">{{ $t('global.confirm') }}</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">{{ $t('global.cancel') }}</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { setMapProject } from '@/api/jmap/map';
|
||||||
|
export default {
|
||||||
|
name: 'SetMapProject',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
dialogVisible: false,
|
||||||
|
formModel: {
|
||||||
|
id: '',
|
||||||
|
name: '',
|
||||||
|
cityCode: '',
|
||||||
|
skinCode: '',
|
||||||
|
project: false,
|
||||||
|
projectCode: ''
|
||||||
|
},
|
||||||
|
projectCodeShow: false,
|
||||||
|
booleanValue: {
|
||||||
|
t: true,
|
||||||
|
f: false
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
doShow(row) {
|
||||||
|
this.dialogVisible = true;
|
||||||
|
this.formModel.id = row.id;
|
||||||
|
this.formModel.name = row.name;
|
||||||
|
this.formModel.cityCode = row.cityCode;
|
||||||
|
this.formModel.skinCode = row.skinCode;
|
||||||
|
},
|
||||||
|
doSave() {
|
||||||
|
this.$refs['form'].validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
setMapProject(this.formModel).then(resp =>{
|
||||||
|
this.$message.success('设置归属项目成功!');
|
||||||
|
this.dialogVisible = false;
|
||||||
|
this.$emit('refresh');
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
changeProject(val) {
|
||||||
|
if (!val) {
|
||||||
|
this.formModel.projectCode = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -22,7 +22,7 @@ import { mapGetters } from 'vuex';
|
|||||||
import { admin, superAdmin} from '@/router';
|
import { admin, superAdmin} from '@/router';
|
||||||
import { getQuestPageList,createQuest,deleteQuest,updateQuest,publishQuest,retractQuest} from '@/api/quest';
|
import { getQuestPageList,createQuest,deleteQuest,updateQuest,publishQuest,retractQuest} from '@/api/quest';
|
||||||
import { launchFullscreen } from '@/utils/screen';
|
import { launchFullscreen } from '@/utils/screen';
|
||||||
import { scriptRecordNotify } from '@/api/simulation';
|
import { scriptDraftRecordNotify,scriptRecordNotify } from '@/api/simulation';
|
||||||
import CreateScript from './create';
|
import CreateScript from './create';
|
||||||
import ScriptPublish from './publish';
|
import ScriptPublish from './publish';
|
||||||
|
|
||||||
@ -124,9 +124,6 @@ export default {
|
|||||||
this.reloadTable();
|
this.reloadTable();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
|
||||||
this.reloadTable();
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
queryFunction(params) {
|
queryFunction(params) {
|
||||||
return getQuestPageList(this.$route.params.mapId,params);
|
return getQuestPageList(this.$route.params.mapId,params);
|
||||||
@ -266,7 +263,7 @@ export default {
|
|||||||
}).catch(() => { });
|
}).catch(() => { });
|
||||||
},
|
},
|
||||||
previewScript(index,row){
|
previewScript(index,row){
|
||||||
scriptRecordNotify(row.id).then(resp => {
|
scriptDraftRecordNotify(row.id).then(resp => {
|
||||||
const query = { mapId: row.mapId, group: resp.data, scriptId: row.id,skinCode:this.$route.query.skinCode,try:0};
|
const query = { mapId: row.mapId, group: resp.data, scriptId: row.id,skinCode:this.$route.query.skinCode,try:0};
|
||||||
this.$router.push({ path: `${UrlConfig.design.display}/demon`, query });
|
this.$router.push({ path: `${UrlConfig.design.display}/demon`, query });
|
||||||
launchFullscreen();
|
launchFullscreen();
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<div slot="header" style="text-align: center;">
|
<div slot="header" style="text-align: center;">
|
||||||
<b>{{ $t('teach.courseName') }}: {{ courseModel.name }}</b>
|
<b>{{ $t('teach.courseName') }}: {{ courseModel.name }}</b>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin:50px" :style="{ height: height - 190 +'px' }">
|
<div style="margin:50px" :style="{ height: height - 230 +'px' }">
|
||||||
<el-tabs v-model="activeName">
|
<el-tabs v-model="activeName">
|
||||||
<el-tab-pane :label="$t('teach.courseDetails')" name="first">
|
<el-tab-pane :label="$t('teach.courseDetails')" name="first">
|
||||||
<div :style="{ height: height - 270 +'px' }">
|
<div :style="{ height: height - 270 +'px' }">
|
||||||
|
@ -61,6 +61,8 @@ export default {
|
|||||||
getSubSystemDetail(this.$route.params.subSystem).then(resp =>{
|
getSubSystemDetail(this.$route.params.subSystem).then(resp =>{
|
||||||
if (resp.data) {
|
if (resp.data) {
|
||||||
this.tableData = resp.data.lessonList;
|
this.tableData = resp.data.lessonList;
|
||||||
|
} else {
|
||||||
|
this.tableData = [];
|
||||||
}
|
}
|
||||||
}).catch(()=>{
|
}).catch(()=>{
|
||||||
this.$messageBox(this.$t('error.obtainCourseInformationFailed'));
|
this.$messageBox(this.$t('error.obtainCourseInformationFailed'));
|
||||||
|
@ -3,9 +3,10 @@
|
|||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>{{ $t('global.mapList') }}</span>
|
<span>{{ $t('global.mapList') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<filter-city ref="filerCity" filter-empty :query-function="queryFunction" :local-param-name="localParamName" @filterSelectChange="refresh" />
|
<div style="height: calc(100% - 47px);">
|
||||||
<el-input v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
|
<filter-city v-if="project==='login'" ref="filerCity" filter-empty :query-function="queryFunction" :local-param-name="localParamName" @filterSelectChange="refresh" />
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper" :style="{ height: (height-125) +'px' }">
|
<el-input v-if="project==='login'" v-model="filterText" :placeholder="this.$t('global.filteringKeywords')" clearable />
|
||||||
|
<div style="height: 100%;">
|
||||||
<el-tree
|
<el-tree
|
||||||
ref="tree"
|
ref="tree"
|
||||||
:data="treeList"
|
:data="treeList"
|
||||||
@ -31,16 +32,19 @@
|
|||||||
<span v-else> {{ node.data.name }}</span>
|
<span v-else> {{ node.data.name }}</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
</el-scrollbar>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</el-card>
|
</el-card>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getPublishMapTree } from '@/api/management/mapprd';
|
import { getPublishMapTree } from '@/api/management/mapprd';
|
||||||
import { getTrainingSystemList, getSubSystemInfo } from '@/api/trainingPlatform';
|
import { getTrainingSystemList, getSubSystemInfo, getSubSystemByProjectCode } from '@/api/trainingPlatform';
|
||||||
import { UrlConfig } from '@/router/index';
|
import { UrlConfig } from '@/router/index';
|
||||||
import FilterCity from '@/views/components/filterCity';
|
import FilterCity from '@/views/components/filterCity';
|
||||||
import localStore from 'storejs';
|
import localStore from 'storejs';
|
||||||
import { getSessionStorage } from '@/utils/auth';
|
import { getSessionStorage } from '@/utils/auth';
|
||||||
|
import { ProjectCode } from '@/scripts/ConstDic';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DemonList',
|
name: 'DemonList',
|
||||||
@ -89,6 +93,9 @@ export default {
|
|||||||
beforeDestroy () {
|
beforeDestroy () {
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
if (this.project === 'xty') {
|
||||||
|
this.refresh();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
filterNode(value, data) {
|
filterNode(value, data) {
|
||||||
@ -158,12 +165,14 @@ export default {
|
|||||||
this.treeList = [];
|
this.treeList = [];
|
||||||
this.filterSelect = filterSelect;
|
this.filterSelect = filterSelect;
|
||||||
try {
|
try {
|
||||||
let params={};
|
let res = {};
|
||||||
if (this.project === 'xty') {
|
if (this.project === 'xty') {
|
||||||
params={'customized': 'xty'};
|
res = await getSubSystemByProjectCode(ProjectCode[this.project]);
|
||||||
|
} else {
|
||||||
|
res = await getTrainingSystemList(filterSelect);
|
||||||
}
|
}
|
||||||
const res = await getTrainingSystemList(filterSelect, params);
|
this.$emit('goRoutePath', res.data);
|
||||||
res.data.forEach(item =>{
|
res.data && res.data.forEach(item =>{
|
||||||
item.key = item.id + item.type;
|
item.key = item.id + item.type;
|
||||||
item.children && item.children.forEach(childrenItem => {
|
item.children && item.children.forEach(childrenItem => {
|
||||||
childrenItem.key = childrenItem.id + item.type;
|
childrenItem.key = childrenItem.id + item.type;
|
||||||
@ -223,7 +232,10 @@ export default {
|
|||||||
.el-tree {
|
.el-tree {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
.map-list-main{
|
||||||
|
text-align:left;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
.el-tree-node.is-current>.el-tree-node__content {
|
.el-tree-node.is-current>.el-tree-node__content {
|
||||||
background-color: #e4e3e3 !important;
|
background-color: #e4e3e3 !important;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="app-wrapper">
|
<div class="app-wrapper">
|
||||||
<el-scrollbar wrap-class="scrollbar-wrapper">
|
<el-scrollbar wrap-class="scrollbar-wrapper">
|
||||||
<div v-show="listShow" class="examList" :style="{width: widthLeft+'px'}">
|
<div v-show="listShow" class="examList" :style="{width: widthLeft+'px'}">
|
||||||
<demon-list ref="demonList" :height="height" />
|
<demon-list ref="demonList" :height="height" @goRoutePath="goRoutePath" />
|
||||||
</div>
|
</div>
|
||||||
<drap-left :width-left="widthLeft" @drapWidth="drapWidth" />
|
<drap-left :width-left="widthLeft" @drapWidth="drapWidth" />
|
||||||
<transition>
|
<transition>
|
||||||
@ -53,16 +53,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
const againEnter = getSessionStorage('againEnter') || null;
|
|
||||||
if (!againEnter) {
|
|
||||||
launchFullscreen();
|
|
||||||
const path = localStore.get('trainingPlatformRoute'+ this.userId);
|
|
||||||
if (path && path.startsWith('/trainingPlatform')) {
|
|
||||||
this.$router.push(path);
|
|
||||||
}
|
|
||||||
setSessionStorage('againEnter', true);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.widthLeft = Number(localStore.get('LeftWidth')) ? Number(localStore.get('LeftWidth')) : 450;
|
this.widthLeft = Number(localStore.get('LeftWidth')) ? Number(localStore.get('LeftWidth')) : 450;
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -71,6 +61,19 @@ export default {
|
|||||||
},
|
},
|
||||||
drapWidth(width) {
|
drapWidth(width) {
|
||||||
this.widthLeft = Number(width);
|
this.widthLeft = Number(width);
|
||||||
|
},
|
||||||
|
goRoutePath(data) {
|
||||||
|
const againEnter = getSessionStorage('againEnter') || null;
|
||||||
|
if (!againEnter) {
|
||||||
|
launchFullscreen();
|
||||||
|
const path = localStore.get('trainingPlatformRoute' + this.userId);
|
||||||
|
if (path && path.startsWith('/trainingPlatform')) {
|
||||||
|
this.$router.push(path);
|
||||||
|
} else if (data && data[0]) {
|
||||||
|
this.$router.push(`/trainingPlatform/permission/${data[0].id}`);
|
||||||
|
}
|
||||||
|
setSessionStorage('againEnter', true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user