excelItem.html 554 B

12345678910111213141516
  1. <div class="wrapper 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="box flex-1">
  8. <ui-checkbox v-bind:checked="data.isUse"
  9. v-on:change="onBtnClickUse">
  10. {{index+1}}
  11. </ui-checkbox>
  12. </div>
  13. <div class="box flex-3"> {{data.name}}</div>
  14. <div class="box flex-3"> {{data.sheet}}</div>
  15. </div>
  16. <hr style="margin: 1px 0 1px 0">