修改字体

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> </script>
<style> <style>
body{
font-family: "Blue Sky Noto"!important;
}
#app { #app {
height: 100%; height: 100%;
} }
+1 -1
View File
@@ -8,7 +8,7 @@
cursor: pointer; cursor: pointer;
margin-right: 50px; margin-right: 50px;
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 500;
display: inline-block; display: inline-block;
} }
.operator-text:last-child{ .operator-text:last-child{
+15 -2
View File
@@ -31,9 +31,15 @@
</template> </template>
<script> <script>
import { getAction, postAction } from '@/api/manage'
export default { export default {
name: 'index', name: 'index',
props: ['query', 'value'], props: {
url:{
type: Object,
default: {}
}
},
data() { data() {
return { return {
loading: true, loading: true,
@@ -193,7 +199,14 @@
this.visible = false this.visible = false
}, },
handleSubmit() { 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() { onChange() {
+1 -1
View File
@@ -167,7 +167,7 @@
width: 20%; width: 20%;
min-width: 90px; min-width: 90px;
display: inline-block; display: inline-block;
font-weight: bold; font-weight: 500;
font-size: 14px; font-size: 14px;
margin-right: 16px; margin-right: 16px;
margin-top: 3px; margin-top: 3px;
@@ -114,8 +114,9 @@
addInfo: 'document/bussDocumentLibraryEO/addInfo', //新增 addInfo: 'document/bussDocumentLibraryEO/addInfo', //新增
updateInfo: 'document/bussDocumentLibraryEO/updateInfo', //编辑 updateInfo: 'document/bussDocumentLibraryEO/updateInfo', //编辑
getDocumentInfo: 'document/bussDocumentLibraryEO/getDocumentInfoById', //查看 getDocumentInfo: 'document/bussDocumentLibraryEO/getDocumentInfoById', //查看
deleteBatch: 'document/bussDocumentLibraryEO/deleteBatch' //删除 deleteBatch: 'document/bussDocumentLibraryEO/deleteBatch', //删除
}, pullMessage:'document/bussDocumentLibraryEO/pullMessage',//推送
},
idList: [] idList: []
} }
}, },