newMsg.js 299 B

12345678910111213141516171819
  1. const state = {
  2. updateTime: '',
  3. imgpath:"https://zkzh-2025.oss-cn-beijing.aliyuncs.com",
  4. logoname:"中康未来",
  5. appid: '',
  6. };
  7. export default {
  8. namespaced: true,
  9. state,
  10. mutations: {
  11. SET_UPDATATIME(state, time) {
  12. state.updateTime = time;
  13. }
  14. },
  15. actions: {
  16. },
  17. };