LiFan
2024-07-16 f087a50629e95666db2e0b0ba4373834e2b9593b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use "system.vl"
use "win.vl"
use "list.vl"
unit vbusiness.entity
[
    BrandInforList is extend list;
    about BrandInforList
    [
 
        
        method:
        [
            int ViewUpdate(param pr,string updateItem,xaserverarg__  arg)
            {
                if(    updateItem=="del"){
                    int DelRow = this.dw_list.GetRow();
                    this.dw_list.DeleteRow(DelRow);
                }
                return 1;
            }        
            int onload()
            {
                list::onload();
                return -1;
            }
                    
        ]
    ]
]