修改字体
This commit is contained in:
@@ -92,6 +92,9 @@
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
body{
|
||||
font-family: "Blue Sky Noto"!important;
|
||||
}
|
||||
#app {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@@ -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{
|
||||
|
||||
@@ -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() {
|
||||
|
||||
|
||||
@@ -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: []
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user