123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <template>
- <el-form ref="form" :model="form" label-width="120px">
- <el-form-item label="设备名称">
- <el-input v-model="form.name" size="mini"></el-input>
- </el-form-item>
- <el-form-item label="设备title">
- <el-input v-model="form.title" size="mini"></el-input>
- </el-form-item>
- <el-form-item label="设备描述">
- <el-input v-model="form.describe" type="textarea" :autosize="{ minRows: 2, maxRows: 4}"></el-input>
- </el-form-item>
- <el-form-item label="顺序号">
- <el-input v-model="form.sort" type="number" size="mini"></el-input>
- </el-form-item>
- <el-form-item label="宣传图">
- <el-upload
- class="avatar-uploader"
- :action="uploadAction"
- :show-file-list="false"
- :on-success="onUploadSuccess"
- :before-upload="onBeforeUpload"
- >
- <img v-if="form.icon" :src="form.icon" class="avatar" />
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
- </el-upload>
- </el-form-item>
- <el-form-item label="设备内容">
- <div id="bar" class="bar"></div>
- <div id="editor" class="editor"></div>
- </el-form-item>
- <!-- <el-form-item label="跳转地址">
- <el-input v-model="form.url"></el-input>
- </el-form-item>-->
- <el-form-item>
- <el-button type="primary" @click="save" size="mini">保存</el-button>
- <el-button @click="goBack" size="mini">取消</el-button>
- </el-form-item>
- </el-form>
- </template>
- <script>
- var E = require("wangeditor");
- export default {
- data() {
- return {
- uploadAction: process.env.SERVER_PATH + "upload",
- form: {
- id: 0,
- name: "",
- title: "",
- icon: "",
- describe: "",
- sort: 0
- },
- html: "",
- editor: null
- };
- },
- watch: {
- html(newVal) {
- if (this.editor) {
- this.editor.txt.html(newVal);
- }
- }
- },
- methods: {
- save: function() {
- var that = this;
- this.$http
- .equipmentSave(
- {
- id: this.form.id,
- name: this.form.name,
- title: this.form.title,
- icon: this.form.icon,
- html: this.html,
- describe: this.form.describe,
- sort: this.form.sort
- },
- this
- )
- .then(res => {
- if (res.code === 0) {
- this.$message({
- message: "操作成功",
- type: "success",
- duration: 1000,
- onClose: function() {
- that.goBack();
- }
- });
- }
- });
- },
- goBack: function() {
- this.$router.back();
- },
- onBeforeUpload: function(file) {
- const isJPG = file.type === "image/jpeg";
- const isPNG = file.type === "image/png";
- if (!isJPG && !isPNG) {
- this.$message.error("上传商品图标只能是 JPG/PNG 格式!");
- return false;
- } else {
- return true;
- }
- },
- onUploadSuccess: function(res, file) {
- if (res.code != 0) {
- this.$message.error(
- "上传图片失败 原因:" + res.msg + "(" + res.code + ")"
- );
- return;
- } else {
- this.form.icon = res.obj;
- }
- }
- },
- mounted: function() {
- var that = this;
- var editor = new E("#bar", "#editor");
- editor.customConfig.uploadImgShowBase64 = true;
- //editor.customConfig.uploadImgServer = process.env.SERVER_PATH + 'editupload'
- //editor.customConfig.uploadFileName = 'file'
- editor.customConfig.onchange = function(html) {
- that.html = html;
- };
- editor.customConfig.colors = [
- '#00000000',
- '#000000',
- '#eeece0',
- '#1c487f',
- '#4d80bf',
- '#c24f4a',
- '#8baa4a',
- '#7b5ba1',
- '#46acc8',
- '#f9963b',
- '#ffffff'
- ];
- editor.create();
- this.editor = editor;
- var id = this.$route.query.id;
- if (id === 0) {
- return;
- }
- this.form.id = id;
- this.$http.equipmentGet({ id: id }, this).then(res => {
- if (res.code === 0) {
- this.form.name = res.obj.name;
- this.form.title = res.obj.title;
- this.form.icon = res.obj.icon;
- this.form.describe = res.obj.describe;
- this.html = res.obj.html;
- this.form.sort = res.obj.sort;
- }
- });
- }
- };
- </script>
- <style scoped>
- .w-e-text-container,
- .w-e-toolbar {
- border: 1px solid #dcdfe6;
- }
- .w-e-toolbar {
- border-bottom: none;
- }
- .avatar-uploader img {
- height: 100%;
- width: 100%;
- }
- .el-form-item {
- margin-bottom: 0px;
- }
- </style>
|