diff --git a/api/project.js b/api/project.js
index 04805f8..c7aee71 100644
--- a/api/project.js
+++ b/api/project.js
@@ -142,3 +142,18 @@ export const deleteProject = (ids) => {
});
};
+/**
+ * 开始项目开发
+ * @param {Object} data
+ * @param {string} data.id 项目ID
+ * @param {string} data.expectedCompleteDate 预计完成日期(YYYY-MM-DD)
+ * @returns {Promise} 操作结果
+ */
+export const startProjectDevelopment = (data) => {
+ return uni.$uv.http.put('bst/project/start', data, {
+ custom: {
+ auth: true
+ }
+ });
+};
+
diff --git a/pages/project/list/index.vue b/pages/project/list/index.vue
index 52ffbf3..571721b 100644
--- a/pages/project/list/index.vue
+++ b/pages/project/list/index.vue
@@ -201,13 +201,54 @@
+
+
+
+
+
+
+
+ 项目:{{ currentStartProjectName }}
+
+ 预计完成日期
+
+ 请选择预计完成日期
+ {{ startProjectForm.expectedCompleteDate }}
+ 📅
+
+
+
+
+ 取消
+
+ 确定
+
+
+
+
+
+