1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import { LightningElement } from 'lwc';
|
| export default class PickTestPage extends LightningElement {
|
| option = {objName:"PCLLostBrand__c",props:[
| {order:0,controllProp:"ProductClass__c",dependProp:"ProductCategory__c",labelname:"失单产品类别",placeholder:"请选着失单产品类别"},
| {order:1,controllProp:"ProductCategory__c",dependProp:"Lost_By_Company__c",labelname:"失单产品1",placeholder:"请选着失单产品1"},
| ]}
|
| lastname ="品牌";
| lastplaceholder = "请选着失单品牌";
|
|
| datachange(event)
| {
| var a = event.detail;
| debugger;
| }
|
| }
|
|