上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 70 下一页
摘要: <style lang="less" scoped> div /deep/ .ant-modal-content{ height: 600px; width: 1000px; } div /deep/ .ant-modal-body{ height: 80%; width: 100%; } </st 阅读全文
posted @ 2021-05-08 10:55 不带R的墨菲特 阅读(1300) 评论(1) 推荐(0)
摘要: 先说下效果: 代码: <template> <div> <a-card title="form-data" :bordered="true" style="width: 40%"> <div> <a-form ref="form" layout="inline" :model="form" > <d 阅读全文
posted @ 2021-05-07 16:12 不带R的墨菲特 阅读(427) 评论(0) 推荐(0)
摘要: 1. import JsonViewer from 'vue-json-viewer' 只可以读: 案例: <div style=" width: 1000px; margin: auto; margin-top: 35px;"> <json-viewer v-model="form.headers 阅读全文
posted @ 2021-05-05 12:27 不带R的墨菲特 阅读(1434) 评论(0) 推荐(0)
摘要: <template> <div> <div id="components-form-demo-advanced-search"> <a-form class="ant-advanced-search-form" :form="form" :label-col="{ span: 5 }" :wrapp 阅读全文
posted @ 2021-05-01 04:02 不带R的墨菲特 阅读(154) 评论(0) 推荐(0)
摘要: 1.文本双向绑定: 语法:{{ var}} 实例: 文本插值 <div id="app"> <p>{{ message }}</p> </div> <script> new Vue({ el: '#app', data: { message: '<h1>菜鸟教程</h1>' } }) </scrip 阅读全文
posted @ 2021-04-29 16:06 不带R的墨菲特 阅读(220) 评论(0) 推荐(0)
摘要: <template> <div> <div><formsearch></formsearch></div> <!-- <div><modalbox></modalbox></div> --> <div> <a-table :columns="columns" :data-source="data" 阅读全文
posted @ 2021-04-29 15:42 不带R的墨菲特 阅读(2981) 评论(0) 推荐(0)
摘要: vue2.x 适合使用 main.js如下: import 'ant-design-vue/dist/antd.css'; import { message } from 'ant-design-vue'; Vue.prototype.$message = message; Vue.use(Antd 阅读全文
posted @ 2021-04-28 17:34 不带R的墨菲特 阅读(1515) 评论(0) 推荐(0)
摘要: <template> <a-table :columns="columns" :data-source="data" :scroll="{ x: 1300,y:1500}" class="tb_list" ref="table" :pagination="{ current: table.pageN 阅读全文
posted @ 2021-04-28 15:09 不带R的墨菲特 阅读(353) 评论(0) 推荐(0)
摘要: npm remove request npm install request 自己测试的,网上很多改webpack.conf 的没啥用我压根没动那里 阅读全文
posted @ 2021-04-26 19:22 不带R的墨菲特 阅读(597) 评论(1) 推荐(0)
摘要: 设置 router/index.js router.beforeEach((to, from, next) => { if (to.name !== 'login' && !isAuthenticated) next({ name: 'login' }) else next() }) 完整设置ind 阅读全文
posted @ 2021-04-26 17:23 不带R的墨菲特 阅读(310) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 70 下一页