ci:持续集成

This commit is contained in:
佚名程序员 2023-03-13 19:02:44 +08:00
parent 43e194e8e9
commit f995691e10
5 changed files with 12 additions and 7 deletions

View File

@ -43,6 +43,9 @@ module.exports = {
'vue/singleline-html-element-content-newline': 'off', //要求在单行元素的内容之前和之后有一个换行符
'vue/max-attributes-per-line': 'off', //执行每行的最大属性数(被 prettier 最大单行控制了暂off)
'vue/multi-word-component-names': 'off', //要求组件名称始终为多字
'@typescript-eslint/ban-ts-comment': 'off', // 不允许@ts-<指令>评论或要求指令后的描述
'@typescript-eslint/ban-types': 'off', // 不允许某些类型
'@typescript-eslint/no-non-null-assertion': 'off', // 不允许使用!后缀操作符的非空断言
},
globals: {
//可以定义全局中的变量的权限(只读,可读可写)

View File

@ -21,8 +21,8 @@ export default defineComponent({
default: '',
},
},
setup(props) {
const _props = props;
setup(_props) {
// const _props = props;
return {};
},
});

View File

@ -1,6 +1,7 @@
<script lang="ts" setup name="Iconify">
import { computed, ref, unref } from 'vue';
import { assign } from 'lodash-es';
import { isBoolean } from '@/utils/is';
const props = defineProps({
icon: {
@ -15,8 +16,9 @@ const props = defineProps({
});
const iconSize = ref<string | boolean>(props.size ? `${props.size}rpx` : false);
const style = computed(() => {
return assign(unref(iconSize) ? { width: unref(iconSize), height: unref(iconSize) } : {}, props.color ? { color: props.color } : {});
let style = computed(() => {
let ISize = unref(iconSize);
return assign({ width: isBoolean(ISize) ? '' : ISize, height: isBoolean(ISize) ? '' : ISize }, { color: props.color });
});
const emit = defineEmits(['click']);

View File

@ -70,10 +70,10 @@ const onBackHome = () => {
<slot name="left">
<view class="_u_h-full _u_flex _u_items-center">
<template v-if="backShow">
<Iconify @click="onBack" :size="navbarLeftIconSize" :color="navbarTitleColor" icon="i-humbleicons-chevron-left" />
<Iconify @click="onBack" :size="navbarLeftIconSize" :color="navbarTitleColor===true?undefined:navbarTitleColor" icon="i-humbleicons-chevron-left" />
</template>
<template v-if="backHomeShow">
<Iconify @click="onBackHome" :size="navbarLeftIconSize" :color="navbarTitleColor" icon="i-iconoir-home-simple-door" />
<Iconify @click="onBackHome" :size="navbarLeftIconSize" :color="navbarTitleColor===true?undefined:navbarTitleColor" icon="i-iconoir-home-simple-door" />
</template>
</view>
</slot>

View File

@ -33,6 +33,6 @@ export function jumpLogin(path: string) {
* @param prefix
*/
export function filterPath(url: string, prefix = '') {
const path = url.split('?')[0];
const path = url.split('?')[0] || '';
return prefix + (path.startsWith('/') ? path.substring(1) : path);
}