mirror of
https://gitee.com/dromara/go-view.git
synced 2025-02-24 16:22:57 +08:00
commit
feb39bde44
@ -14,6 +14,8 @@ export const WritingModeObject = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const option = {
|
export const option = {
|
||||||
|
link:'',
|
||||||
|
linkHead:'http://',
|
||||||
dataset: '我是文本',
|
dataset: '我是文本',
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
fontColor: '#ffffff',
|
fontColor: '#ffffff',
|
||||||
|
@ -5,6 +5,11 @@
|
|||||||
<n-input v-model:value="optionData.dataset" size="small"></n-input>
|
<n-input v-model:value="optionData.dataset" size="small"></n-input>
|
||||||
</setting-item>
|
</setting-item>
|
||||||
</setting-item-box>
|
</setting-item-box>
|
||||||
|
<setting-item-box name="链接" :alone="true">
|
||||||
|
<setting-item>
|
||||||
|
<n-input-group><n-select v-model:value="optionData.linkHead" size="small" :style="{ width: '33%' }" :options="linkHeadOptions" /><n-input v-model:value="optionData.link" size="small"></n-input><n-button :disabled="!optionData.link" secondary size="small" @click="handleLinkClick" >跳转</n-button></n-input-group>
|
||||||
|
</setting-item>
|
||||||
|
</setting-item-box>
|
||||||
</collapse-item>
|
</collapse-item>
|
||||||
|
|
||||||
<collapse-item name="样式" :expanded="true">
|
<collapse-item name="样式" :expanded="true">
|
||||||
@ -69,7 +74,6 @@ import {
|
|||||||
SettingItemBox,
|
SettingItemBox,
|
||||||
SettingItem
|
SettingItem
|
||||||
} from '@/components/Pages/ChartItemSetting'
|
} from '@/components/Pages/ChartItemSetting'
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
optionData: {
|
optionData: {
|
||||||
type: Object as PropType<typeof option>,
|
type: Object as PropType<typeof option>,
|
||||||
@ -84,4 +88,15 @@ const verticalOptions = [{
|
|||||||
label: WritingModeEnum.VERTICAL,
|
label: WritingModeEnum.VERTICAL,
|
||||||
value: WritingModeObject[WritingModeEnum.VERTICAL]
|
value: WritingModeObject[WritingModeEnum.VERTICAL]
|
||||||
}]
|
}]
|
||||||
|
const handleLinkClick = ()=>{
|
||||||
|
window.open(props.optionData.linkHead+props.optionData.link)
|
||||||
|
}
|
||||||
|
const linkHeadOptions = [{
|
||||||
|
label: 'http://',
|
||||||
|
value: 'http://'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'https://',
|
||||||
|
value: 'https://'
|
||||||
|
}]
|
||||||
</script>
|
</script>
|
||||||
|
@ -15,7 +15,10 @@
|
|||||||
|
|
||||||
background-color:${backgroundColor}`"
|
background-color:${backgroundColor}`"
|
||||||
>
|
>
|
||||||
{{ option.dataset }}
|
<n-button v-if="link" @click="click" text>
|
||||||
|
{{ dataset }}
|
||||||
|
</n-button>
|
||||||
|
<span v-else>{{ dataset }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -35,6 +38,8 @@ const props = defineProps({
|
|||||||
|
|
||||||
const { w, h } = toRefs(props.chartConfig.attr)
|
const { w, h } = toRefs(props.chartConfig.attr)
|
||||||
const {
|
const {
|
||||||
|
linkHead,
|
||||||
|
link,
|
||||||
dataset,
|
dataset,
|
||||||
fontColor,
|
fontColor,
|
||||||
fontSize,
|
fontSize,
|
||||||
@ -68,6 +73,11 @@ watch(
|
|||||||
useChartDataFetch(props.chartConfig, useChartEditStore, (newData: string) => {
|
useChartDataFetch(props.chartConfig, useChartEditStore, (newData: string) => {
|
||||||
option.dataset = newData
|
option.dataset = newData
|
||||||
})
|
})
|
||||||
|
|
||||||
|
//打开链接
|
||||||
|
const click = () => {
|
||||||
|
window.open(linkHead.value+link.value)
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
Loading…
Reference in New Issue
Block a user