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