diff --git a/src/api/is/project/index.js b/src/api/is/project/index.js
index 046f703..e966a26 100644
--- a/src/api/is/project/index.js
+++ b/src/api/is/project/index.js
@@ -30,4 +30,27 @@ export const getProjectList = (params) => {
method: 'get',
params
})
+}
+
+export const deleteProject = (projectIds) => {
+ return request({
+ url: '/ti/project/' + projectIds,
+ method: 'delete'
+ })
+}
+
+export const getExecuteRunParams = (params) => {
+ return request({
+ url: '/ti/project/queryExecuteRunParams',
+ method: 'get',
+ params
+ })
+}
+
+export const projectExecute = (data) => {
+ return request({
+ url: '/ti/project/execute',
+ method: 'post',
+ data
+ })
}
\ No newline at end of file
diff --git a/src/views/is/project/evaluate/Run.vue b/src/views/is/project/evaluate/Run.vue
new file mode 100644
index 0000000..f349c93
--- /dev/null
+++ b/src/views/is/project/evaluate/Run.vue
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.name }}
+ *
+
+
+
+
+
+ {{ row.type }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 关闭
+ 确定
+
+
+
+
\ No newline at end of file
diff --git a/src/views/is/project/index.vue b/src/views/is/project/index.vue
index 521586a..4ac8aa4 100644
--- a/src/views/is/project/index.vue
+++ b/src/views/is/project/index.vue
@@ -118,6 +118,13 @@
fixed="right"
>
+ 执行
+
+
+