dai 3 years ago
parent
commit
75879f081e
  1. 8
      src/views/modules/communityParty/article/drafts.vue

8
src/views/modules/communityParty/article/drafts.vue

@ -104,9 +104,9 @@ export default {
limit: 1, limit: 1,
editDisabled: true, editDisabled: true,
rules: [], rules: [],
value: [], value: () => [],
supKeys: ["imgUrlArr", "imgUrl"], supKeys: ["imgUrlArr", "imgUrl"],
supValues: [[], ""], supValues: [() => [], ""],
beforeImgUpload(file, item, that) { beforeImgUpload(file, item, that) {
console.log(file); console.log(file);
const isLt1M = file.size / 1024 / 1024 < 10; const isLt1M = file.size / 1024 / 1024 < 10;
@ -217,8 +217,8 @@ export default {
label: "以组织名义", label: "以组织名义",
optionList: [ optionList: [
{ {
label: agencyId, label: agencyName,
value: agencyName, value: agencyId,
type: "agency", type: "agency",
}, },
], ],

Loading…
Cancel
Save