jys.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. <template>
  2. <view class="jys">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="top">
  5. <view class="card">
  6. <image class="image" :src="actItemList.pic" mode="aspectFill"></image>
  7. <view class="text">
  8. <view class="text_title">
  9. <view class="manage bqZ-font">类型</view>
  10. <view class="t1 bmTit-font">{{ actItemList.acName }}</view>
  11. </view>
  12. <view class="col sZw-font">
  13. 负责人:{{ actItemList.username }}
  14. </view>
  15. <view class="col sZw-font">
  16. 教研室标签:{{ typetext }}
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- <uni-card :is-shadow="false"> -->
  22. <view class="xinxi">
  23. <view class="card2">
  24. <view class="hdxx">
  25. <view class="xxTit btn-font">活动信息</view>
  26. <view class="textcolor">
  27. <view class="name sZw-font">
  28. 姓名:
  29. <input type="text" style=" text-align: right;" maxlength="10" placeholder="请输入姓名"
  30. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" v-model="applyname" />
  31. </view>
  32. <view class="name sZw-font">
  33. 联系方式:
  34. <input type="number" style=" text-align: right;" maxlength="11" placeholder="请输入联系方式"
  35. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" v-model="phone" />
  36. </view>
  37. <view class="name sZw-font">
  38. 单位:
  39. <input type="text" style=" text-align: right;" maxlength="15" placeholder="请输入单位"
  40. placeholder-style="font-size: 28rpx; color: rgb(153, 153, 153);" v-model="stations" />
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="buttons">
  47. <view class="button-container">
  48. <button @click="button1Action" class="btn1 sZw-font">清空填写信息</button>
  49. <!-- <text class="button-spacing"></text> -->
  50. <!-- 添加间距 -->
  51. <button style="background-colo:#0056a8;" @click="showPop" class="btn2 sZw-font">申请加入</button>
  52. </view>
  53. </view>
  54. <!-- 弹窗 -->
  55. <view>
  56. <view class="mask" v-show="showPopup" @click="closePopup"></view>
  57. <view class="popup-container" v-show="showPopup">
  58. <view class="popup">
  59. <view class="header">
  60. <text>确认报名</text>
  61. </view>
  62. <view class="footer">
  63. <view class="cancel-btn" @click="showPopup=false">取消</view>
  64. <view class="confirm-btn" @click="gotoSign">确认</view>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. <view>
  70. <view class="mask" v-show="showPopupConfirm" @click="closePopup"></view>
  71. <view class="popup-container" style="height: 175px;" v-show="showPopupConfirm">
  72. <view class="popup">
  73. <view class="header" style="margin-top: 15px;">
  74. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//gou1.png" mode="aspectFill">
  75. </image>
  76. <text style="margin-bottom: 24px;">报名成功</text>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. export default {
  85. data() {
  86. return {
  87. navBarData: {
  88. title: '教研室报名',
  89. btn: 1
  90. },
  91. //控制弹窗
  92. showPopup: false,
  93. // 成功弹窗
  94. showPopupConfirm: false,
  95. // 用户名
  96. applyname: '',
  97. // 联系方式
  98. phone: '',
  99. // 单位
  100. stations: '',
  101. // 获取的渲染数据
  102. actItemList: {},
  103. typetext: '',
  104. isButtonDisabled: false,
  105. };
  106. },
  107. methods: {
  108. button1Action() {
  109. this.applyname = ''
  110. this.phone = ''
  111. this.stations = ''
  112. },
  113. // 确定按钮显示弹窗
  114. showPop(){
  115. if(this.applyname == '') return uni.showToast({title:'请输入姓名',icon:'none'})
  116. if(this.phone == '') return uni.showToast({title:'请输入联系方式',icon:'none'})
  117. if(this.stations == '') return uni.showToast({title:'请输入单位',icon:'none'})
  118. this.showPopup=true
  119. },
  120. // 确定报名
  121. gotoSign() {
  122. let data={
  123. oid: this.$store.state.user.openid, //用户id
  124. acid: this.acId,
  125. ty:2,
  126. ume:this.applyname,
  127. pho:this.phone,
  128. sta:this.stations
  129. }
  130. this.$request('/insertSignup', "POST", data).then(res => {
  131. console.log(res);
  132. this.showPopup=false
  133. uni.navigateTo({
  134. url:'/pages/Sign/Sign'
  135. })
  136. })
  137. },
  138. // 获取页面数据
  139. getActivity() {
  140. let data = {
  141. oid: this.$store.state.user.openid, //用户id
  142. acId: this.acId,
  143. }
  144. this.$request('/selectActivityID', "POST", data).then(res => {
  145. console.log(res[0]);
  146. this.actItemList = res[0][0]
  147. })
  148. },
  149. },
  150. onLoad(e) {
  151. console.log('进来了',e);
  152. this.acId=e.acId
  153. this.navBarData.title=e.tit
  154. this.getActivity()
  155. }
  156. };
  157. </script>
  158. <style lang="scss" scoped>
  159. .jys {
  160. .top {
  161. width: 690rpx;
  162. height: 192rpx;
  163. background-color: #ffffff;
  164. margin: auto;
  165. margin-top: 30rpx;
  166. // padding: 24rpx;
  167. padding: 16rpx 24rpx;
  168. border-radius: 10rpx;
  169. .col {
  170. color: #999999;
  171. }
  172. }
  173. .card {
  174. // margin-top: 40rpx;
  175. display: flex;
  176. .image {
  177. flex-shrink: 0;
  178. width: 160rpx;
  179. height: 160rpx;
  180. border-radius: 4px;
  181. }
  182. .text {
  183. margin-left: 10px; // 增加一点空间
  184. display: flex;
  185. flex-direction: column;
  186. justify-content: space-between;
  187. .text_title {
  188. display: flex;
  189. align-items: center;
  190. .manage {
  191. // padding:4rpx 12rpx 4rpx 12rpx;
  192. display: flex;
  193. justify-content: center;
  194. align-items: center;
  195. width: 68rpx;
  196. height: 36rpx;
  197. border-radius: 5rpx;
  198. color: #00b2b6;
  199. border: 1px solid #00b2b6;
  200. // border-radius: 10rpx;
  201. margin-right: 10rpx;
  202. }
  203. .t1 {
  204. color: black;
  205. width: 350rpx;
  206. font-weight: 550;
  207. overflow: hidden;
  208. text-overflow: ellipsis;
  209. white-space: nowrap;
  210. }
  211. }
  212. }
  213. }
  214. .xinxi {
  215. background-color: #ffffff;
  216. width: 690rpx;
  217. // height: 272rpx;
  218. margin: auto;
  219. margin-top: 20rpx;
  220. padding: 20rpx 24rpx;
  221. border-radius: 12rpx;
  222. }
  223. .hdxx {
  224. .xxTit {
  225. color: black;
  226. // font-size: 18px;
  227. // font-weight: 400px;
  228. line-height: 42px;
  229. }
  230. .textcolor {
  231. color: #999999;
  232. line-height: 42px;
  233. .name {
  234. display: flex;
  235. justify-content: space-between;
  236. margin-bottom: 20rpx;
  237. .nickname {
  238. width: 350rpx;
  239. text-align: end;
  240. // padding-right: 10rpx;
  241. // margin-right: 10rpx;
  242. font-size: 28rpx;
  243. color: rgb(153, 153, 153);
  244. }
  245. }
  246. }
  247. }
  248. .buttons {
  249. background-color: white;
  250. position: fixed;
  251. bottom: 0;
  252. left: 0;
  253. width: 100%;
  254. display: flex;
  255. justify-content: space-around;
  256. align-items: center;
  257. height: 137rpx;
  258. // padding-bottom: 50rpx;
  259. // font-size: 30rpx;
  260. .button-container {
  261. width: 100%;
  262. display: flex;
  263. justify-content: space-around;
  264. .btn1 {
  265. width: 326rpx;
  266. height: 71rpx;
  267. border: 1px solid #666666;
  268. border-radius: 50px;
  269. height: 70rpx;
  270. line-height: 70rpx;
  271. // font-size: 35rpx;
  272. color: #666666;
  273. }
  274. .btn2 {
  275. width: 326rpx;
  276. height: 71rpx;
  277. background-color: #0056a8;
  278. border-radius: 50px;
  279. height: 70rpx;
  280. line-height: 70rpx;
  281. color: #ffffff;
  282. }
  283. }
  284. }
  285. .mask {
  286. position: fixed;
  287. top: 0;
  288. left: 0;
  289. width: 100%;
  290. height: 100%;
  291. background-color: rgba(0, 0, 0, 0.3);
  292. z-index: 999;
  293. overflow: hidden;
  294. // display: none;
  295. }
  296. .popup-container {
  297. position: fixed;
  298. top: 50%;
  299. left: 50%;
  300. transform: translate(-50%, -50%);
  301. width: 520rpx;
  302. height: 260rpx;
  303. z-index: 1000;
  304. // display: none;
  305. .popup {
  306. width: 100%;
  307. height: 100%;
  308. display: flex;
  309. flex-direction: column;
  310. background-color: #fff;
  311. border-radius: 16rpx;
  312. overflow: hidden;
  313. .header {
  314. flex: 1;
  315. display: flex;
  316. justify-content: center;
  317. align-items: center;
  318. flex-direction: column;
  319. margin-top: 24px;
  320. font-size: 34rpx;
  321. font-weight: 600;
  322. image {
  323. width: 150rpx;
  324. height: 150rpx;
  325. margin-top: 15px;
  326. margin-bottom: 15px;
  327. }
  328. }
  329. .footer {
  330. width: 100%;
  331. display: flex;
  332. overflow: hidden;
  333. .cancel-btn {
  334. width: 50%;
  335. height: 100rpx;
  336. background-color: #F7F7F7;
  337. color: #000;
  338. font-size: 34rpx;
  339. text-align: center;
  340. border-bottom-left-radius: 16rpx;
  341. line-height: 50px;
  342. }
  343. .confirm-btn {
  344. width: 50%;
  345. height: 100rpx;
  346. background-color: #0081FE;
  347. color: #fff;
  348. font-size: 34rpx;
  349. text-align: center;
  350. line-height: 50px;
  351. }
  352. }
  353. }
  354. }
  355. }
  356. </style>