Files
cmanager/src/views/util/data.vue
2024-02-02 15:04:47 +08:00

200 lines
6.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<basic-container>
<h3>数据展示</h3>
<avue-data-pay :option="option"></avue-data-pay>
</basic-container>
</template>
<script>
export default {
data() {
return {
option: {
span: 8,
data: [
{
title: "后台模版",
src: "./img/bg/vip1.png",
money: "299",
dismoney: "199",
tip: "/永久",
color: "#808695",
subtext: "购买",
click: () => {
this.box = true;
},
list: [
{
title: "点击体验",
href: "https://cli1.avue.top",
check: true
},
{
title: "面向全屏幕尺寸的响应式适配能力",
check: true
},
{
title: "支持IE9+等系列浏览器",
check: true
},
{
title: "全新的前端错误日志监控机制",
check: true
},
{
title: "基于最新的avuex底层开发",
check: true
},
{
title: "前端路由动态服务端加载",
check: true
},
{
title: "灵活的多款主题自由配置",
check: true
},
{
title: "模块的可拆卸化,达到开箱即用",
check: true
},
{
title: "免费的私人git私服"
},
{
title: "专属会员群"
},
{
title: "前端最新干货分享"
},
{
title: "赠送 Avue-cli脚手架文档价值¥59.99",
href: "https://www.kancloud.cn/smallwei/avue"
},
{
title: "赠送 Avue 修仙系列视频教程",
href: "https://www.bilibili.com/video/av24644922",
check: true
}
]
},
{
title: "Avuex源码",
src: "./img/bg/vip2.png",
color: "#ffa820",
money: "999",
dismoney: "399",
tip: "/永久",
subtext: "购买",
click: () => {
this.box = true;
},
list: [
{
title: "一键集成表格的导出excel,打印,等功能",
check: true
},
{
title: "底层代码可重用轻松对接多个UI框架",
check: true
},
{
title: "底层更加完善的开发错误调试机制",
check: true
},
{
title: "一套代码多个终端自适应",
check: true
},
{
title: "一键集成表格的导出excel打印等常用功能",
check: true
},
{
title: "表格的批量操作,表单的级联操作更加便捷",
check: true
},
{
title: "新增大量常用组件(搜索,选项卡)",
check: true
},
{
title: "新增大量全新可配置的骚属性",
check: true
},
{
title: "丰富的数据展示模版组件包",
check: true
},
{
title: "专属的开发者文档,助你快速掌握",
check: true
},
{
title: "赠送 Avue-cli脚手架文档价值¥59.99",
href: "https://www.kancloud.cn/smallwei/avue",
check: true
},
{
title: "赠送 Avue 修仙系列视频教程",
href: "https://www.bilibili.com/video/av24644922",
check: true
}
]
},
{
title: "全家桶",
src: "./img/bg/vip3.png",
color: "#ef4868",
money: "999.99",
dismoney: "399.99",
tip: "/永久",
subtext: "购买",
click: () => {
this.box = true;
},
list: [
{
title: "授权商业化开发,永久更新授权使用",
check: true
},
{
title: "后期更新和新产品将全部免费",
check: true
},
{
title: "拥有avuex系列的全部特权和全部源码",
check: true
},
{
title: "免费的私人git私服",
check: true
},
{
title: "专属会员群",
check: true
},
{
title: "前端最新干货分享",
check: true
},
{
title: "赠送 Avue-cli脚手架文档价值¥59.99",
href: "https://www.kancloud.cn/smallwei/avue",
check: true
},
{
title: "赠送 Avue 修仙系列视频教程",
href: "https://www.bilibili.com/video/av24644922",
check: true
}
]
}
]
}
};
}
};
</script>
<style>
</style>