hookehuyr

✨ feat: 多个幼儿园的标题高度保持一致

...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Author: hookehuyr hookehuyr@gmail.com 2 * @Author: hookehuyr hookehuyr@gmail.com
3 * @Date: 2022-05-27 08:59:09 3 * @Date: 2022-05-27 08:59:09
4 * @LastEditors: hookehuyr hookehuyr@gmail.com 4 * @LastEditors: hookehuyr hookehuyr@gmail.com
5 - * @LastEditTime: 2022-06-05 21:49:34 5 + * @LastEditTime: 2022-06-07 14:54:14
6 * @FilePath: /tswj/.eslintrc.js 6 * @FilePath: /tswj/.eslintrc.js
7 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE 7 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
8 */ 8 */
...@@ -27,5 +27,7 @@ module.exports = { ...@@ -27,5 +27,7 @@ module.exports = {
27 "vue/singleline-html-element-content-newline": 0, // 在单行元素的内容之前和之后需要换行符 27 "vue/singleline-html-element-content-newline": 0, // 在单行元素的内容之前和之后需要换行符
28 "vue/first-attribute-linebreak": 0, // 强制第一个属性需要换行 28 "vue/first-attribute-linebreak": 0, // 强制第一个属性需要换行
29 "vue/multi-word-component-names": 0, // 要求组件名称始终为多字 29 "vue/multi-word-component-names": 0, // 要求组件名称始终为多字
30 + "vue/html-indent": 0, // 执行一致的缩进
31 + "vue/html-closing-bracket-newline": 0, // 在标签的右括号之前要求或禁止换行
30 } 32 }
31 } 33 }
......
1 <template> 1 <template>
2 <div class="choose-book-page content-bg"> 2 <div class="choose-book-page content-bg">
3 <div class="modify-top" /> 3 <div class="modify-top" />
4 - <div v-if="kg_id" :class="[kgInfo.multi_name ? 'height6rem' : 'height3rem', 'belong-school']"> 4 + <!-- <div v-if="kg_id" :class="[kgInfo.multi_name ? 'height6rem' : 'height3rem', 'belong-school']"> -->
5 + <div v-if="kg_id" :class="[kgInfo.multi_name ? 'height3rem' : 'height3rem', 'belong-school']">
5 <van-row align="center" justify="center" style="position: relative; top: 50%; transform: translateY(-50%)"> 6 <van-row align="center" justify="center" style="position: relative; top: 50%; transform: translateY(-50%)">
6 <van-col span="2"> 7 <van-col span="2">
7 <van-image 8 <van-image
......