This commit is contained in:
helloDy
2023-10-10 17:06:39 +08:00
parent b1c0d21888
commit 69bdab75d4
8 changed files with 67 additions and 17 deletions

View File

@@ -72,9 +72,11 @@
<el-col :span="12">
<el-form-item label="工段排序" prop="sort">
<el-input
<el-input-number
v-model="dataForm.sort"
filterable
min="0"
max="100"
@change="$emit('update', dataForm)"
placeholder="请输入工段排序" />
</el-form-item>

View File

@@ -134,6 +134,8 @@ export default {
label: '工段',
placeholder: '请选择工段',
param: 'workshopSectionId',
selectOptions: [],
filterable: true
},
{
type: 'input',
@@ -239,8 +241,24 @@ export default {
},
created() {
this.getList();
this.initWorksection();
},
methods: {
/** 准备工段数据 */
async initWorksection() {
const { code, data } = await this.$axios({
url: '/base/workshop-section/listAll',
method: 'get',
});
if (code == 0) {
this.searchBarFormConfig[0].selectOptions = data.map((item) => {
return {
name: item.name,
id: item.id,
};
});
}
},
/** 查询列表 */
getList() {
this.loading = true;
@@ -323,7 +341,7 @@ export default {
handleDelete(row) {
const id = row.id;
this.$modal
.confirm('是否确认删除工段设备绑定编号为"' + id + '"的数据项?')
.confirm('是否确认删除工段设备绑定设备名称为"' + row.equipment + '"的数据项?')
.then(function () {
return deleteEquipmentBindSection(id);
})