diff --git a/src/views/dashboard/Brief.vue b/src/views/dashboard/Brief.vue
index 6bc1a28..462dc70 100644
--- a/src/views/dashboard/Brief.vue
+++ b/src/views/dashboard/Brief.vue
@@ -250,7 +250,7 @@ export default {
     .card-panel-description {
       font-weight: 700;
       width: fit-content;
-      min-width: 10em;
+      min-width: 8em;
       height: 88px;
 
       .card-panel-text {
diff --git a/src/views/system/article/index.vue b/src/views/system/article/index.vue
index 2d998fa..0bb054b 100644
--- a/src/views/system/article/index.vue
+++ b/src/views/system/article/index.vue
@@ -275,15 +275,18 @@ export default {
     submitForm() {
       this.$refs["form"].validate(valid => {
         if (valid) {
-          this.form.content = encodeURI(this.form.content);
+          let data = {
+            ...this.form,
+            content: encodeURI(this.form.content)
+          }
           if (this.form.articleId != null) {
-            updateArticle(this.form).then(response => {
+            updateArticle(data).then(response => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
             });
           } else {
-            addArticle(this.form).then(response => {
+            addArticle(data).then(response => {
               this.$modal.msgSuccess("新增成功");
               this.open = false;
               this.getList();
diff --git a/src/views/system/device/index.vue b/src/views/system/device/index.vue
index aeaa725..fdd707a 100644
--- a/src/views/system/device/index.vue
+++ b/src/views/system/device/index.vue
@@ -286,7 +286,7 @@
               <el-input v-model="form.fill" placeholder="请输入填充物" maxlength="200" show-word-limit/>
           </form-col>
           <form-col :span="span * 2" label="功能介绍" prop="funcInfo">
-            <el-input v-model="form.funcInfo" type="textarea" placeholder="请输入功能介绍" maxlength="1000" show-word-limit/>
+            <editor v-model="form.funcInfo" :min-height="200"/>
           </form-col>
           <form-col :span="span * 2" label="备注" prop="remark">
             <el-input v-model="form.remark" type="textarea" placeholder="请输入备注" maxlength="200" show-word-limit/>
@@ -611,14 +611,18 @@ export default {
     submitForm() {
       this.$refs["form"].validate(valid => {
         if (valid) {
+          let data = {
+            ...this.form,
+            funcInfo: encodeURI(this.form.funcInfo)
+          }
           if (this.form.deviceId != null) {
-            updateDevice(this.form).then(response => {
+            updateDevice(data).then(response => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
             });
           } else {
-            addDevice(this.form).then(response => {
+            addDevice(data).then(response => {
               this.$modal.msgSuccess("新增成功");
               this.open = false;
               this.getList();