save
This commit is contained in:
parent
529557fc75
commit
1fdb683fc7
12
package.json
12
package.json
@ -47,17 +47,5 @@
|
|||||||
"vite-plugin-cdn-import": "0.3.5",
|
"vite-plugin-cdn-import": "0.3.5",
|
||||||
"vite-plugin-compression": "^0.5.1",
|
"vite-plugin-compression": "^0.5.1",
|
||||||
"vite-plugin-imagemin": "^0.6.1"
|
"vite-plugin-imagemin": "^0.6.1"
|
||||||
},
|
|
||||||
"husky":{
|
|
||||||
"hooks": {
|
|
||||||
"pre-commit": "lint-staged"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"lint-staged": {
|
|
||||||
"src/**": [
|
|
||||||
"prettier --write src/",
|
|
||||||
"eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
|
|
||||||
"git add"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -63,7 +63,7 @@ export default {
|
|||||||
style={{
|
style={{
|
||||||
width: this.tabStyleWidth || 100 / this.tabTexts.length + '%'
|
width: this.tabStyleWidth || 100 / this.tabTexts.length + '%'
|
||||||
}}
|
}}
|
||||||
onClick={( ) => this.changeIndex(index)}
|
onClick={() => this.changeIndex(index)}
|
||||||
>
|
>
|
||||||
<span> {item}</span>
|
<span> {item}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -188,7 +188,7 @@ import { mapState } from 'pinia'
|
|||||||
import Loading from '../../../components/Loading'
|
import Loading from '../../../components/Loading'
|
||||||
import { useBaseStore } from '@/store/pinia'
|
import { useBaseStore } from '@/store/pinia'
|
||||||
import { _checkImgUrl } from '@/utils'
|
import { _checkImgUrl } from '@/utils'
|
||||||
import $ from "jquery";
|
import $ from 'jquery'
|
||||||
|
|
||||||
let CALL_STATE = {
|
let CALL_STATE = {
|
||||||
REJECT: 0,
|
REJECT: 0,
|
||||||
|
|||||||
@ -90,7 +90,7 @@
|
|||||||
</SlideHorizontal>
|
</SlideHorizontal>
|
||||||
|
|
||||||
<transition name="fade">
|
<transition name="fade">
|
||||||
<BaseMask v-if="maskDialog" @click="maskDialog = false"/>
|
<BaseMask v-if="maskDialog" @click="maskDialog = false" />
|
||||||
</transition>
|
</transition>
|
||||||
|
|
||||||
<transition name="fade">
|
<transition name="fade">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user