租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
300 B

2 months ago
3 months ago
2 months ago
3 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
3 months ago
  1. import { getConfig } from "@/common/api.js"
  2. export default {
  3. state: {
  4. },
  5. getters: {
  6. },
  7. mutations: {
  8. // 初始化配置
  9. initConfig(state){
  10. getConfig({}).then(response=>{
  11. uni.setStorageSync('configList', response.result)
  12. }).catch(error=>{
  13. })
  14. },
  15. },
  16. actions: {}
  17. }