|
@@ -12,7 +12,7 @@
|
|
<div class="main-left left" id="left" v-show="!isSlideLeft">
|
|
<div class="main-left left" id="left" v-show="!isSlideLeft">
|
|
<div class="datasheet_top">
|
|
<div class="datasheet_top">
|
|
<el-button v-permission="permissionBtn.statisticPermission.fittingEq_addChart"
|
|
<el-button v-permission="permissionBtn.statisticPermission.fittingEq_addChart"
|
|
- type="primary" @click="goAddChart">添加图表</el-button>
|
|
|
|
|
|
+ type="primary" @click="goAddChart">{{$t('Chart.add_chart_btn')}}</el-button>
|
|
<!-- <div style="color: #666">
|
|
<!-- <div style="color: #666">
|
|
使用说明
|
|
使用说明
|
|
<el-tooltip
|
|
<el-tooltip
|
|
@@ -31,14 +31,14 @@
|
|
<div class="search-cont">
|
|
<div class="search-cont">
|
|
<el-checkbox v-model="isShowMe"
|
|
<el-checkbox v-model="isShowMe"
|
|
v-permission="permissionBtn.statisticPermission.fittingEq_onlyMine"
|
|
v-permission="permissionBtn.statisticPermission.fittingEq_onlyMine"
|
|
- @change="() => { getTreeData();getPublicList() }">只看我的</el-checkbox>
|
|
|
|
|
|
+ @change="() => { getTreeData();getPublicList() }">{{$t('Chart.only_see_mine')}}</el-checkbox>
|
|
<el-select
|
|
<el-select
|
|
v-model="search_txt"
|
|
v-model="search_txt"
|
|
v-loadMore="searchLoad"
|
|
v-loadMore="searchLoad"
|
|
:filterable="!search_txt"
|
|
:filterable="!search_txt"
|
|
remote
|
|
remote
|
|
clearable
|
|
clearable
|
|
- placeholder="请输入图表名称"
|
|
|
|
|
|
+ :placeholder="$t('Chart.search_chart_placeholder')"
|
|
style="width: 100%; margin-top: 20px"
|
|
style="width: 100%; margin-top: 20px"
|
|
:remote-method="searchHandle"
|
|
:remote-method="searchHandle"
|
|
@click.native="inputFocusHandle"
|
|
@click.native="inputFocusHandle"
|
|
@@ -133,7 +133,7 @@
|
|
alt=""
|
|
alt=""
|
|
style="width: 16px; height: 16px; margin-right: 10px"
|
|
style="width: 16px; height: 16px; margin-right: 10px"
|
|
/>
|
|
/>
|
|
- <span>添加图表分类</span>
|
|
|
|
|
|
+ <span>{{$t('StatisticAnalysis.ChartRelevance.add_chart_classify')}}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span
|
|
<span
|
|
@@ -168,7 +168,7 @@
|
|
ref="chartRef"
|
|
ref="chartRef"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
- <span class="chart-author">作者:{{ chartInfo.SysUserRealName}}</span>
|
|
|
|
|
|
+ <span class="chart-author">{{$t('MsgPrompt.author')}}:{{ chartInfo.SysUserRealName}}</span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- 异常显示 -->
|
|
<!-- 异常显示 -->
|
|
@@ -396,7 +396,7 @@ export default {
|
|
|
|
|
|
/* 添加一级目录 */
|
|
/* 添加一级目录 */
|
|
addLevelOneHandle() {
|
|
addLevelOneHandle() {
|
|
- this.dialog_title = '添加图表分类';
|
|
|
|
|
|
+ this.dialog_title = this.$t('StatisticAnalysis.ChartRelevance.add_chart_classify')||'添加图表分类';
|
|
this.classifyForm = {
|
|
this.classifyForm = {
|
|
classify_name: '',
|
|
classify_name: '',
|
|
}
|
|
}
|
|
@@ -406,7 +406,7 @@ export default {
|
|
/* 编辑节点 */
|
|
/* 编辑节点 */
|
|
editNode(node, { ChartClassifyName,ChartClassifyId }) {
|
|
editNode(node, { ChartClassifyName,ChartClassifyId }) {
|
|
|
|
|
|
- this.dialog_title = '编辑图表分类';
|
|
|
|
|
|
+ this.dialog_title = this.$t('StatisticAnalysis.ChartRelevance.edit_chart_classify')||'编辑图表分类';
|
|
/* 编辑目录 */
|
|
/* 编辑目录 */
|
|
this.classifyForm = {
|
|
this.classifyForm = {
|
|
classify_name: ChartClassifyName,
|
|
classify_name: ChartClassifyName,
|
|
@@ -423,14 +423,14 @@ export default {
|
|
const { DeleteStatus } = Data;
|
|
const { DeleteStatus } = Data;
|
|
|
|
|
|
DeleteStatus === 1
|
|
DeleteStatus === 1
|
|
- ? this.$confirm('该分类下关联表图表不可删除', '删除失败', {
|
|
|
|
- confirmButtonText: '知道了',
|
|
|
|
|
|
+ ? this.$confirm(this.$t('Chart.OptMsg.classify_del_fail'), this.$t('Chart.OptMsg.del_fail_tag'), {
|
|
|
|
+ confirmButtonText: this.$t('MsgPrompt.known'),
|
|
showCancelButton: false,
|
|
showCancelButton: false,
|
|
type: 'error',
|
|
type: 'error',
|
|
}) : DeleteStatus === 0
|
|
}) : DeleteStatus === 0
|
|
- ? this.$confirm('确定删除当前分类吗?', '提示', {
|
|
|
|
- confirmButtonText: '确定',
|
|
|
|
- cancelButtonText: '取消',
|
|
|
|
|
|
+ ? this.$confirm(this.$t('Chart.OptMsg.classify_del_confirm'), this.$t('Confirm.prompt'), {
|
|
|
|
+ // confirmButtonText: '确定',
|
|
|
|
+ // cancelButtonText: '取消',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
}).then(() => {
|
|
}).then(() => {
|
|
this.delApi(ChartClassifyId,ChartInfoId)
|
|
this.delApi(ChartClassifyId,ChartInfoId)
|
|
@@ -538,9 +538,9 @@ export default {
|
|
/* 删除图表 */
|
|
/* 删除图表 */
|
|
delChartHandle() {
|
|
delChartHandle() {
|
|
const { ChartClassifyId,ChartInfoId } = this.chartInfo;
|
|
const { ChartClassifyId,ChartInfoId } = this.chartInfo;
|
|
- this.$confirm('删除后该图表将不能再引用,确认删除吗?', '提示', {
|
|
|
|
- confirmButtonText: '确定',
|
|
|
|
- cancelButtonText: '取消',
|
|
|
|
|
|
+ this.$confirm(this.$t('Chart.OptMsg.chart_del_confirm'), this.$t('Confirm.prompt'), {
|
|
|
|
+ // confirmButtonText: '确定',
|
|
|
|
+ // cancelButtonText: '取消',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
.then(() => {
|
|
.then(() => {
|