摘要: npm install vue-quill-editor --save main.js 引入 import VueQuillEditor from 'vue-quill-editor' // require styles 引入样式 import 'quill/dist/quill.core.css' 阅读全文
posted @ 2020-06-23 21:22 EricBlog 阅读(874) 评论(0) 推荐(0) 编辑
摘要: <el-button type="danger" size="mini" icon="el-icon-delete" @click="removeById(scope.row.goods_id)"></el-button> // 删除 async removeById(goods_id){ cons 阅读全文
posted @ 2020-06-23 16:06 EricBlog 阅读(200) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <!-- 面包屑导航开始--> <el-breadcrumb separator-class="el-icon-arrow-right"> <el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-i 阅读全文
posted @ 2020-06-23 16:03 EricBlog 阅读(1461) 评论(0) 推荐(0) 编辑
摘要: Vue.filter('dateFormat', function(originVal) { const dt = new Date(originVal) const y = dt.getFullYear() const m = (dt.getMonth() + 1 + '').padStart(2 阅读全文
posted @ 2020-06-23 15:46 EricBlog 阅读(93) 评论(0) 推荐(0) 编辑
摘要: // 删除属性操作 async removeParams(attr_id){ const confirmResult = await this.$confirm('此操作将永久删除该参数, 是否继续?', '提示', { confirmButtonText: '确定', cancelButtonTe 阅读全文
posted @ 2020-06-23 10:29 EricBlog 阅读(3219) 评论(0) 推荐(0) 编辑