teachingDetail.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <template>
  2. <!-- 教研室详情 -->
  3. <view class="teachingDetail">
  4. <statusBar :item="navbar"></statusBar>
  5. <!-- 顶部 -->
  6. <view class="backPic" v-for="(item,index) in actItemList" :key="index + 'a' ">
  7. <image src="http://43.139.158.220:5007/img/static/yym/Rectangle 40.png" mode="aspectFill"></image>
  8. <view class="card">
  9. <view class="cardTop">
  10. <view class="title three-font">{{ item.acName }}</view>
  11. <view class="icons">
  12. <view class="icon">
  13. <image src="http://43.139.158.220:5007/img/static/yym/Star 1 (Stroke) (2).png"
  14. style="width: 42rpx;height: 40rpx;" mode="aspectFill"></image>
  15. </view>
  16. <view class="icon">
  17. <image src="http://43.139.158.220:5007/img/static/yym/Vector (Stroke) (1).png"
  18. style="width: 38rpx;height: 42rpx;" mode="aspectFill"></image>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="col fz-font">
  23. 成立日期:{{ item.begin_at.split('~')[0] }}
  24. </view>
  25. <view class="col fz-font">
  26. 人数:{{ item.pers }}人
  27. </view>
  28. <view class="tag col">
  29. <view class="fz-font">教研标签:</view>
  30. <view class="" style="display: flex;">
  31. <view class="bqZ-font"
  32. style="color: #00b2b6; border: 1px #00b2b6 solid;padding: 2rpx 10rpx;border-radius: 5rpx;font-weight: 600;">
  33. {{ typetext }}
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <!-- 两个大资料文件 -->
  40. <view class="teaData">
  41. <view class="cla">
  42. <view class="tit1 three-font">课程资料</view>
  43. <view class="tit2 fz-font">教研室专属课程</view>
  44. </view>
  45. <view class="cla2">
  46. <view class="tit1 titColor three-font">资源文件</view>
  47. <view class="tit2 titColor fz-font">教研室专属资源</view>
  48. </view>
  49. </view>
  50. <!-- 教研室详情 -->
  51. <view class="" style="padding: 0 30rpx;">
  52. <detailBlock :actItemList='actItemList' :item="judge"></detailBlock>
  53. </view>
  54. <!-- 创建者用户名 -->
  55. <view style="padding: 0 30rpx;">
  56. <view class="creator" v-for="(item,index) in actItemList" :key="index + 'b' ">
  57. <image
  58. :src="item.avatar == null ? 'http://43.139.158.220:5007/img/static/mine/Avatar_default.png' : item.avatar"
  59. mode="aspectFill"></image>
  60. <view class="creName btn-font">
  61. {{ item.username }}
  62. </view>
  63. </view>
  64. </view>
  65. <!-- 当前成员 -->
  66. <view style="padding: 0 30rpx; display: none;">
  67. <view class="member">
  68. <view class="memberTop">
  69. <view class="btn-font">当前成员</view>
  70. <view class="fz-font" style="color: rgba(0, 0, 0, 0.4);display: flex;align-items: center;"
  71. @click="gotoMorePer">
  72. <text>查看更多</text>
  73. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  74. style="width: 32rpx;height: 32rpx;" mode="aspectFill"></image>
  75. <!-- <uni-icons type="right"></uni-icons> -->
  76. </view>
  77. </view>
  78. <view class="pers">
  79. <!-- <view class="per" v-for="i in perNum">
  80. <image :src="i.img"></image>
  81. <view class="perName fz-font">
  82. {{i.Name}}
  83. </view>
  84. </view> -->
  85. <view class="per">
  86. <!-- <image :src="item.img"></image> -->
  87. <view class="perName fz-font">
  88. 暂无人员
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. <!-- 申请加入 -->
  95. <view class="btnBlock">
  96. <button class="btn zw-font" @click="applyAdd">申请加入</button>
  97. </view>
  98. </view>
  99. </template>
  100. <script>
  101. export default {
  102. data() {
  103. return {
  104. navbar: {
  105. title: '教研室详情',
  106. btn: 1
  107. },
  108. actItemList: [],
  109. perNum: [{
  110. Name: '金晶',
  111. img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (1).png'
  112. },
  113. {
  114. Name: '朱心艺',
  115. img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (2).png'
  116. },
  117. {
  118. Name: '李红',
  119. img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (3).png'
  120. },
  121. {
  122. Name: '杨婉',
  123. img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (4).png'
  124. },
  125. {
  126. Name: '郑元雄',
  127. img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4.png'
  128. },
  129. {
  130. Name: '罗佳诚',
  131. img: 'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (3).png'
  132. }
  133. ],
  134. judge: {
  135. isShow: 0,
  136. info: ""
  137. },
  138. typetext: ''
  139. };
  140. },
  141. methods: {
  142. gotoMorePer() {
  143. uni.navigateTo({
  144. url: '/pages/dy/dy'
  145. })
  146. },
  147. applyAdd() {
  148. const clickedAcId = this.actItemList[0].acId;
  149. console.log(clickedAcId);
  150. uni.navigateTo({
  151. url: '/pages/jys/jys?acId=' + clickedAcId
  152. })
  153. },
  154. mapTypeToText(type) {
  155. if (type === 0) {
  156. return "直播活动";
  157. } else if (type === 1) {
  158. return "常规教研活动";
  159. } else {
  160. return "专题教研活动";
  161. }
  162. },
  163. getActivity() {
  164. // 获取当前页面的URL
  165. const routes = getCurrentPages();
  166. console.log(routes);
  167. const acId = routes[1].options.acId ? routes[1].options.acId : routes[2].options.acId
  168. let data = {
  169. acId: acId,
  170. ty: 2
  171. }
  172. this.$request('/selectActivityID', "POST", data).then(res => {
  173. console.log(res[0]);
  174. // this.activeList=[...this.activeList,...res[0]]
  175. this.actItemList = res[0]
  176. this.typetext = this.mapTypeToText(this.actItemList.type);
  177. })
  178. },
  179. },
  180. onShow() {
  181. this.getActivity()
  182. }
  183. }
  184. </script>
  185. <style lang="scss">
  186. .teachingDetail {
  187. padding-bottom: 80px;
  188. .backPic {
  189. width: 750rpx;
  190. position: relative;
  191. image {
  192. width: 100%;
  193. display: block;
  194. }
  195. .card {
  196. position: absolute;
  197. width: 690rpx;
  198. height: 256rpx;
  199. bottom: 10px;
  200. left: 50%;
  201. padding: 30rpx;
  202. background-color: rgba(0, 0, 0, 0.26);
  203. border-radius: 10px;
  204. transform: translate(-50%, 0);
  205. border: 1rpx #667870 solid;
  206. color: #ffffff;
  207. // display: flex;
  208. // flex-direction: column;
  209. // justify-content: space-between;
  210. .cardTop {
  211. display: flex;
  212. justify-content: space-between;
  213. .title {
  214. // padding-bottom: 20rpx;
  215. margin-bottom: 20rpx;
  216. width: 506rpx;
  217. height: 48rpx;
  218. color: #ffffff;
  219. font-family: PingFang SC;
  220. // font-weight: 550;
  221. overflow: hidden;
  222. text-overflow: ellipsis;
  223. white-space: nowrap;
  224. }
  225. .icons {
  226. flex: 1;
  227. display: flex;
  228. align-items: center;
  229. justify-content: space-between;
  230. .icon {
  231. width: 48rpx;
  232. height: 48rpx;
  233. display: flex;
  234. align-items: center;
  235. justify-content: center;
  236. }
  237. }
  238. }
  239. .col {
  240. margin-bottom: 10rpx;
  241. font-weight: 100;
  242. color: #f0edea;
  243. // font-size: 30rpx;
  244. }
  245. .tag {
  246. display: flex;
  247. }
  248. }
  249. // background-image: url(http://43.139.158.220:5007/img/static/resource/jqr.png);
  250. }
  251. .teaData {
  252. width: 750rpx;
  253. display: flex;
  254. padding: 20rpx 30rpx;
  255. justify-content: space-between;
  256. // padding: 20px 0;
  257. .cla {
  258. width: 49%;
  259. background: linear-gradient(to bottom, #fcfcff 30%, #e8ecfd 100%);
  260. border-radius: 10px;
  261. padding: 35rpx 30rpx;
  262. color: #424f85;
  263. .tit1 {
  264. // font-size: 38rpx;
  265. margin-bottom: 10rpx;
  266. font-weight: bold;
  267. }
  268. .tit2 {
  269. // font-size: 22px;
  270. // font-size: 30rpx;
  271. // margin-bottom: 5px;
  272. }
  273. }
  274. .cla2 {
  275. width: 45%;
  276. background: linear-gradient(to bottom, #fcfcff 10%, #fef3ea 100%);
  277. border-radius: 10px;
  278. padding: 35rpx 30rpx;
  279. color: #855e42;
  280. .tit1 {
  281. // font-size: 38rpx;
  282. margin-bottom: 10rpx;
  283. font-weight: bold;
  284. }
  285. .tit2 {
  286. // font-size: 22px;
  287. // margin-bottom: 5px;
  288. // font-size: 30rpx;
  289. }
  290. }
  291. }
  292. .creator {
  293. display: flex;
  294. padding: 30rpx;
  295. background-color: #ffffff;
  296. align-items: center;
  297. margin-top: 20rpx;
  298. border-radius: 10px;
  299. image {
  300. width: 96rpx;
  301. height: 96rpx;
  302. border-radius: 50%;
  303. margin-right: 20rpx;
  304. }
  305. .creName {
  306. font-weight: bold;
  307. }
  308. }
  309. .member {
  310. background-color: #ffffff;
  311. margin-top: 20rpx;
  312. padding: 30rpx;
  313. border-radius: 10px;
  314. margin-bottom: 30rpx;
  315. .memberTop {
  316. display: flex;
  317. justify-content: space-between;
  318. margin-bottom: 10px;
  319. }
  320. .pers {
  321. display: flex;
  322. justify-content: space-between;
  323. align-items: center;
  324. .per {
  325. display: flex;
  326. flex-direction: column;
  327. image {
  328. width: 72rpx;
  329. height: 72rpx;
  330. border-radius: 50%;
  331. }
  332. .perName {
  333. // font-size: 14px;
  334. text-align: center;
  335. }
  336. }
  337. }
  338. }
  339. .btnBlock {
  340. position: fixed;
  341. bottom: 0;
  342. width: 750rpx;
  343. background-color: #ffffff;
  344. // padding: 20px 0;
  345. padding: 2vh 0;
  346. .btn {
  347. width: 432rpx;
  348. height: 88rpx;
  349. font-weight: 500;
  350. display: flex;
  351. justify-content: center;
  352. align-items: center;
  353. margin: auto;
  354. background-color: #0056a8;
  355. color: #ffffff;
  356. }
  357. }
  358. }
  359. </style>