修改字体

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
+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() {