模型转换功能
This commit is contained in:
parent
0237a53ecf
commit
6e9447e0a1
@ -197,7 +197,7 @@
|
|||||||
<el-dropdown-item class="el-dropdown-row" @click.native="openRepositoryInfo('version')">
|
<el-dropdown-item class="el-dropdown-row" @click.native="openRepositoryInfo('version')">
|
||||||
<div style="height: 100%;width: 100%;font-size: 14px;"><span style="display: inline-block;width: 20px;"></span><span style="font-size: 12px;">版本管理</span></div>
|
<div style="height: 100%;width: 100%;font-size: 14px;"><span style="display: inline-block;width: 20px;"></span><span style="font-size: 12px;">版本管理</span></div>
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
<el-dropdown-item v-if="scope.row.methodId == 'process.epc'" @click.native="openModelConvertDialog(scope.row.id,scope.row.methodId,'single')">
|
<el-dropdown-item v-if="modelConvertInstall && scope.row.methodId == 'process.epc'" @click.native="openModelConvertDialog(scope.row.id,scope.row.methodId,'single')">
|
||||||
<div style="height: 100%;width: 100%;font-size: 14px;"><span style="display: inline-block;width: 20px;"></span><span style="font-size: 12px;">模型转换</span></div>
|
<div style="height: 100%;width: 100%;font-size: 14px;"><span style="display: inline-block;width: 20px;"></span><span style="font-size: 12px;">模型转换</span></div>
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
<el-dropdown-item v-if="(isOlderVersion ? havingWritePerm : scope.row.havingWritePerm)" divided style="height: 30px;line-height: 30px;" @click.native="removeFiles(scope.row.id)">
|
<el-dropdown-item v-if="(isOlderVersion ? havingWritePerm : scope.row.havingWritePerm)" divided style="height: 30px;line-height: 30px;" @click.native="removeFiles(scope.row.id)">
|
||||||
@ -292,7 +292,7 @@
|
|||||||
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange"></el-checkbox>
|
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange"></el-checkbox>
|
||||||
<awsui-button v-if="isOlderVersion ? havingWritePerm : true " style="width: 100px;margin-left: 15px;" class="button-general-color" type="primary" @click="moveFiles">移动至</awsui-button>
|
<awsui-button v-if="isOlderVersion ? havingWritePerm : true " style="width: 100px;margin-left: 15px;" class="button-general-color" type="primary" @click="moveFiles">移动至</awsui-button>
|
||||||
<awsui-button v-if="isOlderVersion ? havingWritePerm : true" style="width: 100px;" class="button-general-color-reverse" plain @click="copyFiles()">创建副本</awsui-button>
|
<awsui-button v-if="isOlderVersion ? havingWritePerm : true" style="width: 100px;" class="button-general-color-reverse" plain @click="copyFiles()">创建副本</awsui-button>
|
||||||
<awsui-button v-if="modelConvertDialog.footerBtnVisible" style="width: 100px;" class="button-general-color-reverse" plain @click="openModelConvertDialog('','','batch')">模型转换</awsui-button>
|
<awsui-button v-if="modelConvertInstall && modelConvertDialog.footerBtnVisible" style="width: 100px;" class="button-general-color-reverse" plain @click="openModelConvertDialog('','','batch')">模型转换</awsui-button>
|
||||||
<awsui-button style="width: 100px;" class="button-general-color-reverse" plain @click="exportFiles()">导出</awsui-button>
|
<awsui-button style="width: 100px;" class="button-general-color-reverse" plain @click="exportFiles()">导出</awsui-button>
|
||||||
<awsui-button v-if="isOlderVersion ? havingRemovePerm : true && category != 'itsystem'" style="width: 100px;" class="button-general-color-reverse2" plain @click="removeFiles()">删除</awsui-button>
|
<awsui-button v-if="isOlderVersion ? havingRemovePerm : true && category != 'itsystem'" style="width: 100px;" class="button-general-color-reverse2" plain @click="removeFiles()">删除</awsui-button>
|
||||||
<awsui-button style="width: 100px;" class="button-general-color-reverse3" plain @click="closeFooter">取消</awsui-button>
|
<awsui-button style="width: 100px;" class="button-general-color-reverse3" plain @click="closeFooter">取消</awsui-button>
|
||||||
@ -449,6 +449,7 @@
|
|||||||
processLinkInstall: false,// 串联分析应用是否安装
|
processLinkInstall: false,// 串联分析应用是否安装
|
||||||
outputPrInstall: false,// 流程手册是否安装
|
outputPrInstall: false,// 流程手册是否安装
|
||||||
onlineDocInstall: false,// 预览应用是否安装
|
onlineDocInstall: false,// 预览应用是否安装
|
||||||
|
modelConvertInstall: false, // 模型转换应用是否安装
|
||||||
havingWritePerm: false,// 是否有新增、修改权限
|
havingWritePerm: false,// 是否有新增、修改权限
|
||||||
havingRemovePerm: false,// 是否有删除权限
|
havingRemovePerm: false,// 是否有删除权限
|
||||||
havingVersionManagePerm: false,// 是否有版本管理权限
|
havingVersionManagePerm: false,// 是否有版本管理权限
|
||||||
@ -822,6 +823,7 @@
|
|||||||
that.processLinkInstall = ro.data.processLinkInstall;
|
that.processLinkInstall = ro.data.processLinkInstall;
|
||||||
that.outputPrInstall = ro.data.outputPrInstall;
|
that.outputPrInstall = ro.data.outputPrInstall;
|
||||||
that.onlineDocInstall = ro.data.onlineDocInstall;
|
that.onlineDocInstall = ro.data.onlineDocInstall;
|
||||||
|
that.modelConvertInstall = ro.data.modelConvertInstall;
|
||||||
that.havingWritePerm = ro.data.havingWritePerm;
|
that.havingWritePerm = ro.data.havingWritePerm;
|
||||||
that.havingRemovePerm = ro.data.havingRemovePerm;
|
that.havingRemovePerm = ro.data.havingRemovePerm;
|
||||||
that.havingVersionManagePerm = ro.data.havingVersionManagePerm;
|
that.havingVersionManagePerm = ro.data.havingVersionManagePerm;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user