Compare commits

..

No commits in common. 'develop' and 'soul2/views' have entirely different histories.

  1. 2
      src/layout/components/footer.vue
  2. 1
      src/store/modules/screen.js
  3. 3
      src/views/home/index.vue
  4. 4
      src/views/sodemo/index.vue

@ -1,6 +1,6 @@
<template> <template>
<div id="app-footer"> <div id="app-footer">
Soul2 | <a class="record-number" href="http://beian.miit.gov.cn/">粤ICP备2020098994号-1</a> Soul2 | <a class="record-number" href="http://beian.miit.gov.cn/">粤ICP备2020098994号</a>
</div> </div>
</template> </template>

@ -5,6 +5,7 @@ const state = {
const mutations = { const mutations = {
UPDATE_SCREEN_WIDTH(state, value) { UPDATE_SCREEN_WIDTH(state, value) {
state.screenWidth = value state.screenWidth = value
console.log('run update screen width')
} }
} }

@ -1,5 +1,8 @@
<template> <template>
<div id="home" :style="screenPadding"> <div id="home" :style="screenPadding">
<!-- 这是一个首页 <br>-->
<!-- 如你所见它现在还什么都没有但马上就会有了 <br>-->
<!-- By Soul2-->
<el-card shadow="always"> <el-card shadow="always">
<el-collapse :accordion="false" v-model="expand" style="text-align: left"> <el-collapse :accordion="false" v-model="expand" style="text-align: left">
<el-collapse-item name="openShow"> <el-collapse-item name="openShow">

@ -110,6 +110,10 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
#goto-btn {
text-align: left;
}
#goto-btn .el-button { #goto-btn .el-button {
margin-top: 7px; margin-top: 7px;
} }

Loading…
Cancel
Save