buli
2023-06-05 3962c2bb0435484b60a3e408e4738d792e249a53
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
30
31
import { LightningElement,api, track } from 'lwc';
 
export default class LexCustomInventoryColor extends LightningElement {
    @api value;
    @api upperlimit;
    @api lowerlimit;
    @api boxPrice;
 
 
    @track showNormal = true;
    @track showRed = false;
    @track showYellow = false;
 
    connectedCallback(){
        console.log('value:'+this.value+"---"+this.upperlimit+"---"+this.lowerlimit);
        this.showNormal = true;
        this.showRed = false;
        this.showYellow = false;
        if(this.boxPrice == '盒'){
            if(this.upperlimit != null && this.lowerlimit != null){
                if(this.value > this.upperlimit){
                    this.showYellow = true;
                    this.showNormal = false;
                }else if(this.value < this.lowerlimit) {
                    this.showRed = true;
                    this.showNormal = false;
                }
            }
        }
    }
}