|
@@ -1179,12 +1179,9 @@ export default {
|
|
|
},
|
|
|
|
|
|
/* 删除方法 */
|
|
|
- delHandle(ChartInfoId) {
|
|
|
- dataBaseInterface
|
|
|
- .delChartClassify({
|
|
|
- ChartInfoId,
|
|
|
- })
|
|
|
- .then((res) => {
|
|
|
+ async delHandle(ChartInfoId) {
|
|
|
+ const res=this.chartInfo.Source==11?await sheetInterface.delBalanceChart({ChartInfoId}):await dataBaseInterface.delChartClassify({ChartInfoId})
|
|
|
+
|
|
|
if (res.Ret !== 200) return;
|
|
|
this.$message.success(res.Msg);
|
|
|
sessionStorage.removeItem('myChartbeforeOptions');
|
|
@@ -1199,7 +1196,7 @@ export default {
|
|
|
|
|
|
// //只有一个图表且删除了 则展示缺省
|
|
|
this.isNoChart = !this.allChart.length ? true : false;
|
|
|
- });
|
|
|
+
|
|
|
},
|
|
|
|
|
|
/* 转base64 */
|