|
|
@@ -11,11 +11,10 @@
|
|
|
<label class="col-4">特征内容</label>
|
|
|
<label class="col-2">特征组结束标记</label>
|
|
|
</div>
|
|
|
- <div class="row" v-for="feature in features">
|
|
|
- <div class="form-check col-2">
|
|
|
- <label class="form-check-label">
|
|
|
- <input type="checkbox" class="form-check-input" :checked="feature.strategyGroupStartSign">
|
|
|
- </label>
|
|
|
+ <div class="row" v-for="(feature,i) in features">
|
|
|
+ <div class="col-2 text-center custom-control custom-checkbox" >
|
|
|
+ <input type="checkbox" class="custom-control-input" :id="'checkStart-'+i" :checked="feature.strategyGroupStartSign">
|
|
|
+ <label class="custom-control-label" :for="'checkStart-'+i"></label>
|
|
|
</div>
|
|
|
<label class="col-1">
|
|
|
<select class="form-control form-control-sm" v-model="feature.calculation">
|
|
|
@@ -36,10 +35,9 @@
|
|
|
<label class="col-4">
|
|
|
<input class="form-control form-control-sm" v-model="feature.describe">
|
|
|
</label>
|
|
|
- <div class="form-check col-2">
|
|
|
- <label class="form-check-label">
|
|
|
- <input type="checkbox" class="form-check-input" :checked="feature.strategyGroupEndSign">
|
|
|
- </label>
|
|
|
+ <div class="col-2 text-center custom-control custom-checkbox">
|
|
|
+ <input type="checkbox" class="custom-control-input" :id="'checkEnd-'+i" :checked="feature.strategyGroupEndSign">
|
|
|
+ <label class="custom-control-label" :for="'checkEnd-'+i"></label>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|