Commit 86504a44 authored by 仇晓婷's avatar 仇晓婷

d

parent 10f0639e
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
@on-change="change" @on-change="change"
:multiple="multiple" :multiple="multiple"
:departmentId="departmentId" :departmentId="departmentId"
:disabled='disabled'
clearable clearable
filterable filterable
> >
...@@ -105,6 +106,10 @@ export default { ...@@ -105,6 +106,10 @@ export default {
type: Boolean, type: Boolean,
default: false default: false
}, },
disabled: {
type: Boolean,
default: false
},
theme: { theme: {
type: String, type: String,
default: "select" default: "select"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<Row> <Row>
<Col :span="12"> <Col :span="12">
<FormItem :label="l('materialId')" prop="materialId"> <FormItem :label="l('materialId')" prop="materialId">
<Materiel v-model="entity.materialId" @on-change="change" disabled></Materiel> <Materiel v-model="entity.materialId" @on-change="change" :disabled='true'></Materiel>
</FormItem> </FormItem>
</Col> </Col>
<Col :span="12"> <Col :span="12">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment