const { data } = await attributeid(row.id) this.form = data if (data.scope && data.scope.includes('.')) { // 判断是否包含分隔符 let [left, right] = data.scope.split('.'); // 分割字符串 this.form.scope1 = left // 输出左边的内容 this.form.scope2 = right // 输出右边的内容 delete data.scope } this.dialogVisible = true <el-input-number v-model="form.scope2" :step="1"></el-input-number> <el-input-number v-model="form.scope1" style="width: 250px;" placeholder="最大值" :step="1"></el-input-number> 在编辑时 数据回显 点击两边的加减只触发了一下 怎么解决 代码展示
时间: 2024-02-27 19:54:48 浏览: 58
根据你提供的代码,我看到你在两个 `<el-input-number>` 组件中都使用了 `v-model` 来绑定 `form.scope1` 和 `form.scope2`。这意味着它们共享相同的数据源。因此,当你点击其中一个组件时,另一个组件也会被更新,导致只触发了一次。
要解决这个问题,你可以使用 `computed` 属性来创建一个包装器,使每个组件都有自己的数据源。例如:
```
<el-input-number v-model="scope2" :step="1"></el-input-number>
<el-input-number v-model="scope1" style="width: 250px;" placeholder="最大值" :step="1"></el-input-number>
```
然后,在你的 `computed` 属性中,创建两个新的属性:
```
computed: {
scope1: {
get() {
return this.form.scope1;
},
set(val) {
this.form.scope1 = val;
}
},
scope2: {
get() {
return this.form.scope2;
},
set(val) {
this.form.scope2 = val;
}
}
}
```
这样,每个组件都有自己的数据源,就不会再出现值同步的问题了。
相关问题
const { data } = await attributeid(row.id) this.form = data if (data.scope && data.scope.includes('.')) { // 判断是否包含分隔符 let [left, right] = data.scope.split('.'); // 分割字符串 this.form.scope1 = left // 输出左边的内容 this.form.scope2 = right // 输出右边的内容 delete data.scope } this.dialogVisible = true <el-input-number v-model="form.scope2" :step="1"></el-input-number> 在编辑时 数据回显了 改动不了 怎么解决 代码展示
根据你提供的代码,可能的原因是在编辑时没有正确更新 `form.scope2` 的值。你可以尝试使用 `this.$forceUpdate()` 强制更新组件,或者在编辑时手动将 `form.scope2` 的值更新为用户输入的值,例如:
```
<el-input-number v-model="form.scope2" :step="1" @change="updateScope2"></el-input-number>
methods: {
updateScope2(val) {
this.form.scope2 = val;
},
}
```
这样,当用户改变 `el-input-number` 的值时,会触发 `@change` 事件,调用 `updateScope2` 方法将 `form.scope2` 的值更新为新的值。这样就能确保 `form.scope2` 的值与用户输入的值同步了。
另外,如果你需要在整个表单提交时一次性获取所有的值,可以考虑将 `el-input-number` 组件改为一个普通的输入框,并将用户输入的值作为一个字符串类型的值存储在 `form.scope2` 中,例如:
```
<el-input v-model="form.scope2" type="text"></el-input>
```
这样,当整个表单提交时,你可以将 `form.scope1` 和 `form.scope2` 拼接成一个完整的字符串,以便后端处理。
electricNo : "13675259" timers : [{startTime: "13:0:0", stopTime: "14:0:0"}, {startTime: "16:0:0", stopTime: "17:0:0"},…] 0 : {startTime: "13:0:0", stopTime: "14:0:0"} 1 : {startTime: "16:0:0", stopTime: "17:0:0"} 2 : {startTime: "16:0:0", stopTime: "0:0:0"} 3 : {startTime: "16:22:58", stopTime: "19:22:58"} timestamp : "1684380700000" type : 1 week : "1" 一周七天,每天的数据格式是这样的,使用elementUI, async getPorts () { const outputArr = [] const promises = [] for (let i = 1; i <= 7; i++) { promises.push( electricQuery({ electricId: ELECTRIC_ID, commandKey: 15, queryMode: 1, week: i }).then(({ data }) => { if (data[0]) { outputArr.push(data[0]) } }) ) } await Promise.all(promises) 这是一周的数据并且要把每天的数据中的timer对象中的数据渲染上去,,每天的数据在鼠标移入上去后出现编辑和重置两个按钮,代码怎么写
首先,在页面上渲染一周的数据,可以使用 `v-for` 循环遍历每天的数据。比如:
```html
<el-table :data="weekData">
<el-table-column prop="week" label="Week"></el-table-column>
<el-table-column prop="startTime" label="Start Time"></el-table-column>
<el-table-column prop="stopTime" label="Stop Time"></el-table-column>
<el-table-column label="Actions">
<template slot-scope="{ row }">
<el-button type="primary" @click="edit(row)">Edit</el-button>
<el-button type="danger" @click="reset(row)">Reset</el-button>
</template>
</el-table-column>
</el-table>
```
其中, `weekData` 是包含所有一周数据的数组, `edit` 和 `reset` 是编辑和重置按钮的点击事件处理函数。
接下来,我们来看如何渲染 `timer` 对象中的数据。可以在每个表格列中使用模板来实现。比如:
```html
<el-table-column label="Start Time">
<template slot-scope="{ row }">
<div v-for="(timer, index) in row.timers" :key="index">
{{ timer.startTime }} - {{ timer.stopTime }}
</div>
</template>
</el-table-column>
```
这里我们使用 `v-for` 循环遍历每个 `timer` 对象,并将其渲染为一个包含开始时间和结束时间的字符串。
最后,我们来看如何实现编辑和重置按钮的点击事件处理函数。可以使用 `el-dialog` 组件来实现编辑弹窗。比如:
```html
<el-dialog :visible.sync="dialogVisible" title="Edit">
<el-form :model="editForm">
<el-form-item label="Start Time">
<el-time-picker v-model="editForm.startTime" :picker-options="{ start: '00:00', step: '00:30', end: '23:30' }"></el-time-picker>
</el-form-item>
<el-form-item label="Stop Time">
<el-time-picker v-model="editForm.stopTime" :picker-options="{ start: '00:00', step: '00:30', end: '23:30' }"></el-time-picker>
</el-form-item>
</el-form>
<div slot="footer">
<el-button @click="dialogVisible = false">Cancel</el-button>
<el-button type="primary" @click="save()">Save</el-button>
</div>
</el-dialog>
```
其中, `dialogVisible` 控制弹窗的显示和隐藏, `editForm` 是用于编辑的表单数据。
在 `edit` 方法中,我们需要将当前行的数据复制到 `editForm` 中,并将 `dialogVisible` 设置为 `true`,以显示弹窗。比如:
```js
edit(row) {
this.editForm = { ...row }
this.dialogVisible = true
}
```
在 `save` 方法中,我们需要将修改后的表单数据保存回原始数据,并关闭弹窗。比如:
```js
save() {
const index = this.weekData.findIndex(item => item.week === this.editForm.week)
if (index !== -1) {
this.weekData.splice(index, 1, this.editForm)
}
this.dialogVisible = false
}
```
最后,我们来看如何实现重置按钮的点击事件处理函数。可以将当前行的数据恢复到初始状态。比如:
```js
reset(row) {
const index = this.weekData.findIndex(item => item.week === row.week)
if (index !== -1) {
this.weekData.splice(index, 1, {
...row,
timers: [
{ startTime: '13:0:0', stopTime: '14:0:0' },
{ startTime: '16:0:0', stopTime: '17:0:0' },
{ startTime: '16:0:0', stopTime: '0:0:0' },
{ startTime: '16:22:58', stopTime: '19:22:58' }
]
})
}
}
```
这里我们将当前行的 `timers` 数组恢复为初始值。
阅读全文