eadit.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. <template>
  2. <view class="content">
  3. <view class="kk"></view>
  4. <view class="box">
  5. <view class="title">基础信息</view>
  6. <view class="line">
  7. <view class="lineLeft">
  8. <span class="linexx">*</span> <span>活动名称</span>
  9. </view>
  10. <view class="lineRight">
  11. <input type="text" v-model="activityName" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  12. </view>
  13. </view>
  14. <view class="line">
  15. <view class="lineLeft">
  16. <span class="linexx">*</span> <span>报名时间</span>
  17. </view>
  18. <view class="lineRight timelineRight">
  19. <picker mode="date" :value="startTime" @change="bindTimeChangeStart">
  20. <view class="dateViewno" v-if="!startTime">开始时间</view>
  21. <view class="dateView" v-else>{{startTime}}</view>
  22. </picker>
  23. <view class="timeHx">-</view>
  24. <picker mode="date" :value="endTime" @change="bindTimeChangeendTime">
  25. <view class="dateViewno" v-if="!endTime">结束时间</view>
  26. <view class="dateView" v-else>{{endTime}}</view>
  27. </picker>
  28. </view>
  29. </view>
  30. <view class="line">
  31. <view class="lineLeft">
  32. <span class="linexx">*</span> <span>活动门店</span>
  33. </view>
  34. <view class="lineRight shopckBox">
  35. <view class="shopListNo" v-if="!shopNames">请选择活动门店,可多选请</view>
  36. <view class="shopListY" v-if="shopNames">{{shopNames}}</view>
  37. <view class="addshop" @click="addShop">添加</view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="kk"></view>
  42. <view class="box">
  43. <view class="title">报名信息</view>
  44. <view class="line">
  45. <view class="lineLeft">
  46. <span class="linexx">*</span> <span>报名凭证</span>
  47. </view>
  48. <view class="lineRight clWhereBox">
  49. <view class="clWhereLine" :class="{clWhereActive:clWhereString.indexOf(1)!=-1}" @click="clWhere(1)">手机号</view>
  50. <view class="clWhereLine" :class="{clWhereActive:clWhereString.indexOf(2)!=-1}" @click="clWhere(2)">车牌号</view>
  51. <view class="clWhereLine" :class="{clWhereActive:clWhereString.indexOf(3)!=-1}" @click="clWhere(3)">姓名</view>
  52. <view class="clWhereLine" :class="{clWhereActive:clWhereString.indexOf(4)!=-1}" @click="clWhere(4)">单位</view>
  53. </view>
  54. </view>
  55. <view class="line">
  56. <view class="lineLeft">
  57. <span class="linexx">*</span> <span>最多报名人数</span>
  58. </view>
  59. <view class="lineRight">
  60. <input type="text" v-model="number" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  61. </view>
  62. </view>
  63. <view class="line">
  64. <view class="lineLeft">
  65. <span class="linexx">*</span> <span>支付方式</span>
  66. </view>
  67. <view class="lineRight payBox">
  68. <view class="payType" @click="payType=1">
  69. <img src="../../static/img/ckn.png" alt="" class="payTypeImg" v-if="payType!=1">
  70. <img src="../../static/img/cky.png" alt="" class="payTypeImg" v-if="payType==1">
  71. <view class="payTypeTxt">在线支付</view>
  72. </view>
  73. <view class="payType" @click="payType=2" style="padding-left: 30rpx;">
  74. <img src="../../static/img/cky.png" alt="" class="payTypeImg" v-if="payType==2">
  75. <img src="../../static/img/ckn.png" alt="" class="payTypeImg" v-if="payType!=2">
  76. <view class="payTypeTxt">无需支付</view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="line">
  81. <view class="lineLeft">
  82. <span class="linexx">*</span> <span>支付金额</span>
  83. </view>
  84. <view class="lineRight">
  85. <input type="text" v-model="money" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  86. </view>
  87. </view>
  88. </view>
  89. <view class="kk"></view>
  90. <view class="box">
  91. <view class="title">活动详情</view>
  92. <view class="line">
  93. <view class="lineLeft">
  94. <span>活动说明</span>
  95. </view>
  96. <view class="lineRight">
  97. <textarea placeholder-class="inputPlace" v-model="activityContent" placeholder="请输入" class="textsr"/>
  98. </view>
  99. </view>
  100. <view class="line2">
  101. <view class="lineTitle">主图</view>
  102. <view class="lineMS">此图在活动顶部显示,建议宽度750px</view>
  103. <view class="lineImgBOx">
  104. <view class="lineimghz" v-if="img">
  105. <img src="../../static/img/del.png" alt="" class="lineimgdel" @click="delimgzt" >
  106. <img :src="img" alt="" class="lineimg">
  107. </view>
  108. <view class="lineimghz" @click="upimgzt">
  109. <img src="../../static/img/scimg.png" alt="" class="lineimg">
  110. </view>
  111. </view>
  112. </view>
  113. <view class="line2">
  114. <view class="lineTitle">详情图片</view>
  115. <view class="lineMS">此图在活动底部显示,可用于显示门店照片等,建议宽度750px</view>
  116. <view class="lineImgBOx">
  117. <view class="lineimghz" v-for="(item,index) in imgListArr">
  118. <img src="../../static/img/del.png" alt="" class="lineimgdel" @click="delimg(index)" >
  119. <img :src="item" alt="" class="lineimg">
  120. </view>
  121. <view class="lineimghz" @click="upimg">
  122. <img src="../../static/img/scimg.png" alt="" class="lineimg">
  123. </view>
  124. </view>
  125. </view>
  126. <view class="line lineBorderNo">
  127. <view class="lineLeft">
  128. <span>音乐</span>
  129. </view>
  130. <view class="lineRight musicRight" @click="goMusic">
  131. <view class="musicMS">选择/更换音乐</view>
  132. <img src="../../static/img/jt.png" alt="" class="musicJt">
  133. </view>
  134. </view>
  135. <view class="musicBox" v-if="ckMusic">
  136. <view class="musicLine">
  137. <view class="musicLineLeft">
  138. <img src="../../static/img/music.png" alt="" class="musicImg">
  139. <view class="musicName">{{ckMusic.name}}</view>
  140. </view>
  141. <view>
  142. <img src="../../static/img/sanchu.png" alt="" class="musicDel" @click="musicDel">
  143. </view>
  144. </view>
  145. </view>
  146. </view>
  147. <view style="height: 120rpx;"></view>
  148. <view class="preview" @click="preview">预览</view>
  149. </view>
  150. </template>
  151. <script>
  152. export default {
  153. data() {
  154. return {
  155. id:'', //类型:String 可有字段 备注:新增无编辑有
  156. activityName:'', //类型:String 必有字段 备注:活动名称
  157. startTime:"", //类型:String 必有字段 备注:营业开始时间
  158. endTime:"", //类型:String 必有字段 备注:营业结束时间
  159. number:"", //类型:String 必有字段 备注:报名人数
  160. activityContent:"", //类型:String 必有字段 备注:活动说明
  161. //clWhere:'', //类型:String 必有字段 备注:报名凭证1,2,3,4 1手机号2车牌号3姓名4单位
  162. payType:1, //类型:String 必有字段 备注:1在线支付2无需支付
  163. music:"", //类型:String 必有字段 备注:背景音乐
  164. clState:'', //类型:String 必有字段 备注:1未启用2启用
  165. img:'', //类型:String 必有字段 备注:从首页带进来的图片
  166. imgList:'',//类型:String 必有字段 备注:详情图片多个以逗号分割
  167. datetimerange: '',
  168. shopNames:'',
  169. shopList:'',
  170. clWhereList:[],
  171. clWhereString:'',
  172. imgListArr:[],
  173. money:'',
  174. ckMusic:'',
  175. id:'',
  176. }
  177. },
  178. onLoad(opt) {
  179. this.img=opt.img;
  180. if(opt.id){
  181. this.id=opt.id;
  182. this.getDetails()
  183. }
  184. },
  185. onShow() {
  186. const shopckList = uni.getStorageSync("shopckList");
  187. this.ckMusic=uni.getStorageSync("ckmusic")
  188. if(this.ckMusic){
  189. this.music=this.ckMusic.id
  190. }
  191. var shopNames=[];
  192. var shopList=[];
  193. if(shopckList){
  194. shopckList.forEach(item=>{
  195. shopNames.push(item.shopName)
  196. shopList.push(item.id)
  197. })
  198. this.shopNames=shopNames.join(',')
  199. this.shopList=shopList.join(',')
  200. }
  201. },
  202. methods: {
  203. getDetails(){
  204. uni.showLoading({
  205. title: '加载中'
  206. })
  207. this.$http('openH5SetTheGuest/getAtivityDetails', {
  208. id:this.id
  209. },'GET').then(res => {
  210. uni.hideLoading();
  211. var jkdata=res.data.data
  212. this.activityName=jkdata.activityName;
  213. this.activityContent=jkdata.activityContent;
  214. this.money=jkdata.money;
  215. this.number=jkdata.number;
  216. this.clWhereString=jkdata.clWhere;
  217. this.clWhereList=this.clWhereString.slice(',');
  218. this.startTime=jkdata.startTime.slice(0,10);
  219. this.endTime=jkdata.endTime.slice(0,10);
  220. this.payType=jkdata.payType;
  221. this.img=res.data.img.img;
  222. if(res.data.imgList){
  223. res.data.imgList.forEach(item=>{
  224. this.imgListArr.push(item.img)
  225. })
  226. }
  227. var shopNames=[];
  228. var shopList=[];
  229. if(res.data.shopList){
  230. res.data.shopList.forEach(item=>{
  231. shopNames.push(item.shopName)
  232. shopList.push(item.shopId)
  233. })
  234. this.shopNames=shopNames.join(',')
  235. this.shopList=shopList.join(',')
  236. }
  237. this.ckMusic=res.data.selectedMusic
  238. this.music=ckMusic.id;
  239. console.log(this.imgListArr)
  240. //this.list=res.data
  241. })
  242. },
  243. delimgzt(){
  244. this.img=''
  245. },
  246. upimgzt(){
  247. var that = this;
  248. uni.chooseImage({
  249. sourceType: ['album','camera'],
  250. count:1,
  251. success: (chooseImageRes) => {
  252. const tempFilePaths = chooseImageRes.tempFilePaths;
  253. that.file=tempFilePaths[0]
  254. uni.uploadFile({
  255. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  256. filePath: tempFilePaths[0],
  257. name: 'file',
  258. formData: {
  259. 'user': 'test'
  260. },
  261. success: (uploadFileRes) => {
  262. console.log(JSON.parse(uploadFileRes.data).data );
  263. that.img=JSON.parse(uploadFileRes.data).data[0]
  264. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  265. //that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  266. //that.goAddzdy(that.imgurl)
  267. }
  268. });
  269. }
  270. });
  271. },
  272. preview(){
  273. // if(this.money==0){
  274. // this.money=0
  275. // }
  276. console.log(this.money)
  277. if(this.activityName==''){
  278. uni.showToast({
  279. title: '请输入活动名称',
  280. icon:'none',
  281. duration: 2000
  282. });
  283. return false;
  284. }else if(!this.startTime||!this.endTime){
  285. uni.showToast({
  286. title: '请选择报名时间',
  287. icon:'none',
  288. duration: 2000
  289. });
  290. return false;
  291. }else if(this.shopList==''){
  292. uni.showToast({
  293. title: '请选择活动门店',
  294. icon:'none',
  295. duration: 2000
  296. });
  297. return false;
  298. }else if(this.clWhere==''){
  299. uni.showToast({
  300. title: '请选择报名凭证',
  301. icon:'none',
  302. duration: 2000
  303. });
  304. return false;
  305. }else if(this.number==''){
  306. uni.showToast({
  307. title: '请输入最多报名人数',
  308. icon:'none',
  309. duration: 2000
  310. });
  311. return false;
  312. }else if(this.money!=0&&this.money==''){
  313. uni.showToast({
  314. title: '请输入支付金额',
  315. icon:'none',
  316. duration: 2000
  317. });
  318. return false;
  319. }
  320. var editdata={
  321. id:this.id,
  322. activityName:this.activityName,
  323. startTime:this.startTime,
  324. endTime:this.endTime,
  325. number:this.number,
  326. activityContent:this.activityContent,
  327. clWhere:this.clWhereString,
  328. payType:this.payType,
  329. music:this.music,
  330. money:this.money,
  331. shopList:this.shopList,
  332. img:this.img,
  333. imgList:this.imgListArr.join(','),
  334. clState:'',
  335. }
  336. console.log(editdata)
  337. uni.setStorage({
  338. key: 'editdata',
  339. data: editdata,
  340. success: function () {
  341. uni.navigateTo({
  342. url:'jkDetail?type=1'
  343. })
  344. }
  345. });
  346. },
  347. addShop(){
  348. uni.navigateTo({
  349. url:'ckshop'
  350. })
  351. },
  352. goMusic(){
  353. uni.navigateTo({
  354. url:'ckmusic'
  355. })
  356. },
  357. musicDel(){
  358. this.music='';
  359. this.ckMusic=''
  360. uni.removeStorageSync('ckmusic');
  361. },
  362. bindTimeChangeStart(e){
  363. console.log(e)
  364. this.startTime=e.detail.value;
  365. },
  366. bindTimeChangeendTime(e){
  367. this.endTime=e.detail.value;
  368. },
  369. clWhere(num){
  370. this.clWhereString=this.clWhereList.join(',');
  371. if(this.clWhereString.indexOf(num)!=-1){
  372. // this.clWhereList.remove(num)
  373. let index = this.clWhereList.indexOf(num);
  374. this.clWhereList.splice(index, 1)
  375. //this.remove(num)
  376. }else{
  377. this.clWhereList.push(num)
  378. }
  379. this.clWhereString=this.clWhereList.join(',');
  380. console.log(this.clWhereString)
  381. },
  382. delimg(index){
  383. this.imgListArr.splice(index, 1)
  384. },
  385. upimg(){
  386. var that = this;
  387. uni.chooseImage({
  388. sourceType: ['album','camera'],
  389. count:9,
  390. success: (chooseImageRes) => {
  391. const tempFilePaths = chooseImageRes.tempFilePaths;
  392. that.file=tempFilePaths[0]
  393. uni.uploadFile({
  394. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  395. filePath: tempFilePaths[0],
  396. name: 'file',
  397. formData: {
  398. 'user': 'test'
  399. },
  400. success: (uploadFileRes) => {
  401. console.log(JSON.parse(uploadFileRes.data).data );
  402. that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  403. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  404. //that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  405. //that.goAddzdy(that.imgurl)
  406. }
  407. });
  408. }
  409. });
  410. }
  411. }
  412. }
  413. </script>
  414. <style scoped>
  415. .content{
  416. min-height: 100vh;
  417. background:#F4F5F7;
  418. }
  419. .preview{
  420. width: 750rpx;
  421. height: 98rpx;
  422. background: #3F90F7;
  423. line-height: 98rpx;
  424. text-align: center;
  425. color: #ffffff;
  426. font-size: 30rpx;
  427. position: fixed;
  428. left: 0;
  429. bottom: 0;
  430. }
  431. .musicBox{
  432. padding: 0 24rpx;
  433. }
  434. .musicLine{
  435. display: flex;
  436. justify-content: space-between;
  437. margin-bottom:30rpx;
  438. padding:26rpx 24rpx;
  439. background: #F4F5F7;
  440. border-radius: 10rpx;
  441. }
  442. .musicName{
  443. color: #3C3C3C;font-size: 24rpx;
  444. padding-left: 10rpx;
  445. }
  446. .musicLineLeft{
  447. display: flex;
  448. }
  449. .musicDel{
  450. width: 30rpx;
  451. height: 30rpx;
  452. }
  453. .musicImg{
  454. width: 36rpx;
  455. height: 36rpx;
  456. }
  457. .line2{
  458. padding: 30rpx 24rpx;
  459. border-bottom: 1px solid #EEEEEE;
  460. }
  461. .musicJt{
  462. width: 28rpx;
  463. height: 28rpx;
  464. margin-top: 8rpx;
  465. }
  466. .musicRight{
  467. display: flex;
  468. justify-content: space-between;
  469. width: 500rpx;
  470. }
  471. .musicMS{
  472. color: #CCCCCC;
  473. }
  474. .lineimgdel{
  475. width: 37rpx;
  476. height: 37rpx;
  477. position: absolute;
  478. top: -18rpx;
  479. right: -18rpx;
  480. }
  481. .lineimghz{
  482. margin-right: 24rpx;
  483. position: relative;
  484. margin-top: 24rpx;
  485. }
  486. .lineimg{
  487. width: 150rpx;
  488. height: 150rpx;
  489. }
  490. .lineTitle{
  491. color: #666666;font-size: 28rpx;
  492. }
  493. .lineMS{
  494. color: #999999;font-size: 24rpx;padding-top: 10rpx;
  495. }
  496. .lineImgBOx{
  497. display: flex;
  498. flex-wrap: wrap;
  499. }
  500. .payBox{
  501. display: flex;
  502. }
  503. .payTypeImg{
  504. width: 36rpx;
  505. height: 36rpx;
  506. }
  507. .payType{
  508. display: flex;
  509. line-height: 36rpx;
  510. }
  511. .payTypeTxt{
  512. padding-left: 10rpx;
  513. color: #3C3C3C;
  514. }
  515. .line{
  516. display: flex;
  517. font-size: 28rpx;
  518. padding: 30rpx 24rpx;
  519. border-bottom: 1px solid #EEEEEE;
  520. }
  521. .linexx{
  522. color: #FF3B30;
  523. }
  524. .dateView{
  525. color:#3C3C3C ;
  526. }
  527. .lineLeft{
  528. width: 200rpx;
  529. color: #666666;
  530. }
  531. .clWhereBox{
  532. display: flex;
  533. }
  534. .clWhereLine{
  535. width: 100rpx;
  536. height: 52rpx;
  537. background: #F4F5F7;
  538. border-radius: 10rpx;
  539. text-align: center;
  540. color: #3C3C3C;
  541. line-height: 52rpx;
  542. font-size: 24rpx;
  543. margin-right: 24rpx;
  544. }
  545. .clWhereBox .clWhereActive{
  546. background: #EAF3FF;
  547. border: 2rpx solid #3F90F7;
  548. height: 48rpx;
  549. color: #3F90F7;
  550. height: 48rpx;
  551. line-height: 48rpx;
  552. width: 96rpx;
  553. }
  554. .timelineRight{
  555. display: flex;
  556. }
  557. .textsr{
  558. width: 500rpx;
  559. height: 180rpx;
  560. }
  561. .shopListNo{
  562. width: 400rpx;
  563. white-space:nowrap;
  564. overflow:hidden;
  565. text-overflow:ellipsis;
  566. color: #CCCCCC;
  567. }
  568. .shopListY{
  569. width: 400rpx;
  570. white-space:nowrap;
  571. overflow:hidden;
  572. text-overflow:ellipsis;
  573. color: #3C3C3C;
  574. }
  575. .addshop{
  576. color: #3F90F7;
  577. padding-left: 10rpx;
  578. }
  579. .shopckBox{
  580. display: flex;
  581. }
  582. .timeHx{
  583. color: #CCCCCC;
  584. padding: 0 30rpx;
  585. }
  586. .lineRightInput{
  587. font-size: 28rpx;
  588. color:#3C3C3C ;
  589. }
  590. .lineRight{
  591. color:#3C3C3C ;
  592. }
  593. .inputPlace{
  594. color: #CCCCCC;
  595. }
  596. .dateViewno{
  597. color: #CCCCCC;
  598. }
  599. .box{
  600. background: #ffffff;
  601. }
  602. .kk{
  603. background:#F4F5F7;
  604. height: 20rpx;
  605. }
  606. .title{
  607. padding-left: 24rpx;
  608. padding-top: 30rpx;
  609. color: #333333;
  610. font-size: 32rpx;
  611. line-height: 45rpx;
  612. font-weight: 500;
  613. }
  614. .lineBorderNo{
  615. border-bottom: none !important;
  616. }
  617. </style>