This commit is contained in:
墨大叔 2024-09-16 10:03:32 +08:00
parent 7c70024fa0
commit cc53932df1
3 changed files with 14 additions and 7 deletions

View File

@ -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 {

View File

@ -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();

View File

@ -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();