2019-07-26 13:32:43 +08:00
|
|
|
<template>
|
2019-10-29 16:23:57 +08:00
|
|
|
<el-card :style="{height: height+'px'}" style="overflow-y:scroll;padding-bottom:20px;">
|
2019-10-30 17:21:32 +08:00
|
|
|
<div class="runPlanHeader" style="width: 90%;margin-left:5%;margin-top:20px;display: inline-block;">
|
|
|
|
<div class="runPlanList">{{ $t('planMonitor.openRunPlan.runPlanList') }}</div>
|
|
|
|
<el-button v-if="isCreate" size="small" type="primary" class="createRunPlan" @click="handleCreate">{{ $t('planMonitor.createRunningDiagram') }}</el-button>
|
|
|
|
</div>
|
|
|
|
<el-table
|
|
|
|
:data="runPlanList"
|
|
|
|
height="500"
|
|
|
|
stripe
|
|
|
|
border
|
|
|
|
style="width: 90%;margin-left:5%;margin-top:20px;display: inline-block;"
|
|
|
|
>
|
|
|
|
<el-table-column prop="name" :label="this.$t('planMonitor.runGraphName')" />
|
|
|
|
<el-table-column v-if="!(/^\/design\/userlist/.test(this.$route.fullPath))" :label="this.$t('global.status')">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{ handlerStatus(scope.row) }}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="!(/^\/design\/userlist/.test(this.$route.fullPath))"
|
|
|
|
prop="explanation"
|
|
|
|
show-overflow-tooltip
|
|
|
|
:label="this.$t('planMonitor.explanation')"
|
|
|
|
/>
|
|
|
|
<el-table-column :label="this.$t('planMonitor.creationDate')">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag type="success">{{ handleTime(scope.row.createTime) }}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column :label="this.$t('global.operate')" width="400">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button v-if="scope.row.status !=='1'" size="mini" class="button_box" type="success" @click="handleConfirm(scope.row)">{{ $t('planMonitor.load') }}</el-button>
|
|
|
|
<el-button v-if="isCreate && scope.row.status !=='1'" size="mini" class="button_box" type="primary" @click="handleEdit(scope.row)">{{ $t('planMonitor.modifyName') }}</el-button>
|
|
|
|
<el-button v-if="isCreate && scope.row.status !=='1'" size="mini" class="button_box" type="danger" @click="handleDelete(scope.row)">{{ $t('global.delete') }}</el-button>
|
|
|
|
<el-button v-if="isCreate && scope.row.status ==='0'" size="mini" class="button_box" type="primary" @click="handlePublish(scope.row)">{{ hasRelease?$t('global.release'):$t('planMonitor.applyRelease') }}</el-button>
|
|
|
|
<el-button v-if="scope.row.status === '1'" size="mini" class="button_box" type="primary" @click="handlePreview(scope.row)">{{ $t('planMonitor.preview') }}</el-button>
|
|
|
|
<el-button v-if="scope.row.status === '1'" size="mini" class="button_box" type="danger" @click="handelRevert(scope.row)">{{ $t('planMonitor.revoke') }}</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<create-empty-plan ref="createEmptyPlan" :plan-convert="PlanConvert" @dispatchDialog="dispatchDialog" @refresh="refresh" />
|
|
|
|
<!-- @dispatchOperate="dispatchOperate" -->
|
|
|
|
<edit-plan-name ref="editPlan" @renewal="getRunPlanList" />
|
2019-08-13 15:54:26 +08:00
|
|
|
</el-card>
|
2019-07-26 13:32:43 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2019-09-30 15:18:34 +08:00
|
|
|
import EditPlanName from './editTool/menus/editPlanName';
|
2019-09-30 14:17:20 +08:00
|
|
|
import CreateEmptyPlan from './editTool/menus/createEmptyPlan';
|
2019-10-14 13:54:19 +08:00
|
|
|
import { getRpListByUserMapId, publishRunPlan, releaseOrCancelRunPlan, previewRunPlan} from '@/api/designPlatform';
|
2019-09-30 10:46:29 +08:00
|
|
|
import { getRpListByMapId, deleteRunPlan } from '@/api/runplan';
|
2019-10-14 13:54:19 +08:00
|
|
|
import { launchFullscreen } from '@/utils/screen';
|
2019-09-30 15:18:34 +08:00
|
|
|
import { UrlConfig } from '@/router/index';
|
2019-08-13 15:54:26 +08:00
|
|
|
export default {
|
2019-10-30 17:21:32 +08:00
|
|
|
name: 'UserRunPlanList',
|
|
|
|
components: {
|
|
|
|
CreateEmptyPlan,
|
|
|
|
EditPlanName
|
|
|
|
// LimitList
|
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
dialogShow: false,
|
|
|
|
loading: false,
|
|
|
|
// height: 260,
|
|
|
|
// planId: '',
|
|
|
|
// planName: '',
|
|
|
|
type: 'add',
|
|
|
|
// defaultShowKeys: [],
|
|
|
|
runPlanList: [],
|
|
|
|
runPlanDict: {},
|
|
|
|
isCreate:false,
|
|
|
|
PlanConvert: {}
|
|
|
|
// defaultProps: {
|
|
|
|
// label: 'name'
|
|
|
|
// }
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
height() {
|
|
|
|
return this.$store.state.app.height - 60 - 30;
|
|
|
|
},
|
|
|
|
skinCode() {
|
|
|
|
return this.$route.query.skinCode || '02';
|
|
|
|
},
|
2019-10-14 13:04:23 +08:00
|
|
|
hasRelease() {
|
|
|
|
return this.$store.state.user.roles.includes('04') ||
|
|
|
|
this.$store.state.user.roles.includes('05');
|
|
|
|
}
|
2019-10-30 17:21:32 +08:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
'$route' () {
|
|
|
|
this.getRunPlanList();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.PlanConvert = this.$theme.loadPlanConvert(this.$route.query.skinCode);
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.getRunPlanList();
|
|
|
|
},
|
|
|
|
methods:{
|
|
|
|
refresh() {
|
|
|
|
this.getRunPlanList();
|
|
|
|
},
|
|
|
|
getRunPlanList() {
|
|
|
|
if (/^\/design\/userlist/.test(this.$route.fullPath)) {
|
|
|
|
this.isCreate = false;
|
|
|
|
getRpListByUserMapId(this.$route.params.mapId).then((resp) => {
|
|
|
|
this.runPlanList = resp.data;
|
|
|
|
this.runPlanList.forEach(elem => {
|
|
|
|
this.runPlanDict[elem.id] = elem.name;
|
|
|
|
});
|
|
|
|
// this.dialogShow = true;
|
|
|
|
}).catch(() => {
|
|
|
|
this.$messageBox(this.$t('planMonitor.openRunPlan.getRunPlanListFail'));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.isCreate = true;
|
|
|
|
getRpListByMapId(this.$route.params.mapId).then((resp) => {
|
|
|
|
this.runPlanList = resp.data;
|
|
|
|
this.runPlanList.forEach(elem => {
|
|
|
|
this.runPlanDict[elem.id] = elem.name;
|
|
|
|
});
|
|
|
|
// this.dialogShow = true;
|
|
|
|
}).catch(() => {
|
|
|
|
this.$messageBox(this.$t('planMonitor.openRunPlan.getRunPlanListFail'));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// dispatchOperate(){
|
|
|
|
// this.$refs[operateObj.dialogName][operateObj.operate](operateObj.params);
|
|
|
|
// },
|
|
|
|
dispatchDialog() {
|
|
|
|
this.$refs['createEmptyPlan'].doShow();
|
|
|
|
},
|
|
|
|
handleCreate() {
|
|
|
|
this.$refs['createEmptyPlan'].doShow();
|
|
|
|
},
|
|
|
|
handleConfirm(row) {
|
|
|
|
this.loadRunPlanData({
|
|
|
|
planId: row.id,
|
|
|
|
skinCode: this.$route.query.skinCode,
|
|
|
|
planName: row.name
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 修改运行图名称
|
|
|
|
handleEdit(row) {
|
|
|
|
if (row.id && row.name) {
|
|
|
|
this.$refs.editPlan.doShow({id: row.id, name: row.name});
|
|
|
|
} else {
|
|
|
|
this.$message.info(this.$t('planMonitor.openRunPlan.pleaseSelectRunplan'));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
loadRunPlanData({ refresh, planId, skinCode, planName }) {
|
|
|
|
if (refresh) {
|
|
|
|
this.$store.dispatch('runPlan/refresh');
|
|
|
|
} else {
|
|
|
|
const query = { skinCode: skinCode, mapId: this.$route.params.mapId, planId: planId, planName: planName };
|
|
|
|
if (/^\/design\/userlist/.test(this.$route.fullPath)) {
|
|
|
|
this.$router.push({ path: `${UrlConfig.plan.usertool}`, query: query });
|
|
|
|
} else {
|
|
|
|
this.$router.push({ path: `${UrlConfig.plan.tool}`, query: query });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 删除运行图
|
|
|
|
handleDelete(row) {
|
|
|
|
this.$confirm(this.$t('planMonitor.openRunPlan.confirmDeleteRunPlan'), this.$t('tip.hint'), {
|
|
|
|
confirmButtonText: this.$t('tip.confirm'),
|
|
|
|
cancelButtonText: this.$t('tip.cancel'),
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
|
|
|
deleteRunPlan(row.id).then(Response => {
|
|
|
|
this.$message.success(this.$t('planMonitor.openRunPlan.deleteSuccess'));
|
|
|
|
// if (row.id === this.$route.query.planId) {
|
|
|
|
// const query = { skinCode: this.$route.query.skinCode, mapId: this.$route.query.mapId };
|
|
|
|
// this.$router.push({ path: `${UrlConfig.plan.tool}`, query: query });
|
|
|
|
// }
|
|
|
|
this.refresh();
|
|
|
|
// this.doClose();
|
|
|
|
}).catch(() => {
|
|
|
|
this.$messageBox(this.$t('tip.deleteOperationGraphFailed'));
|
|
|
|
});
|
|
|
|
}).catch(() => { });
|
|
|
|
},
|
2019-10-14 13:04:23 +08:00
|
|
|
handlePublish(row) {
|
2019-10-30 17:21:32 +08:00
|
|
|
this.$confirm(this.hasRelease ? this.$t('tip.publishRunPlanTips') : this.$t('tip.applyRunPlanTips'), this.$t('tip.hint'), {
|
2019-10-14 13:04:23 +08:00
|
|
|
confirmButtonText: this.$t('tip.confirm'),
|
|
|
|
cancelButtonText: this.$t('tip.cancel'),
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
2019-10-30 17:21:32 +08:00
|
|
|
if (this.hasRelease) {
|
|
|
|
publishRunPlan(row.id, {runPlanName: name}).then(resp => {
|
2019-10-30 09:58:23 +08:00
|
|
|
this.$message.success(this.$t('tip.publishRunPlanSuccess'));
|
2019-10-14 13:04:23 +08:00
|
|
|
this.refresh();
|
|
|
|
}).catch(() => {
|
2019-10-30 09:58:23 +08:00
|
|
|
this.$messageBox(this.$t('tip.publishRunPlanFail'));
|
2019-10-14 13:04:23 +08:00
|
|
|
this.refresh();
|
2019-10-30 17:21:32 +08:00
|
|
|
});
|
2019-10-14 13:04:23 +08:00
|
|
|
} else {
|
|
|
|
releaseOrCancelRunPlan(row.id, '1').then(resp => {
|
2019-10-30 09:58:23 +08:00
|
|
|
this.$message.success(this.$t('tip.applyRunPlanSuccess'));
|
2019-10-14 13:04:23 +08:00
|
|
|
this.refresh();
|
|
|
|
}).catch(() => {
|
2019-10-30 09:58:23 +08:00
|
|
|
this.$messageBox(this.$t('tip.applyRunPlanFail'));
|
2019-10-14 13:04:23 +08:00
|
|
|
this.refresh();
|
2019-10-30 17:21:32 +08:00
|
|
|
});
|
2019-10-14 13:04:23 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
handelRevert(row) {
|
2019-10-30 17:21:32 +08:00
|
|
|
this.$confirm(this.$t('tip.cancelRunPlanTips'), this.$t('tip.hint'), {
|
2019-10-14 13:04:23 +08:00
|
|
|
confirmButtonText: this.$t('tip.confirm'),
|
|
|
|
cancelButtonText: this.$t('tip.cancel'),
|
|
|
|
type:'warning'
|
|
|
|
}).then(() => {
|
2019-10-30 17:21:32 +08:00
|
|
|
releaseOrCancelRunPlan(row.id, '0').then(resp=> {
|
2019-10-30 09:58:23 +08:00
|
|
|
this.$message.success(this.$t('tip.cancelRunPlanSuccess'));
|
2019-10-14 13:04:23 +08:00
|
|
|
this.refresh();
|
|
|
|
}).catch(() => {
|
2019-10-30 17:21:32 +08:00
|
|
|
this.$messageBox(this.$t('tip.cancelRunPlanFail'));
|
2019-10-14 13:04:23 +08:00
|
|
|
this.refresh();
|
2019-10-30 17:21:32 +08:00
|
|
|
});
|
|
|
|
});
|
2019-10-14 13:04:23 +08:00
|
|
|
},
|
|
|
|
handlerStatus(row) {
|
|
|
|
let lessonStatus = '';
|
2019-10-30 17:21:32 +08:00
|
|
|
switch (row.status) {
|
|
|
|
case '0':
|
|
|
|
lessonStatus = this.$t('lesson.notRelease');
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
lessonStatus = this.$t('lesson.pendingReview');
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
lessonStatus = this.$t('lesson.published');
|
|
|
|
break;
|
|
|
|
case '3':
|
|
|
|
lessonStatus = this.$t('lesson.rejected');
|
|
|
|
break;
|
2019-10-14 13:04:23 +08:00
|
|
|
}
|
|
|
|
return lessonStatus;
|
|
|
|
},
|
|
|
|
handleTime(time) {
|
2019-10-30 17:21:32 +08:00
|
|
|
return time.replace('T', ' ');
|
2019-10-14 13:54:19 +08:00
|
|
|
},
|
2019-10-30 17:21:32 +08:00
|
|
|
handlePreview(row) {
|
2019-10-14 13:54:19 +08:00
|
|
|
previewRunPlan(row.id).then(resp => {
|
|
|
|
const query = {
|
2019-10-30 17:21:32 +08:00
|
|
|
skinCode: row.skinCode, prdType: '01', group: resp.data, mapId: row.mapId, planId: row.id, from:''
|
2019-10-14 13:54:19 +08:00
|
|
|
};
|
|
|
|
this.$router.push({ path: `${UrlConfig.display}/plan`, query: query });
|
|
|
|
launchFullscreen();
|
|
|
|
}).catch(error => {
|
2019-10-30 17:21:32 +08:00
|
|
|
this.$messageBox(this.$t('tip.createSimulationFaild') + this.$t('global.colon') + error.message);
|
2019-10-14 13:54:19 +08:00
|
|
|
});
|
2019-10-14 13:04:23 +08:00
|
|
|
}
|
2019-10-30 17:21:32 +08:00
|
|
|
}
|
2019-08-13 15:54:26 +08:00
|
|
|
};
|
2019-07-26 13:32:43 +08:00
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 3px;
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
@import "src/styles/mixin.scss";
|
|
|
|
|
2019-10-30 09:58:23 +08:00
|
|
|
.el-button+.el-button{
|
|
|
|
margin-top:5px;
|
|
|
|
margin-left: 0px;
|
|
|
|
}
|
2019-09-30 10:46:29 +08:00
|
|
|
|
|
|
|
.createRunPlan{
|
|
|
|
display:inline-block;float:right;margin-right:20px;
|
|
|
|
}
|
|
|
|
.runPlanHeader{
|
|
|
|
display:inline-block;margin-top:40px;width: 90%;margin-left:5%;
|
|
|
|
}
|
|
|
|
.runPlanList{
|
|
|
|
display:inline-block;padding:7px 0px
|
|
|
|
}
|
2019-08-13 15:54:26 +08:00
|
|
|
</style>
|