|
@@ -1,4 +1,5 @@
|
|
|
import { reportadd, reportedit, messagePushPost,dataBaseInterface,reportMessageSend } from "@/api/api.js";
|
|
|
+import { getUrlParams } from '@/utils/common'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -68,13 +69,12 @@ export default {
|
|
|
$('iframe').each((k,i) => {
|
|
|
try {
|
|
|
let href = $(i).attr('src');
|
|
|
- code_arr.push(href.slice(href.indexOf('code=') + 5));
|
|
|
+ code_arr.push(getUrlParams(href,'code'));
|
|
|
|
|
|
} catch (err) {
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
- // console.log(code_arr);
|
|
|
+
|
|
|
if(!code_arr.length) return this.$message.warning('请插入图表');
|
|
|
|
|
|
const loading = this.$loading({
|