Explorar o código

学生专区-实习管家

Xiao_123 hai 2 meses
pai
achega
546ac36bc4

+ 1 - 1
pagesA/student/index.vue

@@ -24,7 +24,7 @@ const defaultList = [
 	{	title: '实习报告',	path: '/pagesA/student/internshipReport', rightTex: '未开放' },
 	{	title: '实习证书',	path: '/pagesA/student/internshipCertificate', rightTex: '未开放'	},
 	{	title: '企业推荐信',	path: '/pagesA/student/enterpriseRecommendationLetter', rightTex: '未开放' },
-	{	title: '实习管家',	path: '/pagesA/student/internshipButler', rightTex: '未开放' },
+	{	title: '实习管家',	path: '/pagesA/student/internshipButler' },
 ]
 const list = ref(defaultList.filter(e => !e.hide))
 

+ 3 - 3
pagesA/student/information.vue

@@ -2,14 +2,14 @@
 <template>
   <scroll-view class="scrollBox" scroll-y="true">
     <view class="content">
-      <view class="text-center ss-m-b-50 font-size-20 color-primary">学生信息认证</view>
+      <!-- <view class="text-center ss-m-b-50 font-size-20 color-primary">学生信息认证</view> -->
       <uni-forms
         ref="baseInfoRef"
         v-model="formData"
         :rules="formRules"
         validateTrigger="bind"
-        label-width="90px"
-        labelAlign="center"
+        label-width="131px"
+        labelAlign="right"
       >
         <uni-forms-item name="schoolId" label="就读学校" required>
           <uni-data-picker v-model="formData.schoolId" :localdata="schools" :clear-icon="false" popup-title="请选择就读学校" @change="getDepartmentList" :map="{ text: 'schoolName', value: 'schoolId' }"></uni-data-picker>

+ 26 - 3
pagesA/student/internshipButler.vue

@@ -1,8 +1,31 @@
 <template>
-  <view class="text-center ss-m-t-80" style="color: #777;">未开放 . . .</view>
+    <view class="parents">
+        <image src="https://minio.citupro.com/dev/static/wx.jpg" mode="aspectFit" show-menu-by-longpress="true" class="img-code"></image>
+		<view class="tipsText">长按添加管家微信</view>
+    </view>
 </template>
 
 <script setup>
+	// 实习管家
 </script>
-<style lang="scss" scoped>
-</style>
+
+<style lang="less" scoped>
+.parents{
+    position: relative;
+    background-color: #f8f8f8;
+}
+.img-code{
+    width: 100%;
+    height: 100vh;
+}
+.tipsText{
+    position: absolute;
+    top: 89%;
+    right: 50%;
+    transform: translate(50%, 0);
+    text-align: center;
+    color: #c2c5c7;
+    font-size: 12px;
+    font-weight: 700;
+}
+</style>