publish.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897
  1. <template>
  2. <view class="publish">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="" style="background-color: #ffffff;">
  5. <view class="pubTitle">
  6. <input class="title" style="" placeholder="活动标题" v-model="activitytitle" />
  7. </view>
  8. <view class="pubMid">
  9. <view class="mid">
  10. <view class="txt">
  11. <textarea class="txtClass" value="" placeholder="请输入内容" v-model="activityintro" />
  12. </view>
  13. <!-- <uni-file-picker :v-model="imageValue" fileMediatype="image" file-extname="png,jpg,jpeg"
  14. @select="select" @success="success" limit="1"> -->
  15. <!-- 上传图片 -->
  16. <view class="pic" @click="uploadPic">
  17. <view class="picCont">
  18. <image :src="pic" mode="aspectFill"></image>
  19. <view
  20. style="font-size: 24rpx;line-height: 40rpx;font-weight: 400;color: rgba(0, 0, 0, 0.6);">
  21. 添加图片
  22. </view>
  23. <view
  24. style="font-size: 20rpx;line-height: 36rpx;font-weight: 400;color: rgba(0, 0, 0, 0.4);">
  25. (0/1)
  26. </view>
  27. </view>
  28. <view class="pic_show" v-if="imageValue!==''">
  29. <image :src="imageValue" mode="aspectFill"></image>
  30. </view>
  31. </view>
  32. <!-- <view class="pic_show">
  33. <image :src="imageValue" mode="aspectFill"></image>
  34. </view> -->
  35. <!-- </uni-file-picker> -->
  36. <!-- <beUpload @getFile="getFile" :navName="'上传文件'" :accept="accept" :progress="progress"></beUpload> -->
  37. </view>
  38. </view>
  39. <view class="userOptionsBox">
  40. <view class="optionsItemBox">
  41. <picker mode="selector" :range="classifyList" @change="handelclassify">
  42. <view class="optionItem">
  43. <view class="option_left">
  44. <text class="option_text">
  45. 活动分类
  46. </text>
  47. </view>
  48. <view class="option_right">
  49. <view class="input_details">
  50. <view class="details">
  51. <view class="uni-input text">{{classify}}</view>
  52. </view>
  53. <view class="arrow">
  54. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  55. mode="aspectFill"></image>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </picker>
  61. </view>
  62. </view>
  63. <view class="userOptionsBox">
  64. <view class="optionsItemBox">
  65. <picker mode="selector" :range="recruitmentList" @change="handelRecruitment">
  66. <view class="optionItem">
  67. <view class="option_left">
  68. <text class="option_text">
  69. 招募人数
  70. </text>
  71. </view>
  72. <view class="option_right">
  73. <view class="input_details">
  74. <view class="details">
  75. <view class="uni-input text">{{recruitment}}</view>
  76. </view>
  77. <view class="arrow">
  78. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  79. mode="aspectFill"></image>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </picker>
  85. </view>
  86. </view>
  87. <view class="userOptionsBox">
  88. <view class="optionsItemBox">
  89. <picker mode="selector" :range="activityformList" @change="handelActivityform">
  90. <view class="optionItem">
  91. <view class="option_left">
  92. <text class="option_text">
  93. 活动形式
  94. </text>
  95. </view>
  96. <view class="option_right">
  97. <view class="input_details">
  98. <view class="details">
  99. <view class="uni-input text">{{activityform}}</view>
  100. </view>
  101. <view class="arrow">
  102. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  103. mode="aspectFill"></image>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </picker>
  109. </view>
  110. </view>
  111. <view class="userOptionsBox">
  112. <view class="optionsItemBox">
  113. <picker mode="selector" :range="addressList" @change="handeladdress">
  114. <view class="optionItem">
  115. <view class="option_left">
  116. <text class="option_text">
  117. 活动地址
  118. </text>
  119. </view>
  120. <view class="option_right">
  121. <view class="input_details">
  122. <view class="details">
  123. <view class="uni-input text">{{address}}</view>
  124. </view>
  125. <view class="arrow">
  126. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  127. mode="aspectFill"></image>
  128. </view>
  129. </view>
  130. </view>
  131. </view>
  132. </picker>
  133. </view>
  134. </view>
  135. <view class="userOptionsBox">
  136. <view class="optionsItemBox">
  137. <!-- <picker mode="date" :value="activityDate" :start="startDate" :end="endDate"
  138. @change="activityDateChange">
  139. <view class="optionItem">
  140. <view class="option_left">
  141. <text class="option_text">
  142. 活动时间
  143. </text>
  144. </view>
  145. <view class="option_right">
  146. <view class="input_details">
  147. <view class="details">
  148. <view class="uni-input text">{{ activityDate }}</view>
  149. </view>
  150. <view class="arrow">
  151. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png" mode="aspectFill"></image>
  152. </view>
  153. </view>
  154. </view>
  155. </view>
  156. </picker> -->
  157. <view class="optionItem" @click="show = true">
  158. <view class="option_left">
  159. <text class="option_text">
  160. 活动时间
  161. </text>
  162. </view>
  163. <view class="option_right">
  164. <view class="input_details">
  165. <view class="details">
  166. <!-- <view class="uni-input text">{{ activityDate }}</view> -->
  167. <u-calendar :show="show" :mode="mode" @confirm="confirm" :closeOnClickOverlay="true" @close="show=false"></u-calendar>
  168. <view class="text">
  169. {{ activityDate }}
  170. </view>
  171. </view>
  172. <view class="arrow">
  173. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png" mode="aspectFill"></image>
  174. </view>
  175. </view>
  176. </view>
  177. </view>
  178. </view>
  179. </view>
  180. <view class="userOptionsBox">
  181. <view class="optionsItemBox">
  182. <picker mode="selector" :range="fundsList" @change="handelFunds">
  183. <view class="optionItem">
  184. <view class="option_left">
  185. <text class="option_text">
  186. 活动费用
  187. </text>
  188. </view>
  189. <view class="option_right">
  190. <view class="input_details">
  191. <view class="details">
  192. <view class="uni-input text">{{funds}}</view>
  193. </view>
  194. <view class="arrow">
  195. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  196. mode="aspectFill"></image>
  197. </view>
  198. </view>
  199. </view>
  200. </view>
  201. </picker>
  202. </view>
  203. </view>
  204. <view class="userOptionsBox">
  205. <view class="optionsItemBox">
  206. <picker mode="date" :value="deadlineDate" :start="startDate" :end="endDate"
  207. @change="deadlineDateChange">
  208. <view class="optionItem">
  209. <view class="option_left">
  210. <text class="option_text">
  211. 报名截止
  212. </text>
  213. </view>
  214. <view class="option_right">
  215. <view class="input_details">
  216. <view class="details">
  217. <view class="uni-input text">{{ deadlineDate }}</view>
  218. </view>
  219. <view class="arrow">
  220. <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png"
  221. mode="aspectFill"></image>
  222. </view>
  223. </view>
  224. </view>
  225. </view>
  226. </picker>
  227. </view>
  228. </view>
  229. </view>
  230. <view class="" style="height: 10vh;width: 750rpx;position: relative;">
  231. <view class="publish_now">
  232. <button class="btn" @click="submitForm">{{ btntext }}</button>
  233. </view>
  234. </view>
  235. <!-- 弹窗 -->
  236. <view>
  237. <view class="mask" v-show="showPopup" @click="closePopup"></view>
  238. <view class="popup-container" v-show="showPopup">
  239. <view class="popup">
  240. <view class="header">
  241. <text>确认{{ poptext }}</text>
  242. </view>
  243. <view class="footer">
  244. <button class="cancel-btn" @click="closePopup">取消</button>
  245. <button class="confirm-btn" @click="conf">确认</button>
  246. </view>
  247. </view>
  248. </view>
  249. </view>
  250. <view>
  251. <view class="mask" v-show="showPopupConfirm" @click="closePopup"></view>
  252. <view class="popup-container" style="height: 175px;" v-show="showPopupConfirm">
  253. <view class="popup">
  254. <view class="header" style="margin-top: 15px;">
  255. <image src="http://43.139.158.220:5007/img/static/gou1.png" mode="aspectFill"></image>
  256. <text style="margin-bottom: 24px;">{{ poptext }}成功</text>
  257. </view>
  258. <view class="footer" style="padding-top: 0px;">
  259. <button class="confirm-btn_2" @click="closePopup">确认</button>
  260. </view>
  261. </view>
  262. </view>
  263. </view>
  264. </view>
  265. </template>
  266. <script>
  267. export default {
  268. data() {
  269. const currentDate = this.getDate({
  270. format: true
  271. })
  272. return {
  273. navBarData: {
  274. title: '发布', //导航栏标题
  275. btn: 1 //是否显示返回按钮 0不显示 1 显示
  276. },
  277. //时间选择器
  278. show: false,
  279. mode: 'range',
  280. //控制弹窗
  281. showPopup: false,
  282. showPopupConfirm: false,
  283. isFirstShow: true,
  284. //按钮文本
  285. btntext: '立即发布',
  286. // 弹窗文本
  287. poptext: '发布',
  288. //acId
  289. acId: '',
  290. // 标题
  291. activitytitle: '',
  292. // 内容
  293. activityintro: '',
  294. // 图片
  295. pic: 'http://43.139.158.220:5007/img/static/publish/photo.png',
  296. imageValue: '',
  297. // 分类
  298. classifyList: ['直播活动', '常规教研活动', '专题教研活动'],
  299. classify: '请选择',
  300. // 人数
  301. recruitmentList: Array.from({
  302. length: 100
  303. }, (_, index) => index + 1), //100人
  304. recruitment: '请选择',
  305. // 活动形式
  306. activityformList: ['户外活动', 'xxxx', 'xxxx'],
  307. activityform: '请选择',
  308. // 活动地址
  309. addressList: ['深圳xxxx大学', '深圳xxxx大学', '深圳xxxx大学'],
  310. address: '请选择',
  311. // 活动费用
  312. fundsList: Array.from({
  313. length: 30
  314. }, (_, index) => (index + 1) * 100).map(item => item),
  315. funds: '请选择',
  316. // activityDate: currentDate,
  317. activityDate: '请选择',
  318. deadlineDate: currentDate,
  319. activeList: []
  320. };
  321. },
  322. computed: {
  323. startDate() {
  324. return this.getDate('start');
  325. },
  326. endDate() {
  327. return this.getDate('end');
  328. }
  329. },
  330. methods: {
  331. confirm(e) {
  332. console.log(e);
  333. console.log(e[0],e[e.length-1]);
  334. this.activityDate = e[0] + '~' + e[e.length-1]
  335. this.show = false
  336. },
  337. editPublish() {
  338. const routes = getCurrentPages()
  339. console.log(routes);
  340. if (routes.length == 3) {
  341. const acId = routes[2].options.acId
  342. const type = routes[2].options.ty
  343. if (acId) {
  344. this.navBarData.title = '修改发布'
  345. this.btntext = '修改发布'
  346. this.poptext = '修改'
  347. console.log(acId);
  348. console.log(type);
  349. let data = {
  350. acId: acId,
  351. ty: type
  352. }
  353. this.$request('/selectActivityID', "POST", data).then(res => {
  354. console.log(res[0]);
  355. // this.actItemList = res[0]
  356. const item = res[0][0]
  357. this.acId = item.acId
  358. this.activitytitle = item.acName
  359. this.activityintro = item.brief
  360. this.imageValue = item.pic
  361. this.classify = item.type
  362. this.recruitment = item.pers
  363. this.activityform = item.acshape
  364. this.address = item.address
  365. this.funds = item.cost
  366. this.activityDate = item.begin_at
  367. this.deadlineDate = item.endTime
  368. if (this.classify == 0) {
  369. this.classify = "直播活动"
  370. } else if (this.classify == 1) {
  371. this.classify = "常规教研活动"
  372. } else {
  373. this.classify = "专题教研活动"
  374. }
  375. })
  376. }
  377. }
  378. },
  379. submitForm() {
  380. //判断表单内容是否完整
  381. const conditions = [
  382. // 添加提示信息
  383. { value: this.activitytitle.trim(), message: '请填写活动标题' },
  384. { value: this.activityintro.trim(), message: '请填写活动内容' },
  385. { value: this.classify, message: '请填写活动分类' },
  386. { value: this.recruitment, message: '请填写招募人数' },
  387. { value: this.address, message: '请填写活动地址' },
  388. { value: this.activityDate, message: '请填写活动时间' },
  389. ];
  390. for (const condition of conditions) {
  391. if (!condition.value || condition.value === '请选择') {
  392. uni.showToast({
  393. title: condition.message,
  394. icon: 'none'
  395. });
  396. return;
  397. }
  398. }
  399. //判断没有填写的表单内容是否填写,如果没有替换
  400. if (
  401. this.imageValue == '' ||
  402. this.activityform.trim() === '请选择' ||
  403. this.funds === '请选择'
  404. ) {
  405. this.imageValue = 'http://43.139.158.220:5007/img/static/zanwu_img.png'
  406. this.activityform = '暂无'
  407. this.funds = '暂无'
  408. }
  409. this.showPopup = true; //显示弹窗
  410. },
  411. closePopup() {
  412. // 取消操作
  413. this.showPopup = false;
  414. this.showPopupConfirm = false;
  415. },
  416. conf() {
  417. // 确认操作
  418. if (this.classify == "直播活动") {
  419. this.classify = 0
  420. } else if (this.classify == "常规教研活动") {
  421. this.classify = 1
  422. } else {
  423. this.classify = 2
  424. }
  425. // 将文本框内容和图片链接存储在一个对象中
  426. const formData = {
  427. // id: this.$store.state.user.openid,
  428. id: this.btntext === '修改发布' ? this.acId : this.$store.state.user.openid,
  429. activitytitle: this.activitytitle,
  430. activityintro: this.activityintro,
  431. img: this.imageValue,
  432. recruitment: this.recruitment,
  433. activityform: this.activityform,
  434. address: this.address,
  435. classify: this.classify,
  436. activityDate: this.activityDate,
  437. deadlineDate: this.deadlineDate,
  438. funds: this.funds
  439. // price: "188",
  440. // count: "6",
  441. };
  442. this.showPopup = false;
  443. this.showPopupConfirm = true
  444. // return console.log(formData);
  445. console.log(this.btntext);
  446. if (this.btntext === '修改发布') {
  447. // formData.acId = this.acId
  448. // console.log(formData);
  449. this.$request('/updateMyPublish', 'POST', formData).then(res => {
  450. console.log(res);
  451. setTimeout(() => {
  452. uni.navigateBack();
  453. }, 500)
  454. })
  455. } else {
  456. this.$request('/insertActive', 'POST', formData).then(res => {
  457. console.log(res.data);
  458. if (res.code == 200) {
  459. setTimeout(() => {
  460. uni.switchTab({
  461. url: "/pages/activityPage/activityPage"
  462. })
  463. }, 500)
  464. }
  465. })
  466. }
  467. },
  468. handelclassify(e) {
  469. this.classify = this.classifyList[e.detail.value]
  470. console.log(this.classify);
  471. },
  472. handelRecruitment(e) {
  473. this.recruitment = this.recruitmentList[e.detail.value]
  474. console.log(this.imageValue);
  475. },
  476. handelActivityform(e) {
  477. this.activityform = this.activityformList[e.detail.value]
  478. },
  479. handeladdress(e) {
  480. this.address = this.addressList[e.detail.value]
  481. },
  482. handelFunds(e) {
  483. this.funds = this.fundsList[e.detail.value]
  484. },
  485. // activityDateChange: function(e) {
  486. // this.activityDate = e.detail.value
  487. // },
  488. deadlineDateChange: function(e) {
  489. this.deadlineDate = e.detail.value
  490. },
  491. getDate(type) {
  492. const date = new Date();
  493. let year = date.getFullYear();
  494. let month = date.getMonth() + 1;
  495. let day = date.getDate();
  496. if (type === 'start') {
  497. year = year - 60;
  498. } else if (type === 'end') {
  499. year = year + 2;
  500. }
  501. month = month > 9 ? month : '0' + month;
  502. day = day > 9 ? day : '0' + day;
  503. return `${year}-${month}-${day}`;
  504. },
  505. // 上传图片
  506. uploadPic() {
  507. uni.chooseImage({
  508. count: 1, // 图片数量
  509. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  510. sourceType: ['album', 'camera'], //从相册选择或者拍照
  511. success: (res) => {
  512. const tempFilePaths = res.tempFilePaths[0];
  513. console.log(this);
  514. let that = this
  515. const uploadTask = uni.uploadFile({
  516. url: 'http://139.159.246.165:7006/img', // post请求地址
  517. // url: 'https://cxcy.ssti.net.cn/api/UploadFirmFile', // post请求地址
  518. // filePath: tempFilePaths,
  519. filePath: tempFilePaths,
  520. name: 'file', // 待确认
  521. header: {
  522. // 不要写这个不然报错
  523. // 'Content-Type': 'multipart/form-data',
  524. },
  525. success: function(res) {
  526. // console.log(res.data);
  527. that.imageValue = res.data
  528. // let url = JSON.parse(res.data)
  529. // console.log(url.data);
  530. },
  531. fail: function(uploadFileFail) {
  532. console.log('Error:', uploadFileFail.data);
  533. },
  534. complete: () => {
  535. // 接口调用结束的回调函数(调用成功、失败都会执行)
  536. // console.log('Complete:');
  537. }
  538. });
  539. }
  540. });
  541. },
  542. },
  543. onShow() {
  544. if (this.isFirstShow) {
  545. this.editPublish()
  546. this.isFirstShow = false
  547. }
  548. }
  549. }
  550. </script>
  551. <style lang="scss" scoped>
  552. .publish {
  553. .liu {
  554. //留白
  555. width: 750rpx;
  556. height: 68rpx;
  557. position: absolute;
  558. bottom: 0;
  559. background-color: #ffffff;
  560. }
  561. .pubTitle {
  562. width: 750rpx;
  563. height: 96rpx;
  564. padding: 24rpx 30rpx 0 30rpx;
  565. .title {
  566. font-size: 32rpx;
  567. line-height: 48rpx;
  568. font-weight: 500;
  569. }
  570. }
  571. .pubMid {
  572. width: 750rpx;
  573. // height: 504rpx;
  574. padding: 24rpx 30rpx 0 30rpx;
  575. // background-color: #8BBEFF;
  576. .mid {
  577. width: 690rpx;
  578. height: 440rpx;
  579. // background-color: #f2f2f2;
  580. .txt {
  581. width: 690rpx;
  582. height: 192rpx;
  583. .txtClass {
  584. width: 100%;
  585. height: 100%;
  586. font-size: 28rpx;
  587. font-weight: 400;
  588. line-height: 48rpx;
  589. }
  590. }
  591. .pic {
  592. width: 224rpx;
  593. height: 224rpx;
  594. background-color: rgba(242, 242, 242, 1);
  595. display: flex;
  596. position: relative;
  597. justify-content: center;
  598. align-items: center;
  599. .pic_show {
  600. position: absolute;
  601. top: 0;
  602. left: 0;
  603. width: 100%;
  604. height: 100%;
  605. z-index: 10;
  606. background-color: #8BBEFF;
  607. image {
  608. width: 100%;
  609. height: 100%;
  610. }
  611. }
  612. .picCont {
  613. display: flex;
  614. flex-direction: column;
  615. justify-content: center;
  616. align-items: center;
  617. image {
  618. width: 56rpx;
  619. height: 66rpx;
  620. }
  621. }
  622. }
  623. }
  624. }
  625. // background-color: #fff;
  626. height: 100vh;
  627. .textCont {
  628. padding: 16px;
  629. }
  630. .addPhoto {
  631. background-color: #f2f2f2;
  632. width: 224rpx;
  633. height: 224rpx;
  634. display: flex;
  635. color: #616161;
  636. flex-direction: column;
  637. align-items: center;
  638. justify-content: center;
  639. margin-left: 30rpx;
  640. image {
  641. width: 50px;
  642. height: 50px;
  643. // margin-left: 48px;
  644. }
  645. .photo {
  646. color: #000000A3;
  647. // padding-left: 44px;
  648. // font-size: 14px;
  649. }
  650. .num {
  651. color: #919191;
  652. // padding-left: 56px;
  653. // font-size: 14px;
  654. }
  655. }
  656. .userOptionsBox {
  657. width: 750rpx;
  658. height: 96rpx;
  659. display: flex;
  660. justify-content: center;
  661. align-items: center;
  662. .optionsItemBox {
  663. width: 690rpx;
  664. .optionItem {
  665. display: flex;
  666. justify-content: space-between;
  667. align-items: center;
  668. .option_left {
  669. display: flex;
  670. align-items: center;
  671. font-size: 28rpx;
  672. line-height: 48rpx;
  673. font-weight: 400;
  674. }
  675. .option_right {
  676. height: 40rpx;
  677. .input_details {
  678. display: flex;
  679. align-items: center;
  680. .details {
  681. display: flex;
  682. flex-direction: row;
  683. .text {
  684. font-size: 28rpx;
  685. color: rgb(153, 153, 153);
  686. }
  687. }
  688. .arrow {
  689. display: flex;
  690. image {
  691. width: 32rpx;
  692. height: 32rpx;
  693. }
  694. }
  695. }
  696. }
  697. }
  698. }
  699. }
  700. .publish_now {
  701. position: absolute;
  702. // bottom: 100rpx;
  703. display: flex;
  704. width: 750rpx;
  705. justify-content: center;
  706. padding-bottom: 50rpx;
  707. .btn {
  708. width: 432rpx;
  709. height: 88rpx;
  710. line-height: 88rpx;
  711. // background-color: #8BBEFF;
  712. background: rgba(0, 86, 168, 1);
  713. color: #fff;
  714. display: flex;
  715. flex-direction: column;
  716. align-items: center;
  717. margin-top: 20px;
  718. }
  719. }
  720. .mask {
  721. position: fixed;
  722. top: 0;
  723. left: 0;
  724. width: 100%;
  725. height: 100%;
  726. background-color: rgba(0, 0, 0, 0.3);
  727. z-index: 999;
  728. // display: none;
  729. }
  730. .popup-container {
  731. position: fixed;
  732. top: 50%;
  733. left: 50%;
  734. transform: translate(-50%, -50%);
  735. width: 520rpx;
  736. height: 260rpx;
  737. z-index: 1000;
  738. // display: none;
  739. .popup {
  740. width: 100%;
  741. height: 100%;
  742. display: flex;
  743. flex-direction: column;
  744. background-color: #fff;
  745. border-radius: 16rpx;
  746. .header {
  747. flex: 1;
  748. display: flex;
  749. justify-content: center;
  750. align-items: center;
  751. flex-direction: column;
  752. margin-top: 24px;
  753. font-size: 34rpx;
  754. font-weight: 600;
  755. image {
  756. width: 150rpx;
  757. height: 150rpx;
  758. margin-top: 15px;
  759. margin-bottom: 15px;
  760. }
  761. }
  762. .footer {
  763. flex: 1;
  764. display: flex;
  765. justify-content: space-around;
  766. align-items: end;
  767. padding-top: 17px;
  768. .cancel-btn {
  769. width: 259rpx;
  770. height: 100rpx;
  771. background-color: #F7F7F7;
  772. color: #000;
  773. font-size: 34rpx;
  774. text-align: center;
  775. border-radius: 0;
  776. border-bottom-left-radius: 16rpx;
  777. line-height: 50px;
  778. }
  779. .confirm-btn {
  780. width: 259rpx;
  781. height: 100rpx;
  782. background-color: #0081FE;
  783. color: #fff;
  784. font-size: 34rpx;
  785. text-align: center;
  786. border-radius: 0;
  787. border-bottom-right-radius: 16rpx;
  788. line-height: 50px;
  789. }
  790. .confirm-btn_2 {
  791. width: 518rpx;
  792. height: 100rpx;
  793. background-color: #F7F7F7;
  794. color: #000;
  795. font-size: 34rpx;
  796. text-align: center;
  797. border-radius: 0;
  798. border-bottom-left-radius: 16rpx;
  799. border-bottom-right-radius: 16rpx;
  800. line-height: 50px;
  801. }
  802. }
  803. }
  804. }
  805. }
  806. </style>