bm-admin-ui 1.0.71-alpha → 1.0.73-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20330,6 +20330,7 @@ var materialType = {
|
|
|
20330
20330
|
const rule = inject.self;
|
|
20331
20331
|
rule.props.value = list;
|
|
20332
20332
|
inject.api.form[rule.field] = list;
|
|
20333
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20333
20334
|
nextTick(() => {
|
|
20334
20335
|
setTimeout(() => {
|
|
20335
20336
|
inject.api.validateField(rule.field);
|
|
@@ -20365,8 +20366,9 @@ var materialType = {
|
|
|
20365
20366
|
on: {
|
|
20366
20367
|
change(inject, list) {
|
|
20367
20368
|
const rule = inject.self;
|
|
20369
|
+
rule.value = list;
|
|
20368
20370
|
rule.props.value = list;
|
|
20369
|
-
inject.api.form
|
|
20371
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20370
20372
|
nextTick(() => {
|
|
20371
20373
|
setTimeout(() => {
|
|
20372
20374
|
inject.api.validateField(rule.field);
|
|
@@ -20591,6 +20593,7 @@ var table = {
|
|
|
20591
20593
|
change(inject, value) {
|
|
20592
20594
|
const rule = inject.self;
|
|
20593
20595
|
inject.api.form[rule.field] = value;
|
|
20596
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20594
20597
|
},
|
|
20595
20598
|
},
|
|
20596
20599
|
validate: [
|
|
@@ -20617,6 +20620,7 @@ var table = {
|
|
|
20617
20620
|
change(inject, value) {
|
|
20618
20621
|
const rule = inject.self;
|
|
20619
20622
|
inject.api.form[rule.field] = value;
|
|
20623
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20620
20624
|
},
|
|
20621
20625
|
},
|
|
20622
20626
|
validate: [
|
|
@@ -20341,6 +20341,7 @@ var materialType = {
|
|
|
20341
20341
|
const rule = inject.self;
|
|
20342
20342
|
rule.props.value = list;
|
|
20343
20343
|
inject.api.form[rule.field] = list;
|
|
20344
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20344
20345
|
vue.nextTick(() => {
|
|
20345
20346
|
setTimeout(() => {
|
|
20346
20347
|
inject.api.validateField(rule.field);
|
|
@@ -20376,8 +20377,9 @@ var materialType = {
|
|
|
20376
20377
|
on: {
|
|
20377
20378
|
change(inject, list) {
|
|
20378
20379
|
const rule = inject.self;
|
|
20380
|
+
rule.value = list;
|
|
20379
20381
|
rule.props.value = list;
|
|
20380
|
-
inject.api.form
|
|
20382
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20381
20383
|
vue.nextTick(() => {
|
|
20382
20384
|
setTimeout(() => {
|
|
20383
20385
|
inject.api.validateField(rule.field);
|
|
@@ -20602,6 +20604,7 @@ var table = {
|
|
|
20602
20604
|
change(inject, value) {
|
|
20603
20605
|
const rule = inject.self;
|
|
20604
20606
|
inject.api.form[rule.field] = value;
|
|
20607
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20605
20608
|
},
|
|
20606
20609
|
},
|
|
20607
20610
|
validate: [
|
|
@@ -20628,6 +20631,7 @@ var table = {
|
|
|
20628
20631
|
change(inject, value) {
|
|
20629
20632
|
const rule = inject.self;
|
|
20630
20633
|
inject.api.form[rule.field] = value;
|
|
20634
|
+
inject.api.emit('update:modelValue', inject.api.form);
|
|
20631
20635
|
},
|
|
20632
20636
|
},
|
|
20633
20637
|
validate: [
|