|
@@ -937,13 +937,14 @@ export default {
|
|
|
this.setImageHandle(form,data);
|
|
|
},
|
|
|
async setImageHandle(form,{ UniqueCode,ChartInfoId }) {
|
|
|
- let { Data } = await dataBaseInterface.uploadImgSvg(form);
|
|
|
- // let { Data } = await dataBaseInterface.uploadImg(form);
|
|
|
- await dataBaseInterface.setChartImage({
|
|
|
- ChartInfoId: ChartInfoId,
|
|
|
- ImageUrl: Data.ResourceUrl,
|
|
|
- });
|
|
|
-
|
|
|
+ // let { Data } = await dataBaseInterface.uploadImgSvg(form);
|
|
|
+ // // let { Data } = await dataBaseInterface.uploadImg(form);
|
|
|
+ // await dataBaseInterface.setChartImage({
|
|
|
+ // ChartInfoId: ChartInfoId,
|
|
|
+ // ImageUrl: Data.ResourceUrl,
|
|
|
+ // });
|
|
|
+ form.append('ChartInfoId',ChartInfoId)
|
|
|
+ await dataBaseInterface.setChartThumbnail(form)
|
|
|
// this.$message.success('添加成功');
|
|
|
this.$message.success(this.$t('MsgPrompt.add_msg2'));
|
|
|
this.$router.replace({
|