工单管理

This commit is contained in:
liuye
2024-08-06 14:02:56 +08:00
parent eac706bfcb
commit 01cd905669
6 changed files with 1415 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<template>
<el-table-column :label="label" v-bind="$attrs">
<template slot-scope="{row}">
<el-input v-model="row[prop]" :placeholder="placeholder" clearable/>
</template>
</el-table-column>
</template>
<script>
export default {
name: 'table-input-column',
props: {
label: {type: String, required: true},
prop: {type: String, required: true},
placeholder: {default: "请输入"}
}
}
</script>