|
@@ -121,7 +121,7 @@
|
|
v-permission="permissionBtn.myETAPermission.myChart_edit"
|
|
v-permission="permissionBtn.myETAPermission.myChart_edit"
|
|
class="span-item"
|
|
class="span-item"
|
|
style="margin-left: 7px"
|
|
style="margin-left: 7px"
|
|
- v-if="chartInfo.Button.IsEdit"
|
|
|
|
|
|
+ v-if="chartInfo.Button.IsEdit&&chartInfo.Source!==11"
|
|
@click="editChartHandle"
|
|
@click="editChartHandle"
|
|
>
|
|
>
|
|
<span> <i class="el-icon-edit" /> <!-- 编辑 -->{{$t('Chart.chart_edit_btn')}} </span>
|
|
<span> <i class="el-icon-edit" /> <!-- 编辑 -->{{$t('Chart.chart_edit_btn')}} </span>
|
|
@@ -413,6 +413,7 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
|
|
+ v-if="chartInfo.Source!==11"
|
|
:label="$t('Table.column_operations')"
|
|
:label="$t('Table.column_operations')"
|
|
key="Copy"
|
|
key="Copy"
|
|
align="center"
|
|
align="center"
|
|
@@ -590,7 +591,7 @@ export default {
|
|
},
|
|
},
|
|
tableData: {
|
|
tableData: {
|
|
handler(newval) {
|
|
handler(newval) {
|
|
- newval.length && !this.chartInfo.WarnMsg && this.chartInfo.Source===1&& this.setChartOptionHandle(newval);
|
|
|
|
|
|
+ newval.length && !this.chartInfo.WarnMsg && [1,11].includes(this.chartInfo.Source)&& this.setChartOptionHandle(newval);
|
|
},
|
|
},
|
|
deep: true,
|
|
deep: true,
|
|
},
|
|
},
|
|
@@ -640,7 +641,7 @@ export default {
|
|
|
|
|
|
if(!this.chartInfo.HaveOperaAuth) return
|
|
if(!this.chartInfo.HaveOperaAuth) return
|
|
|
|
|
|
- if(this.chartInfo.Source===1) {
|
|
|
|
|
|
+ if([1,11].includes(this.chartInfo.Source)) {
|
|
//处理下历史默认来源
|
|
//处理下历史默认来源
|
|
this.setDefaultSourceFrom();
|
|
this.setDefaultSourceFrom();
|
|
|
|
|