Showing
9 changed files
with
25 additions
and
3 deletions
src/assets/images/1@2x.png
0 → 100644
1.97 KB
src/assets/images/2@2x.png
0 → 100644
2.1 KB
src/assets/images/3@2x.png
0 → 100644
2.15 KB
src/assets/images/icon-paihang@2x.png
0 → 100644
6.29 KB
src/assets/images/xiaohua@2x.png
0 → 100644
5.38 KB
| 1 | +/* | ||
| 2 | + * @Author: hookehuyr hookehuyr@gmail.com | ||
| 3 | + * @Date: 2022-05-25 18:34:17 | ||
| 4 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 5 | + * @LastEditTime: 2022-05-31 14:28:40 | ||
| 6 | + * @FilePath: /tswj/src/constant.js | ||
| 7 | + * @Description: | ||
| 8 | + */ | ||
| 1 | // 金数据表单 - 家长端 | 9 | // 金数据表单 - 家长端 |
| 2 | export const JSJ_FORM_C = 'https://jsjs.onwall.cn/f/NAGn1D'; | 10 | export const JSJ_FORM_C = 'https://jsjs.onwall.cn/f/NAGn1D'; |
| 3 | 11 | ||
| 4 | // 金数据表单 - 老师端 | 12 | // 金数据表单 - 老师端 |
| 5 | export const JSJ_FORM_B = 'https://jsj.onwall.cn/f/g7D0MT'; | 13 | export const JSJ_FORM_B = 'https://jsj.onwall.cn/f/g7D0MT'; |
| 14 | + | ||
| 15 | +// 颜色变量 | ||
| 16 | +export const styleColor = { | ||
| 17 | + baseColor: '#F9EA57' | ||
| 18 | +} | ... | ... |
| 1 | +/* | ||
| 2 | + * @Author: hookehuyr hookehuyr@gmail.com | ||
| 3 | + * @Date: 2022-05-26 10:08:06 | ||
| 4 | + * @LastEditors: hookehuyr hookehuyr@gmail.com | ||
| 5 | + * @LastEditTime: 2022-05-31 14:28:12 | ||
| 6 | + * @FilePath: /tswj/src/settings/designSetting.js | ||
| 7 | + * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE | ||
| 8 | + */ | ||
| 1 | import { ref } from 'vue'; | 9 | import { ref } from 'vue'; |
| 10 | +import { styleColor } from '@/constant.js'; | ||
| 2 | 11 | ||
| 3 | export const styleObject1 = ref({ | 12 | export const styleObject1 = ref({ |
| 4 | backgroundColor: '#FFFFFF', | 13 | backgroundColor: '#FFFFFF', |
| ... | @@ -7,9 +16,9 @@ export const styleObject1 = ref({ | ... | @@ -7,9 +16,9 @@ export const styleObject1 = ref({ |
| 7 | }) | 16 | }) |
| 8 | 17 | ||
| 9 | export const styleObject2 = ref({ | 18 | export const styleObject2 = ref({ |
| 10 | - backgroundColor: '#F9D95C', | 19 | + backgroundColor: styleColor.baseColor, |
| 11 | color: '#0B3A72', | 20 | color: '#0B3A72', |
| 12 | - borderColor: '#F9D95C' | 21 | + borderColor: styleColor.baseColor |
| 13 | }) | 22 | }) |
| 14 | 23 | ||
| 15 | export const styleObject3 = ref({ | 24 | export const styleObject3 = ref({ | ... | ... |
-
Please register or login to post a comment