dashan
2 years ago
8 changed files with 175 additions and 103 deletions
@ -1,7 +1,8 @@
@@ -1,7 +1,8 @@
|
||||
import service from "../../utils/request"; |
||||
export const sendQuestion= (param)=>{ |
||||
export const sendQuestion= (params)=>{ |
||||
return service({//获取新闻列表
|
||||
url:'/bot?question='+param, |
||||
method:'get' |
||||
url:'/bot', |
||||
method:'get', |
||||
params |
||||
}) |
||||
} |
@ -1,49 +0,0 @@
@@ -1,49 +0,0 @@
|
||||
<template> |
||||
<q-item |
||||
clickable |
||||
tag="a" |
||||
target="_blank" |
||||
:href="link" |
||||
> |
||||
<q-item-section |
||||
v-if="icon" |
||||
avatar |
||||
> |
||||
<q-icon :name="icon" /> |
||||
</q-item-section> |
||||
|
||||
<q-item-section> |
||||
<q-item-label>{{ title }}</q-item-label> |
||||
<q-item-label caption> |
||||
{{ caption }} |
||||
</q-item-label> |
||||
</q-item-section> |
||||
</q-item> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'EssentialLink', |
||||
props: { |
||||
title: { |
||||
type: String, |
||||
required: true |
||||
}, |
||||
|
||||
caption: { |
||||
type: String, |
||||
default: '' |
||||
}, |
||||
|
||||
link: { |
||||
type: String, |
||||
default: '#' |
||||
}, |
||||
|
||||
icon: { |
||||
type: String, |
||||
default: '' |
||||
} |
||||
} |
||||
} |
||||
</script> |
Loading…
Reference in new issue