|
@@ -12,23 +12,23 @@
|
|
|
<div class="main-left left" id="left" v-show="!isSlideLeft">
|
|
|
<div class="datasheet_top">
|
|
|
<el-button v-permission="permissionBtn.productPricePermission.goodsPrice_priceLine"
|
|
|
- type="primary" @click="goAddChart('price')">添加价格曲线</el-button>
|
|
|
+ type="primary" @click="goAddChart('price')">{{$t('ToolBox.CommodityPriceChart.add_price_line_btn')}}</el-button>
|
|
|
<el-button v-permission="permissionBtn.productPricePermission.goodsPrice_incomeLine"
|
|
|
style="margin-left:0;"
|
|
|
- type="primary" @click="goAddChart('profit')">添加利润曲线</el-button>
|
|
|
+ type="primary" @click="goAddChart('profit')">{{$t('ToolBox.CommodityPriceChart.add_price_profit_btn')}}</el-button>
|
|
|
</div>
|
|
|
|
|
|
<div class="search-cont">
|
|
|
<el-checkbox v-model="isShowMe"
|
|
|
v-if="permissionBtn.isShowBtn('productPricePermission','goodsPrice_onlyMine')"
|
|
|
- @change="() => { getTreeData();getPublicList() }">只看我的</el-checkbox>
|
|
|
+ @change="() => { getTreeData();getPublicList() }">{{$t('Chart.only_see_mine')}}</el-checkbox>
|
|
|
<el-select
|
|
|
v-model="search_txt"
|
|
|
v-loadMore="searchLoad"
|
|
|
:filterable="!search_txt"
|
|
|
remote
|
|
|
clearable
|
|
|
- placeholder="请输入图表名称"
|
|
|
+ :placeholder="$t('Chart.search_chart_placeholder')"
|
|
|
style="width: 100%; margin-top: 20px"
|
|
|
:remote-method="searchHandle"
|
|
|
@click.native="inputFocusHandle"
|
|
@@ -123,7 +123,7 @@
|
|
|
alt=""
|
|
|
style="width: 16px; height: 16px; margin-right: 10px"
|
|
|
/>
|
|
|
- <span>添加图表分类</span>
|
|
|
+ <span>{{$t('StatisticAnalysis.ChartRelevance.add_chart_classify')}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<span
|
|
@@ -180,7 +180,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <span class="chart-author">作者:{{ chartInfo.SysUserRealName}}</span>
|
|
|
+ <span class="chart-author">{{$t('MsgPrompt.author')}}:{{ chartInfo.SysUserRealName}}</span>
|
|
|
</div>
|
|
|
|
|
|
<!-- 异常显示 -->
|
|
@@ -447,7 +447,7 @@ export default {
|
|
|
|
|
|
/* 添加一级目录 */
|
|
|
addLevelOneHandle() {
|
|
|
- this.dialog_title = '添加';
|
|
|
+ this.dialog_title = this.$t('Table.add_btn')||'添加';
|
|
|
this.classifyForm = {
|
|
|
classify_name: '',
|
|
|
}
|
|
@@ -457,7 +457,7 @@ export default {
|
|
|
/* 编辑节点 */
|
|
|
editNode(node, { ChartClassifyName,ChartClassifyId }) {
|
|
|
|
|
|
- this.dialog_title = '编辑';
|
|
|
+ this.dialog_title = this.$t('Table.edit_btn')||'编辑';
|
|
|
/* 编辑目录 */
|
|
|
this.classifyForm = {
|
|
|
classify_name: ChartClassifyName,
|
|
@@ -474,14 +474,14 @@ export default {
|
|
|
const { DeleteStatus } = Data;
|
|
|
|
|
|
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,
|
|
|
type: 'error',
|
|
|
}) : DeleteStatus === 0
|
|
|
- ? this.$confirm('确定删除当前分类吗?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
+ ? this.$confirm(this.$t('Chart.OptMsg.classify_del_confirm'), this.$t('Confirm.prompt'), {
|
|
|
+ // confirmButtonText: '确定',
|
|
|
+ // cancelButtonText: '取消',
|
|
|
type: 'warning',
|
|
|
}).then(() => {
|
|
|
this.delApi(ChartClassifyId,ChartInfoId)
|
|
@@ -716,9 +716,9 @@ export default {
|
|
|
/* 删除图表 */
|
|
|
delChartHandle() {
|
|
|
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',
|
|
|
})
|
|
|
.then(() => {
|