You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

new.tmpl 7.8 kB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
3 years ago
4 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. {{template "base/head" .}}
  2. <style>
  3. .inline.required.field.cloudbrain_benchmark {
  4. display: none;
  5. }
  6. </style>
  7. <div id="mask">
  8. <div id="loadingPage">
  9. <div class="rect1"></div>
  10. <div class="rect2"></div>
  11. <div class="rect3"></div>
  12. <div class="rect4"></div>
  13. <div class="rect5"></div>
  14. </div>
  15. </div>
  16. <div class="repository">
  17. {{template "repo/header" .}}
  18. <div class="repository new repo ui middle very relaxed page grid">
  19. <div class="column">
  20. {{template "base/alert" .}}
  21. <div class="ui positive message" id="messageInfo">
  22. <p></p>
  23. </div>
  24. <form class="ui form" id="form_id" action="{{.Link}}" method="post">
  25. {{.CsrfTokenHtml}}
  26. <h3 class="ui top attached header">
  27. {{.i18n.Tr "repo.cloudbrain.new"}}
  28. </h3>
  29. <div class="ui attached segment">
  30. <!-- <br> -->
  31. <div class="inline required field">
  32. <label>计算资源</label>
  33. <div class="ui blue small menu compact selectcloudbrain">
  34. <a class="item" href="{{.RepoLink}}/cloudbrain/create">
  35. <svg class="svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
  36. <path fill="none" d="M0 0h24v24H0z"/>
  37. <path d="M3 2.992C3 2.444 3.445 2 3.993 2h16.014a1 1 0 0 1 .993.992v18.016a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 21.008V2.992zM19 11V4H5v7h14zm0 2H5v7h14v-7zM9 6h6v2H9V6zm0 9h6v2H9v-2z"/>
  38. </svg>
  39. CPU/GPU</a>
  40. <a class="active item" href="{{.RepoLink}}/modelarts/notebook/create">
  41. <svg class="svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16">
  42. <path fill="none" d="M0 0h24v24H0z"/>
  43. <path d="M3 2.992C3 2.444 3.445 2 3.993 2h16.014a1 1 0 0 1 .993.992v18.016a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 21.008V2.992zM19 11V4H5v7h14zm0 2H5v7h14v-7zM9 6h6v2H9V6zm0 9h6v2H9v-2z"/>
  44. </svg>
  45. Ascend NPU</a>
  46. </div>
  47. </div>
  48. <div class="inline required field">
  49. <label>任务名称</label>
  50. <input name="job_name" id="cloudbrain_job_name" placeholder="任务名称" value="{{.job_name}}" tabindex="3" autofocus required maxlength="255" onkeyup="this.value=this.value.replace(/[, ]/g,'')">
  51. </div>
  52. <!-- <div class="inline field">
  53. <label>数据集</label>
  54. <input type="text" list="cloudbrain_dataset" placeholder="选择数据集" name="" id="answerInput" autofocus maxlength="36">
  55. <datalist id="cloudbrain_dataset" class="ui search" style='width:385px' name="attachment">
  56. {{range .attachments}}
  57. <option name="attachment" data-value="{{.UUID}}">{{.Attachment.Name}}</option>
  58. {{end}}
  59. </datalist>
  60. <input type="hidden" name="attachment" id="answerInput-hidden">
  61. </div>
  62. <div class="inline required field">
  63. <label>工作环境</label>
  64. <input name="de" id="cloudbrain_de" value="{{.env}}" tabindex="3" disabled autofocus required maxlength="255" readonly="readonly">
  65. </div>
  66. <div class="inline required field">
  67. <label>类型</label>
  68. <input name="job_type" id="cloudbrain_job_type" value="{{.notebook_type}}" tabindex="3" disabled autofocus required maxlength="255" readonly="readonly">
  69. </div> -->
  70. <div class="inline required field">
  71. <label>规格</label>
  72. <select id="cloudbrain_flavor" class="ui search dropdown" placeholder="选择规格" style='width:385px' name="flavor">
  73. {{range .flavors}}
  74. <option name="flavor" value="{{.Value}}">{{.Desc}}</option>
  75. {{end}}
  76. </select>
  77. </div>
  78. <!--<div class="inline required field">
  79. <label>数据集存放路径</label>
  80. <input name="dataset_path" id="cloudbrain_dataset_path" value="{{.dataset_path}}" tabindex="3" disabled autofocus required maxlength="255" readonly="readonly">
  81. </div> -->
  82. <div class="inline field">
  83. <label>描述</label>
  84. <input name="description" id="cloudbrain_description" tabindex="3" autofocus maxlength="255">
  85. </div>
  86. <div class="inline field">
  87. <label></label>
  88. <button class="ui green button">
  89. {{.i18n.Tr "repo.cloudbrain.new"}}
  90. </button>
  91. <a class="ui button cancel" href="">{{.i18n.Tr "repo.cloudbrain.cancel"}}</a>
  92. </div>
  93. </div>
  94. </form>
  95. </div>
  96. </div>
  97. </div>
  98. {{template "base/footer" .}}
  99. <script>
  100. // 判断必填选项是否填写正确
  101. let form = document.getElementById('form_id');
  102. $('#messageInfo').css('display','none')
  103. form.onsubmit = function(e){
  104. let value_task = $("input[name='job_name']").val()
  105. let re = /^[a-z0-9][a-z0-9-_]{1,36}$/
  106. let flag = re.test(value_task)
  107. if(!flag){
  108. $('#messageInfo').css('display','block')
  109. let str = '只能以小写字母或数字开头且只包含小写字母、数字、_和-、最长36个字符。'
  110. $('#messageInfo p').text(str)
  111. return false
  112. }
  113. let min_value_task = value_task.toLowerCase()
  114. $("input[name='job_name']").attr("value",min_value_task)
  115. document.getElementById("mask").style.display = "block"
  116. }
  117. // 点击按钮后遮罩层显示
  118. // function showmask() {
  119. // document.getElementById("mask").style.display = "block"
  120. // }
  121. // 页面加载完毕后遮罩层隐藏
  122. document.onreadystatechange = function() {
  123. if (document.readyState === "complete") {
  124. document.getElementById("mask").style.display = "none"
  125. }
  126. }
  127. $('select.dropdown')
  128. .dropdown();
  129. $(function() {
  130. $("#cloudbrain_job_type").change(function() {
  131. if ($(this).val() == 'BENCHMARK') {
  132. $(".cloudbrain_benchmark").show();
  133. } else {
  134. $(".cloudbrain_benchmark").hide();
  135. }
  136. })
  137. })
  138. document.querySelector('input[list]').addEventListener('input',function(e){
  139. var input = e.target,
  140. list = input.getAttribute('list'),
  141. options = document.querySelectorAll('#'+list+' option'),
  142. hiddenInput = document.getElementById(input.getAttribute('id')+'-hidden'),
  143. inputValue = input.value;
  144. hiddenInput.value = inputValue;
  145. for (let i=0;i<options.length;i++){
  146. var option = options[i]
  147. if(option.innerText===inputValue){
  148. hiddenInput.value = option.getAttribute('data-value');
  149. break
  150. }
  151. }
  152. })
  153. </script>