eadit.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. <template>
  2. <view class="content">
  3. <view class="kk"></view>
  4. <view class="box" style="padding-bottom: 0;">
  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" :start='startTime'>
  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" style="border: none;">
  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" style="padding-bottom: 0;">
  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}">手机号</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="number" v-model="number" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
  61. </view>
  62. </view>
  63. <view class="line" style="border: none;">
  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" v-if="payType==1">
  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" @click="previewImage(img)">
  107. </view>
  108. <view class="lineimghz" @click="upimgzt" v-if="!img">
  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" @click="previewImage(item)">
  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:[1,],
  171. clWhereString:'1',
  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. previewImage(img){
  204. var arr=[]
  205. arr.push(img)
  206. uni.previewImage({
  207. urls: arr,
  208. longPressActions: {
  209. itemList: ['发送给朋友', '保存图片',],
  210. success: function(data) {},
  211. fail: function(err) {}
  212. }
  213. });
  214. },
  215. getDetails(){
  216. uni.showLoading({
  217. title: '加载中'
  218. })
  219. this.$http('openH5SetTheGuest/getAtivityDetails', {
  220. id:this.id
  221. },'GET').then(res => {
  222. uni.hideLoading();
  223. var jkdata=res.data.data
  224. this.activityName=jkdata.activityName;
  225. this.activityContent=jkdata.activityContent;
  226. this.money=jkdata.money;
  227. this.number=jkdata.number;
  228. this.clWhereString=jkdata.clWhere;
  229. this.clWhereList=this.clWhereString.split(',');
  230. this.startTime=jkdata.startTime.slice(0,10);
  231. this.endTime=jkdata.endTime.slice(0,10);
  232. this.payType=jkdata.payType;
  233. this.img=res.data.img.img;
  234. if(res.data.imgList){
  235. res.data.imgList.forEach(item=>{
  236. this.imgListArr.push(item.img)
  237. })
  238. }
  239. var shopNames=[];
  240. var shopList=[];
  241. if(res.data.shopList){
  242. res.data.shopList.forEach(item=>{
  243. item.id=item.shopId
  244. shopNames.push(item.shopName)
  245. shopList.push(item.shopId)
  246. })
  247. this.shopNames=shopNames.join(',')
  248. this.shopList=shopList.join(',')
  249. }
  250. var useshoplist=res.data.shopList
  251. this.ckMusic=res.data.selectedMusic;
  252. if(this.ckMusic){
  253. this.music=this.ckMusic.id;
  254. uni.setStorage({
  255. key: 'ckmusic',
  256. data: this.ckMusic,
  257. success: function () {
  258. }
  259. });
  260. }else{
  261. uni.removeStorageSync('ckmusic');
  262. }
  263. //console.log(this.imgListArr)
  264. uni.setStorage({
  265. key: 'shopckList',
  266. data: useshoplist,
  267. success: function () {
  268. }
  269. });
  270. //this.list=res.data
  271. })
  272. },
  273. delimgzt(){
  274. this.img=''
  275. },
  276. upimgzt(){
  277. var that = this;
  278. uni.chooseImage({
  279. sourceType: ['album','camera'],
  280. count:1,
  281. sizeType:['compressed'],
  282. success: (chooseImageRes) => {
  283. const tempFilePaths = chooseImageRes.tempFilePaths;
  284. that.file=tempFilePaths[0]
  285. uni.uploadFile({
  286. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  287. filePath: tempFilePaths[0],
  288. name: 'file',
  289. formData: {
  290. 'user': 'test'
  291. },
  292. success: (uploadFileRes) => {
  293. console.log(JSON.parse(uploadFileRes.data).data );
  294. that.img=JSON.parse(uploadFileRes.data).data[0]
  295. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  296. //that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  297. //that.goAddzdy(that.imgurl)
  298. }
  299. });
  300. }
  301. });
  302. },
  303. preview(){
  304. //console.log(this.clWhere)
  305. // if(this.money==0){
  306. // this.money=0
  307. // }
  308. if(this.money==null){
  309. this.money=''
  310. }
  311. console.log(this.money)
  312. if(this.activityName==''){
  313. uni.showToast({
  314. title: '请输入活动名称',
  315. icon:'none',
  316. duration: 2000
  317. });
  318. return false;
  319. }else if(!this.startTime||!this.endTime){
  320. uni.showToast({
  321. title: '请选择报名时间',
  322. icon:'none',
  323. duration: 2000
  324. });
  325. return false;
  326. }else if(this.shopList==''){
  327. uni.showToast({
  328. title: '请选择活动门店',
  329. icon:'none',
  330. duration: 2000
  331. });
  332. return false;
  333. }else if(this.clWhereString==''){
  334. uni.showToast({
  335. title: '请选择报名凭证',
  336. icon:'none',
  337. duration: 2000
  338. });
  339. return false;
  340. }else if(this.number==''){
  341. uni.showToast({
  342. title: '请输入最多报名人数',
  343. icon:'none',
  344. duration: 2000
  345. });
  346. return false;
  347. }else if(this.money!==0&&this.money==''&&this.payType==1){
  348. uni.showToast({
  349. title: '请输入支付金额',
  350. icon:'none',
  351. duration: 2000
  352. });
  353. return false;
  354. }
  355. //return false;
  356. var editdata={
  357. id:this.id,
  358. activityName:this.activityName,
  359. startTime:this.startTime+ ' 00:00:00',
  360. endTime:this.endTime+ ' 23:59:59',
  361. number:this.number,
  362. activityContent:this.activityContent,
  363. clWhere:this.clWhereString,
  364. payType:this.payType,
  365. music:this.music,
  366. money:this.money,
  367. shopList:this.shopList,
  368. img:this.img,
  369. imgList:this.imgListArr.join(','),
  370. clState:'',
  371. }
  372. console.log(editdata)
  373. uni.setStorage({
  374. key: 'editdata',
  375. data: editdata,
  376. success: function () {
  377. uni.navigateTo({
  378. url:'jkDetail?type=1'
  379. })
  380. }
  381. });
  382. },
  383. addShop(){
  384. uni.navigateTo({
  385. url:'ckshop'
  386. })
  387. },
  388. goMusic(){
  389. uni.navigateTo({
  390. url:'ckmusic'
  391. })
  392. },
  393. musicDel(){
  394. this.music='';
  395. this.ckMusic=''
  396. uni.removeStorageSync('ckmusic');
  397. },
  398. bindTimeChangeStart(e){
  399. console.log(e)
  400. this.startTime=e.detail.value;
  401. },
  402. bindTimeChangeendTime(e){
  403. this.endTime=e.detail.value;
  404. },
  405. clWhere(num){
  406. console.log(this.clWhereList)
  407. this.clWhereString=this.clWhereList.join(',');
  408. if(this.clWhereString.indexOf(num)!=-1){
  409. // this.clWhereList.remove(num)
  410. let index = this.clWhereList.indexOf(num);
  411. this.clWhereList.splice(index, 1)
  412. //this.remove(num)
  413. }else{
  414. this.clWhereList.push(num)
  415. }
  416. this.clWhereString=this.clWhereList.join(',');
  417. console.log(this.clWhereString)
  418. },
  419. delimg(index){
  420. this.imgListArr.splice(index, 1)
  421. },
  422. upimg(){
  423. var that = this;
  424. uni.chooseImage({
  425. sourceType: ['album','camera'],
  426. count:9,
  427. sizeType:['compressed'],
  428. success: (chooseImageRes) => {
  429. const tempFilePaths = chooseImageRes.tempFilePaths;
  430. that.file=tempFilePaths[0]
  431. uni.uploadFile({
  432. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  433. filePath: tempFilePaths[0],
  434. name: 'file',
  435. formData: {
  436. 'user': 'test'
  437. },
  438. success: (uploadFileRes) => {
  439. console.log(JSON.parse(uploadFileRes.data).data );
  440. that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  441. //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  442. //that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  443. //that.goAddzdy(that.imgurl)
  444. }
  445. });
  446. }
  447. });
  448. }
  449. }
  450. }
  451. </script>
  452. <style scoped>
  453. .content{
  454. min-height: 100vh;
  455. background:#F4F5F7;
  456. }
  457. .preview{
  458. width: 750rpx;
  459. height: 98rpx;
  460. background: #3F90F7;
  461. line-height: 98rpx;
  462. text-align: center;
  463. color: #ffffff;
  464. font-size: 30rpx;
  465. position: fixed;
  466. left: 0;
  467. bottom: 0;
  468. }
  469. .musicBox{
  470. padding: 0 24rpx;
  471. }
  472. .musicLine{
  473. display: flex;
  474. justify-content: space-between;
  475. margin-bottom:30rpx;
  476. padding:26rpx 24rpx;
  477. background: #F4F5F7;
  478. border-radius: 10rpx;
  479. }
  480. .musicName{
  481. color: #3C3C3C;font-size: 24rpx;
  482. padding-left: 10rpx;
  483. }
  484. .musicLineLeft{
  485. display: flex;
  486. }
  487. .musicDel{
  488. width: 30rpx;
  489. height: 30rpx;
  490. }
  491. .musicImg{
  492. width: 36rpx;
  493. height: 36rpx;
  494. }
  495. .line2{
  496. padding: 30rpx 24rpx;
  497. border-bottom: 1px solid #EEEEEE;
  498. }
  499. .musicJt{
  500. width: 28rpx;
  501. height: 28rpx;
  502. margin-top: 8rpx;
  503. }
  504. .musicRight{
  505. display: flex;
  506. justify-content: space-between;
  507. width: 500rpx;
  508. }
  509. .musicMS{
  510. color: #CCCCCC;
  511. }
  512. .lineimgdel{
  513. width: 37rpx;
  514. height: 37rpx;
  515. position: absolute;
  516. top: -18rpx;
  517. right: -18rpx;
  518. }
  519. .lineimghz{
  520. margin-right: 24rpx;
  521. position: relative;
  522. margin-top: 24rpx;
  523. }
  524. .lineimg{
  525. width: 150rpx;
  526. height: 150rpx;
  527. }
  528. .lineTitle{
  529. color: #666666;font-size: 28rpx;
  530. }
  531. .lineMS{
  532. color: #999999;font-size: 24rpx;padding-top: 10rpx;
  533. }
  534. .lineImgBOx{
  535. display: flex;
  536. flex-wrap: wrap;
  537. }
  538. .payBox{
  539. display: flex;
  540. }
  541. .payTypeImg{
  542. width: 36rpx;
  543. height: 36rpx;
  544. }
  545. .payType{
  546. display: flex;
  547. line-height: 36rpx;
  548. }
  549. .payTypeTxt{
  550. padding-left: 10rpx;
  551. color: #3C3C3C;
  552. }
  553. .line{
  554. display: flex;
  555. font-size: 28rpx;
  556. padding: 30rpx 24rpx;
  557. border-bottom: 1px solid #EEEEEE;
  558. }
  559. .linexx{
  560. color: #FF3B30;
  561. }
  562. .dateView{
  563. color:#3C3C3C ;
  564. }
  565. .lineLeft{
  566. width: 200rpx;
  567. color: #666666;
  568. }
  569. .clWhereBox{
  570. display: flex;
  571. }
  572. .clWhereLine{
  573. width: 100rpx;
  574. height: 52rpx;
  575. background: #F4F5F7;
  576. border-radius: 10rpx;
  577. text-align: center;
  578. color: #3C3C3C;
  579. line-height: 52rpx;
  580. font-size: 24rpx;
  581. margin-right: 24rpx;
  582. }
  583. .clWhereBox .clWhereActive{
  584. background: #EAF3FF;
  585. border: 2rpx solid #3F90F7;
  586. height: 48rpx;
  587. color: #3F90F7;
  588. height: 48rpx;
  589. line-height: 48rpx;
  590. width: 96rpx;
  591. }
  592. .timelineRight{
  593. display: flex;
  594. }
  595. .textsr{
  596. width: 500rpx;
  597. height: 180rpx;
  598. }
  599. .shopListNo{
  600. width: 400rpx;
  601. white-space:nowrap;
  602. overflow:hidden;
  603. text-overflow:ellipsis;
  604. color: #CCCCCC;
  605. }
  606. .shopListY{
  607. width: 400rpx;
  608. white-space:nowrap;
  609. overflow:hidden;
  610. text-overflow:ellipsis;
  611. color: #3C3C3C;
  612. }
  613. .addshop{
  614. color: #3F90F7;
  615. padding-left: 10rpx;
  616. }
  617. .shopckBox{
  618. display: flex;
  619. }
  620. .timeHx{
  621. color: #CCCCCC;
  622. padding: 0 30rpx;
  623. }
  624. .lineRightInput{
  625. font-size: 28rpx;
  626. color:#3C3C3C ;
  627. width: 500rpx;
  628. }
  629. .lineRight{
  630. color:#3C3C3C ;
  631. }
  632. .inputPlace{
  633. color: #CCCCCC;
  634. }
  635. .dateViewno{
  636. color: #CCCCCC;
  637. }
  638. .box{
  639. background: #ffffff;
  640. padding-bottom: 30rpx;
  641. }
  642. .kk{
  643. background:#F4F5F7;
  644. height: 20rpx;
  645. }
  646. .title{
  647. padding-left: 24rpx;
  648. padding-top: 30rpx;
  649. color: #333333;
  650. font-size: 32rpx;
  651. line-height: 45rpx;
  652. font-weight: 500;
  653. }
  654. .lineBorderNo{
  655. border-bottom: none !important;
  656. }
  657. </style>