123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <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>
|