|
@@ -21,6 +21,7 @@ import AliOssMulti from 'views/photographerManagement/photoVerify/modal/ali-oss-
|
|
import UpdateAppItem from 'views/baseManagement/updateList/modal/ItemModal.vue';
|
|
import UpdateAppItem from 'views/baseManagement/updateList/modal/ItemModal.vue';
|
|
import AccountRole from 'views/systemManagement/accountManagement/modal/RoleModal.vue';
|
|
import AccountRole from 'views/systemManagement/accountManagement/modal/RoleModal.vue';
|
|
import MultFisson from 'views/photoManagement/photoVerifyManagement/modal/MultFissonModal.vue';
|
|
import MultFisson from 'views/photoManagement/photoVerifyManagement/modal/MultFissonModal.vue';
|
|
|
|
+import MultAudit from 'views/photoManagement/photoVerifyManagement/modal/MultAuditModal.vue';
|
|
|
|
|
|
const modal = (Component, props) => {
|
|
const modal = (Component, props) => {
|
|
let _component = null;
|
|
let _component = null;
|
|
@@ -43,6 +44,13 @@ const modal = (Component, props) => {
|
|
document.body.appendChild(_component.$el);
|
|
document.body.appendChild(_component.$el);
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+let MultAuditModal = data => {
|
|
|
|
+ modal(MultAudit, data);
|
|
|
|
+};
|
|
|
|
+Vue.prototype.$MultAuditModal = params => {
|
|
|
|
+ MultAuditModal(params);
|
|
|
|
+};
|
|
|
|
+
|
|
let MultFissonModal = data => {
|
|
let MultFissonModal = data => {
|
|
modal(MultFisson, data);
|
|
modal(MultFisson, data);
|
|
};
|
|
};
|