摘要: module.exports = { // 选项... // publicPath: '/demo2', devServer: { port: 8001, // 端口号,如果端口号被占用,会自动提升1 host: "localhost", //主机名, 127.0.0.1, 真机 0.0.0.0 h 阅读全文
posted @ 2021-04-27 13:12 zjxgdq 阅读(123) 评论(0) 推荐(0)
摘要: <template> <div> <a-card :bordered="false" class="ant-pro-components-tag-select"> <a-form :form="form" layout="inline"> <standard-form-row grid last> 阅读全文
posted @ 2021-04-23 10:49 zjxgdq 阅读(349) 评论(0) 推荐(0)
摘要: <template> <div> <s-table ref="table" size="default" rowKey="id" :columns="columns" :data="loadData" :alert="true" :rowSelection="rowSelection" showPa 阅读全文
posted @ 2021-04-23 10:47 zjxgdq 阅读(431) 评论(0) 推荐(0)
摘要: <template> <div> <a-table @change="handleTableChange" :pagination="pagination" :columns="columns" :row-key="record => record.id" :data-source="data"> 阅读全文
posted @ 2021-04-23 10:41 zjxgdq 阅读(111) 评论(0) 推荐(0)
摘要: 方法一 var _res = [] this.a.sort() for (var i = 0; i < this.a.length;) { var count = 0 for (var j = i; j < this.a.length; j++) { if (this.a[i] this.a[j]) 阅读全文
posted @ 2021-04-15 14:36 zjxgdq 阅读(70) 评论(0) 推荐(0)
摘要: <template> <div> <a-carousel arrows dots-class="slick-dots slick-thumb"> <template #customPaging="props"> <a> <img :src="getImgUrl(props.i)" /> </a> < 阅读全文
posted @ 2021-04-13 09:37 zjxgdq 阅读(162) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/georgeleoo/p/11864866.html 阅读全文
posted @ 2021-03-17 14:55 zjxgdq 阅读(38) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/fundebug/p/10884896.html 阅读全文
posted @ 2021-03-17 10:13 zjxgdq 阅读(23) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/ressiry/p/10467559.html 阅读全文
posted @ 2021-03-15 17:09 zjxgdq 阅读(24) 评论(0) 推荐(0)
摘要: toDetail(item) { this.$router.push({ path: "/detail", name: "Detail", params: { id: item, }, }); // console.log(item); }, 阅读全文
posted @ 2021-03-15 12:02 zjxgdq 阅读(44) 评论(0) 推荐(0)