修改字体

This commit is contained in:
qq787203167
2022-02-25 11:43:30 +08:00
parent 6f0bb5372c
commit d7621fcdc7
5 changed files with 23 additions and 6 deletions
+3
View File
@@ -92,6 +92,9 @@
}
</script>
<style>
body{
font-family: "Blue Sky Noto"!important;
}
#app {
height: 100%;
}
+1 -1
View File
@@ -8,7 +8,7 @@
cursor: pointer;
margin-right: 50px;
font-size: 14px;
font-weight: 600;
font-weight: 500;
display: inline-block;
}
.operator-text:last-child{
+15 -2
View File
@@ -31,9 +31,15 @@
</template>
<script>
import { getAction, postAction } from '@/api/manage'
export default {
name: 'index',
props: ['query', 'value'],
props: {
url:{
type: Object,
default: {}
}
},
data() {
return {
loading: true,
@@ -193,7 +199,14 @@
this.visible = false
},
handleSubmit() {
getAction(this.url.pullMessage,{}).then((res)=>{
if (res.success){
this.$message.success(res.message)
this.visible = false
}else{
this.$message.warning(res.message)
}
})
},
onChange() {
+1 -1
View File
@@ -167,7 +167,7 @@
width: 20%;
min-width: 90px;
display: inline-block;
font-weight: bold;
font-weight: 500;
font-size: 14px;
margin-right: 16px;
margin-top: 3px;
@@ -114,8 +114,9 @@
addInfo: 'document/bussDocumentLibraryEO/addInfo', //新增
updateInfo: 'document/bussDocumentLibraryEO/updateInfo', //编辑
getDocumentInfo: 'document/bussDocumentLibraryEO/getDocumentInfoById', //查看
deleteBatch: 'document/bussDocumentLibraryEO/deleteBatch' //删除
},
deleteBatch: 'document/bussDocumentLibraryEO/deleteBatch', //删除
pullMessage:'document/bussDocumentLibraryEO/pullMessage',//推送
},
idList: []
}
},