<el-input id="input-box" placeholder="在这里输入内容" style="width: 250px;"></el-input>为什么没办法输入
时间: 2023-12-05 08:15:17 浏览: 47
这可能是因为你使用的是Vue.js框架中的ElementUI组件库,但是没有正确引入相关的依赖文件。你需要在HTML文件中引入ElementUI组件库的CSS和JavaScript文件,以确保组件正确渲染和工作。同时,你也需要确保el-input组件的v-model属性绑定到了你的数据模型中,以便输入框能够正确地接收和传递数据。
相关问题
<el-dialog :title="formEditTitle" :visible.sync="dialogEdittVisible" width="700px"> <div style="display: flex; justify-content: center; height: 40px;"> <span style="align-self: center;">总量:</span> <el-input id="input-box" @input="forceUpdate" placeholder="在这里输入内容" v-model="dialogObj.name" style="width: 250px;"></el-input> <div class="radiobox" style="flex: 1; height: 100px; text-align: center; margin-left: 20px;"> <el-form> <span>分项:</span> <el-select filterable v-model="dialogObj.indexName" placeholder="请选择" @change="showSelectedValue" style="flex: 1; height: 100px; text-align: center;"> <el-option v-for="(itemOne, item) in templateList" :key="item" :label="itemOne" :value="itemOne" > </el-option> </el-select> </el-form> </div> <el-button @click="addToSelectedData" style="height: 40px;" :clearable="false">添加</el-button> </div> <el-table :data="dialogObj.children"> <el-table-column prop="name" label="分项"></el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <el-button @click="deleteSelectedData(scope.$index)">删除</el-button> </template>怎么实现提交之后刷新页面
如果你想在提交数据后刷新页面,可以在提交数据成功的回调函数中使用 `window.location.reload()` 方法来刷新页面。举个例子,你可以在提交数据的方法中添加以下代码:
```
axios.post('/submitData', this.formData).then(response => {
// 提交成功后的回调函数
window.location.reload(); // 刷新页面
}).catch(error => {
console.log(error);
});
```
这样,在提交数据成功后,页面就会重新加载并刷新数据。当然,为了避免重复提交数据,你还需要在提交数据的按钮上添加禁用属性,例如:
```
<el-button :loading="submitting" @click="submitData" :disabled="submitting">提交</el-button>
```
其中,`submitting` 是一个响应式的变量,用来表示当前是否正在提交数据。在提交数据方法中,你需要将 `submitting` 设置为 `true`,并在提交成功或失败后将其设置为 `false`。
解释代码<template> <div class="paragraph-info"> <!-- 显示段落内容 --> <div class="header"> <el-button text type="danger" @click="state.clearAll">一键清空</el-button> <span>共计:</span> <b>{{ state.data.length }}</b> </div> <div class="box"> <template v-if="state.data.length > 0"> <div class="item" v-for="(i, k) in state.data" :key="k"> <div class="tp"> <div class="tt"> {{ i.title }} </div> <div class="act"> <el-button size="small" type="primary" text @click="state.open(i)" >编辑</el-button > <el-button size="small" type="danger" text @click="state.del(i)" >删除</el-button > </div> </div> <div class="cnt"> <div v-html="i.content"></div> </div> </div> </template> <template v-else> <div class="no-data">点击下方“新增段落”按钮新增。</div> </template> </div> <div class="plus-btn" @click="state.open()">新增段落</div> </div> <!-- 新增窗口 --> <el-dialog v-model="state.dialog" append-to-body :close-on-click-modal="false" destroy-on-close width="996px" top="5%" > <template #header> <slot>信息更新</slot> </template> <el-card> <el-form :model="state.form" ref="formRef" label-position="top" :rules="state.rules" > <el-form-item label="标题" prop="title"> <el-input placeholder="请输入标题" v-model.number="state.form.title" ></el-input> </el-form-item> <el-form-item label="内容" prop="content"> <self-editor v-model="state.form.content"></self-editor> </el-form-item> </el-form> </el-card> <template #footer> <el-button type="primary" @click="state.handler()"> 保存 </el-button> <el-button @click="state.dialog = false">关闭</el-button> </template> </el-dialog> </template>
这段代码是一个Vue组件的模板代码,包含了一个用于显示段落信息的页面和一个用于新增或编辑段落的弹出窗口。具体解释如下:
1. 页面部分:
- 使用了一个名为paragraph-info的div作为组件的根元素;
- 在header中添加了一个清空按钮和一个显示段落数量的元素;
- 在box中使用了v-if和v-for指令来循环渲染每个段落的标题和内容,当段落数量为0时,显示一个“点击下方‘新增段落’按钮新增”提示;
- 在plus-btn中添加了一个用于打开弹出窗口的按钮。
2. 弹出窗口部分:
- 使用了一个el-dialog组件作为弹出窗口,绑定了一个dialog变量用于控制其显示和隐藏;
- 在header slot中添加了一个“信息更新”的标题;
- 在el-form中添加了两个el-form-item元素,用于输入段落标题和内容;
- 在el-form-item中使用了prop属性来指定字段名,使用了v-model指令来绑定输入框的内容;
- 在最后的footer slot中添加了一个保存按钮和一个关闭按钮,点击保存按钮后会触发handler方法保存表单数据。
阅读全文