| | |
| | |
|
| | | <u-radio-group v-model="" class="mt-40" v-model="labelValue" placement="row">
|
| | | <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in labelList" :key="index"
|
| | | :label="item.name" :labelColor="item.color" :name="item.name" :activeColor="item.color"
|
| | | :label="item.name" :labelColor="item.showColor" :name="item.name" :activeColor="item.showColor"
|
| | | @change="radioChange(item)">
|
| | | </u-radio>
|
| | | </u-radio-group>
|
| | |
| | | labelList: [{
|
| | | name: '撤销',
|
| | | disabled: false,
|
| | | color: '#EBEDF0'
|
| | | // color: '#EBEDF0'
|
| | | showColor: '#999',
|
| | | color: '#999'
|
| | | },
|
| | | {
|
| | | name: '绿',
|
| | | disabled: false,
|
| | | color: '#30D17C'
|
| | | // color: '#30D17C'
|
| | | showColor: '#30D17C',
|
| | | color: 'green'
|
| | | },
|
| | | {
|
| | | name: '黄',
|
| | | disabled: false,
|
| | | color: '#FFB42B'
|
| | | // color: '#FFB42B'
|
| | | showColor: '#FFB42B',
|
| | | color: 'yellow'
|
| | | }, {
|
| | | name: '红',
|
| | | disabled: false,
|
| | | color: '#EA1F1F'
|
| | | // color: '#EA1F1F'
|
| | | showColor: '#EA1F1F',
|
| | | color: 'red'
|
| | | }
|
| | | ],
|
| | | currentLabelInfo: {},
|