12345678910111213141516171819202122 |
- export default {
- namespaced: true,
- state: {
- uploadVisible: false,
- fileList: [],
- successList: [],
- errorList: [],
- },
- getters: {
- },
- mutations: {
- updata(state, payload) {
- for (const key in payload) {
- state[key] = payload[key]
- }
- }
- },
- actions: {
- }
- }
|