diff --git a/src/main/resources/views/platform/theRapyRecuperation/signUp/info.js b/src/main/resources/views/platform/theRapyRecuperation/signUp/info.js
new file mode 100644
index 0000000..2f5ecf9
--- /dev/null
+++ b/src/main/resources/views/platform/theRapyRecuperation/signUp/info.js
@@ -0,0 +1,70 @@
+const INFO = {
+ template: /*language=HTML*/ `
+
+
+
+
+
+ {{lineData.lotName}}{{lineData.lineName}}
+
+
+ {{ lineData.regionalNature }}
+ {{ lineData.estimatedCost }}元
+
+
+
+ {{lineData.signUpUserNum + lineData.signUpUserFamilyNum + '(家属' + lineData.signUpUserFamilyNum + '人)'}}
+
+
+ {{lineData.signUpUserNum + lineData.familyNumber + '(家属' + lineData.familyNumber + '人)'}}
+
+
+
+
+ {{lineData.signUpUserNum + '(家属' + lineData.signUpUserFamilyNum + '人)'}}
+
+
+ {{lineData.signUpUserNum + '(家属' + lineData.familyNumber + '人)'}}
+
+
+
+
+ {{moment(lineData.signUpStartTime).format('YYYY-MM-DD HH:mm') + ' ~ ' +
+ moment(lineData.signUpEndTime).format('YYYY-MM-DD HH:mm')}}
+
+
+ {{moment(lineData.playStartTime).format('YYYY-MM-DD HH:mm') + ' ~ ' +
+ moment(lineData.playEndTime).format('YYYY-MM-DD HH:mm')}}
+
+
+ {{lineData.travelAgencyName}}
+
+
+ {{lineData.contactMobileNumber}}
+
+
+
+
+
+
+
+
+
+
+
+
+ `,
+ props: {
+ id: { type: String, required: true },
+ index: { type: Number, required: true },
+ edit_other: { type: String, required: false, default: '' },
+ },
+ data(){
+ return{
+
+ }
+ },
+ methods: {
+
+ }
+}