Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. <template>
  2. <div class="row">
  3. <div class="col-lg-12">
  4. <div class="ibox float-e-margins">
  5. <div class="ibox-content">
  6. <button v-if="!show_new" type="button" id="button-new-emission-operator" class="btn btn-primary"
  7. v-on:click="new_commission()">Добавить поле
  8. </button>
  9. <div class="form-group" id="new-emission-operator" v-if="show_new">
  10. <label class="col-sm-2 control-label">Новая комиссия</label>
  11.  
  12. <div class="col-sm-2">
  13. <div class="input-group">
  14. <input type="text" class="form-control" v-model="name_commission"
  15. placeholder="Название комиссии">
  16. </div>
  17. </div>
  18. <div class="col-sm-2">
  19. <select class="form-control" id="inputGroupSelect01">
  20. <option selected>Тип взимания</option>
  21. <option value="1">С отправителя</option>
  22. <option value="2">С получателя</option>
  23. </select>
  24. </div>
  25. <div class="col-sm-2">
  26. <div class="input-group">
  27. <input type="text" class="form-control" v-model="value_collection"
  28. placeholder="Значение">
  29. </div>
  30. </div>
  31. <div class="col-sm-2">
  32. <div class="input-group">
  33. <input v-model="date_" type="date" placeholder="Дата начала" class="form-control">
  34. </div>
  35. </div>
  36. <div class="col-sm-2">
  37. <div class="input-group">
  38. <span class="input-group-btn">
  39. <button type="button" class="btn btn-primary"
  40. v-on:click="add_commission()">Сохранить
  41. </button>
  42. </span>
  43. </div>
  44. </div>
  45. </div>
  46.  
  47. </div>
  48. <br>
  49. <br>
  50. <br>
  51. <br>
  52. <table
  53. class="footable table table-stripped default footable-loaded"
  54. data-page-size="8"
  55. data-filter="#filter"
  56. >
  57. <thead>
  58. <tr>
  59. <th class="footable-visible footable-first-column footable-sortable">
  60. Название комиссии
  61. </th>
  62. <th class="footable-visible footable-first-column footable-sortable">
  63. Входная валюта
  64. </th>
  65. <th class="footable-visible footable-first-column footable-sortable">
  66. Выходная валюта
  67. </th>
  68. <th class="footable-visible footable-first-column footable-sortable">
  69. Тип взимания
  70. </th>
  71. <th class="footable-visible footable-first-column footable-sortable">
  72. Значение
  73. </th>
  74. <th class="footable-visible footable-first-column footable-sortable">
  75. Дата последнего изменения
  76. </th>
  77. </tr>
  78. </thead>
  79. <tbody/>
  80. <tfoot/>
  81. </table>
  82. </div>
  83. </div>
  84. </div>
  85. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement