| 12345678910111213141516171819 |
- const state = {
- updateTime: '',
- imgpath:"https://zkzh-2025.oss-cn-beijing.aliyuncs.com",
- logoname:"中康未来",
- appid: '',
- };
- export default {
- namespaced: true,
- state,
- mutations: {
- SET_UPDATATIME(state, time) {
- state.updateTime = time;
- }
- },
- actions: {
-
- },
- };
|