|
@@ -2,15 +2,16 @@
|
|
|
<!-- 添加编辑框架 -->
|
|
|
<div class="frame-editor-wrap">
|
|
|
<div class="option-wrap">
|
|
|
- <el-input style="width:240px;" placeholder="请输入框架名称"></el-input>
|
|
|
+ <el-input style="width:240px;" placeholder="请输入框架名称" v-model="frameDetail.FrameworkName"></el-input>
|
|
|
<el-button type="primary" style="margin-left:auto;" @click="handleEditNode({})">添加节点</el-button>
|
|
|
- <el-button type="primary" style="margin-left:20px;">保存</el-button>
|
|
|
+ <el-button type="primary" style="margin-left:20px;" @click="saveFrame">保存</el-button>
|
|
|
</div>
|
|
|
<div class="editor-wrap">
|
|
|
<!-- 沙盘图组件 -->
|
|
|
<FrameContainer ref="container"
|
|
|
+ :FrameworkContent="frameDetail.FrameworkContent"
|
|
|
@editNode="handleEditNode"
|
|
|
- @finishInit="getGraphObject"
|
|
|
+ @framePic="getFramePic"
|
|
|
/>
|
|
|
</div>
|
|
|
<!-- 添加/编辑节点弹窗 -->
|
|
@@ -35,13 +36,13 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="节点链接" prop="nodeLink">
|
|
|
<el-select v-model="modifyNode.nodeLink" value-key="classifyId" placeholder="请选择节点链接" style="width:217px;">
|
|
|
- <el-option v-for="item in mockMyList"
|
|
|
- :key="item.classifyId"
|
|
|
- :label="item.name"
|
|
|
- :value="{id:item.classifyId,userId:item.adminId}">
|
|
|
- <span style="float:left;">{{item.name}}</span>
|
|
|
+ <el-option v-for="item in myList"
|
|
|
+ :key="item.MyChartClassifyId"
|
|
|
+ :label="item.MyChartClassifyName"
|
|
|
+ :value="{id:item.MyChartClassifyId,userId:item.AdminId}">
|
|
|
+ <span style="float:left;">{{item.MyChartClassifyName}}</span>
|
|
|
<span style="float:right;color: #8492a6; font-size: 13px"
|
|
|
- @click="goToList(item)"><i class="el-icon-view"></i></span>
|
|
|
+ @click="goToList(item)"><img src="~@/assets/img/chart_m/check.png"></span>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
@@ -58,34 +59,24 @@
|
|
|
|
|
|
<script>
|
|
|
import FrameContainer from './components/frameContainer.vue';
|
|
|
-
|
|
|
+import { mychartInterface,chartFrameInterface,dataBaseInterface } from '@/api/api.js';
|
|
|
export default {
|
|
|
components: { FrameContainer },
|
|
|
data() {
|
|
|
return {
|
|
|
+ frameId:this.$route.query.frameId||0,
|
|
|
+ frameDetail:{
|
|
|
+ FrameworkName:'',
|
|
|
+ FrameworkContent:''
|
|
|
+ },
|
|
|
+ lockLoding:null,
|
|
|
modifyNode: {},
|
|
|
isModifyNodeDialogShow: false,
|
|
|
rules: {
|
|
|
nodeName: [{ required: true, message: "请输入节点名称", trigger: "blur" }],
|
|
|
nodeLink: [{ required: true, message: "请选择节点链接", trigger: "blur" }]
|
|
|
},
|
|
|
- mockMyList: [
|
|
|
- {
|
|
|
- classifyId: 652,
|
|
|
- adminId:218,
|
|
|
- name: '框架1'
|
|
|
- },
|
|
|
- {
|
|
|
- classifyId: 651,
|
|
|
- adminId:218,
|
|
|
- name: '框架2'
|
|
|
- },
|
|
|
- {
|
|
|
- classifyId:370,
|
|
|
- adminId:204,
|
|
|
- name:'别人的框架'
|
|
|
- }
|
|
|
- ]
|
|
|
+ myList:[]
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -107,9 +98,75 @@ export default {
|
|
|
getGraphObject(){
|
|
|
|
|
|
},
|
|
|
- getFrameDetail(){},
|
|
|
+ async saveFrame(){
|
|
|
+ if(!this.frameDetail.FrameworkName.length){
|
|
|
+ return this.$message.warning("请输入框架名称")
|
|
|
+ }
|
|
|
+ if(!this.$refs.container.graph.toJSON().cells.length){
|
|
|
+ return this.$message.warning('请绘制画布内容');
|
|
|
+ }
|
|
|
+
|
|
|
+ this.lockLoding = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '保存中...',
|
|
|
+ target: '.frame-container-wrap',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255, 255, 255, 0.8)'
|
|
|
+ });
|
|
|
+
|
|
|
+ //获取框架内容图片
|
|
|
+ const svgData = this.$refs.container.getContentPic()
|
|
|
+ if(svgData){
|
|
|
+ const params = new FormData();
|
|
|
+ params.append('Img',svgData)
|
|
|
+ const { Data,Ret } = await dataBaseInterface.uploadImgSvg(params);
|
|
|
+ if(Ret !== 200) return;
|
|
|
+ if(!Data){
|
|
|
+ return this.$message.warning("上传图片失败")
|
|
|
+ }
|
|
|
+ this.frameDetail.FrameworkImg = Data.ResourceUrl||''
|
|
|
+ }
|
|
|
+ //获取框架节点和内容
|
|
|
+ this.frameDetail.Nodes = this.$refs.container.getContentNodes()
|
|
|
+ this.frameDetail.FrameworkContent = JSON.stringify(this.$refs.container.graph.toJSON())
|
|
|
+ if(this.frameId){
|
|
|
+ //edit
|
|
|
+ chartFrameInterface.editFrame({...this.frameDetail,...{ChartFrameworkId:this.frameId}}).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.$message.success("编辑成功")
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ //add
|
|
|
+ chartFrameInterface.addFrame(this.frameDetail).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.frameId = res.Data?res.Data.ChartFrameworkId:0
|
|
|
+ this.frameDetail = res.Data||{FrameworkName:'',FrameworkContent:''}
|
|
|
+ this.$message.success("新增成功")
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.lockLoding.close();
|
|
|
+ },
|
|
|
+ getMyList(){
|
|
|
+ mychartInterface.classifyList().then((res)=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ if(!res.Data) return
|
|
|
+ this.myList = res.Data.List||[]
|
|
|
+ })
|
|
|
+ },
|
|
|
+ async getFrameDetail(){
|
|
|
+ if(this.frameId){
|
|
|
+ const res = await chartFrameInterface.getFrameDetail({ChartFrameworkId:Number(this.frameId)})
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.frameDetail = res.Data||{FrameworkName:'',FrameworkContent:''}
|
|
|
+ }
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.$refs.container.init()
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
},
|
|
|
mounted(){
|
|
|
+ this.getMyList()
|
|
|
this.getFrameDetail()
|
|
|
}
|
|
|
};
|
|
@@ -122,6 +179,8 @@ export default {
|
|
|
height: calc(100vh - 120px);
|
|
|
*{box-sizing: border-box;}
|
|
|
.option-wrap{
|
|
|
+ background-color:#fff;
|
|
|
+ padding:20px;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
}
|