excelItem.html 648 B

1234567891011121314151617181920
  1. <div class="layout horizontal center"
  2. style="width: 100%;height: 20px;
  3. background-color: #252525;"
  4. onmouseover="this.style.backgroundColor='#505050'"
  5. onmouseout="this.style.backgroundColor='#252525'"
  6. >
  7. <div class="layout horizontal center " style="width: 20%">
  8. <ui-checkbox v-bind:checked="data.isUse"
  9. v-on:change="onBtnClickUse"
  10. ></ui-checkbox>
  11. <div class="flex-1"> {{index+1}}</div>
  12. </div>
  13. <div style="width: 40%">
  14. {{data.name}}
  15. </div>
  16. <div style="width: 40%">
  17. {{data.sheet}}
  18. </div>
  19. </div>
  20. <hr style="margin: 1px 0 1px 0">