|
@@ -8,7 +8,7 @@
|
|
|
<span v-for="(item, index) in listTitle" :key="item.ChartPermissionId" @click="tabsBoxBtn(item, index)" :class="index == tabsPitchon ? 'pitch' : ''">{{ item.PermissionName }}</span>
|
|
|
</div>
|
|
|
<div style="display: flex">
|
|
|
- <el-upload ref="imgUpload" :action="baseApi + '/resource/image/upload'" :show-file-list="false" accept="image/*" :on-success="handleUploadPosterSuccess">
|
|
|
+ <el-upload ref="imgUpload" action="#" :http-request="handleUploadImg" :show-file-list="false" accept="image/*">
|
|
|
<el-button type="primary">识图建会</el-button>
|
|
|
</el-upload>
|
|
|
<el-button style="margin-left: 20px" type="primary" @click="$router.push(!isResearch ? '/addActivity' : '/addPurchaserActivity')">添加活动</el-button>
|
|
@@ -89,7 +89,7 @@ import * as OpenCC from "opencc-js";
|
|
|
// 将繁体中文(香港)转换为简体中文(中国大陆)
|
|
|
const converter = OpenCC.Converter({ from: "hk", to: "cn" });
|
|
|
import mPage from "@/components/mPage.vue";
|
|
|
-import { raiInterface } from "@/api/api.js";
|
|
|
+import { raiInterface, sealInterence } from "@/api/api.js";
|
|
|
import AtcParticulars from "../components/atcParticulars.vue";
|
|
|
import imgMeeting from "./components/imgMeeting.vue";
|
|
|
export default {
|
|
@@ -321,22 +321,28 @@ export default {
|
|
|
a.click();
|
|
|
};
|
|
|
},
|
|
|
- // 上传成功
|
|
|
- async handleUploadPosterSuccess(res, file) {
|
|
|
- if (res.Ret === 200) {
|
|
|
- const resImg = await raiInterface.activityImgToText({
|
|
|
- ImgUrl: res.Data.ResourceUrl,
|
|
|
- });
|
|
|
- if (resImg.Ret === 200) {
|
|
|
- console.log(res, resImg);
|
|
|
- this.isShowImgMeetingDlg = true;
|
|
|
- this.imgMeetingData = resImg.Data.List.map((item) => {
|
|
|
- return {
|
|
|
- ...item,
|
|
|
- Company: converter(item.Company),
|
|
|
- };
|
|
|
+ async handleUploadImg(params) {
|
|
|
+ if (!params.file) return;
|
|
|
+ const fd = new FormData();
|
|
|
+ fd.append("file", params.file);
|
|
|
+ try {
|
|
|
+ const res = await sealInterence.resourceUpload(fd);
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ const resImg = await raiInterface.activityImgToText({
|
|
|
+ ImgUrl: res.Data.ResourceUrl,
|
|
|
});
|
|
|
+ if (resImg.Ret === 200) {
|
|
|
+ this.isShowImgMeetingDlg = true;
|
|
|
+ this.imgMeetingData = resImg.Data.List.map((item) => {
|
|
|
+ return {
|
|
|
+ ...item,
|
|
|
+ Company: converter(item.Company),
|
|
|
+ };
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
+ } catch (err) {
|
|
|
+ console.log(err);
|
|
|
}
|
|
|
},
|
|
|
// 点击取消的回调事件
|