-
-
-
Select Gender
+
+
+
选择版本
-
+
{{ scope.row.Name }}
+
+
+
+
+ {{ scope.row.Version}}
+
+
+
+
+
+ {{ scope.row.VersionCount}}
+
+
+
+
+
+ {{ renderSize(scope.row.Size)}}
+
+
+
+
+ {{ scope.row.EngineName}}
+
+
+
+
+ {{ scope.row.ComputeResource}}
+
+
+
+
+ {{transTime(scope.row.CreatedUnix)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 1b718ed53..0f60504de 100755
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -39,6 +39,7 @@ import Images from './components/Images.vue';
import EditTopics from './components/EditTopics.vue';
import DataAnalysis from './components/DataAnalysis.vue'
import Contributors from './components/Contributors.vue'
+import Model from './components/Model.vue';
Vue.use(ElementUI);
Vue.prototype.$axios = axios;
@@ -2916,11 +2917,12 @@ $(document).ready(async () => {
initVueEditTopic();
initVueContributors();
initVueImages();
+ initVueModel();
initVueDataAnalysis();
initTeamSettings();
initCtrlEnterSubmit();
initNavbarContentToggle();
- // initTopicbar();
+ // initTopicbar();vim
// closeTopicbar();
initU2FAuth();
initU2FRegister();
@@ -3646,7 +3648,7 @@ function initVueContributors() {
function initVueImages() {
const el = document.getElementById('images');
- console.log("el",el)
+
if (!el) {
return;
@@ -3658,6 +3660,20 @@ function initVueImages() {
render: h => h(Images)
});
}
+function initVueModel() {
+ const el = document.getElementById('model_list');
+
+
+ if (!el) {
+ return;
+ }
+
+ new Vue({
+ el: el,
+
+ render: h => h(Model)
+ });
+}
function initVueDataAnalysis() {
const el = document.getElementById('data_analysis');
console.log("el",el)