eadit.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  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. <w-compress ref='wCompress' />
  150. </view>
  151. </template>
  152. <script>
  153. import WCompress from '@/components/w-compress/w-compress.vue'
  154. export default {
  155. components: {
  156. WCompress
  157. },
  158. data() {
  159. return {
  160. id:'', //类型:String 可有字段 备注:新增无编辑有
  161. activityName:'', //类型:String 必有字段 备注:活动名称
  162. startTime:"", //类型:String 必有字段 备注:营业开始时间
  163. endTime:"", //类型:String 必有字段 备注:营业结束时间
  164. number:"", //类型:String 必有字段 备注:报名人数
  165. activityContent:"", //类型:String 必有字段 备注:活动说明
  166. //clWhere:'', //类型:String 必有字段 备注:报名凭证1,2,3,4 1手机号2车牌号3姓名4单位
  167. payType:1, //类型:String 必有字段 备注:1在线支付2无需支付
  168. music:"", //类型:String 必有字段 备注:背景音乐
  169. clState:'', //类型:String 必有字段 备注:1未启用2启用
  170. img:'', //类型:String 必有字段 备注:从首页带进来的图片
  171. imgList:'',//类型:String 必有字段 备注:详情图片多个以逗号分割
  172. datetimerange: '',
  173. shopNames:'',
  174. shopList:'',
  175. clWhereList:[1,],
  176. clWhereString:'1',
  177. imgListArr:[],
  178. money:'',
  179. ckMusic:'',
  180. id:'',
  181. }
  182. },
  183. onLoad(opt) {
  184. this.img=opt.img;
  185. if(opt.id){
  186. this.id=opt.id;
  187. this.getDetails()
  188. }
  189. },
  190. onShow() {
  191. const shopckList = uni.getStorageSync("shopckList");
  192. this.ckMusic=uni.getStorageSync("ckmusic")
  193. if(this.ckMusic){
  194. this.music=this.ckMusic.id
  195. }
  196. var shopNames=[];
  197. var shopList=[];
  198. if(shopckList){
  199. shopckList.forEach(item=>{
  200. shopNames.push(item.shopName)
  201. shopList.push(item.id)
  202. })
  203. this.shopNames=shopNames.join(',')
  204. this.shopList=shopList.join(',')
  205. }
  206. },
  207. methods: {
  208. previewImage(img){
  209. var arr=[]
  210. arr.push(img)
  211. uni.previewImage({
  212. urls: arr,
  213. longPressActions: {
  214. itemList: ['发送给朋友', '保存图片',],
  215. success: function(data) {},
  216. fail: function(err) {}
  217. }
  218. });
  219. },
  220. getDetails(){
  221. uni.showLoading({
  222. title: '加载中'
  223. })
  224. this.$http('openH5SetTheGuest/getActivityDetails', {
  225. id:this.id
  226. },'GET').then(res => {
  227. uni.hideLoading();
  228. var jkdata=res.data.data
  229. this.activityName=jkdata.activityName;
  230. this.activityContent=jkdata.activityContent;
  231. this.money=jkdata.money;
  232. this.number=jkdata.number;
  233. this.clWhereString=jkdata.clWhere;
  234. this.clWhereList=this.clWhereString.split(',');
  235. this.startTime=jkdata.startTime.slice(0,10);
  236. this.endTime=jkdata.endTime.slice(0,10);
  237. this.payType=jkdata.payType;
  238. this.img=res.data.img.img;
  239. if(res.data.imgList){
  240. res.data.imgList.forEach(item=>{
  241. this.imgListArr.push(item.img)
  242. })
  243. }
  244. var shopNames=[];
  245. var shopList=[];
  246. if(res.data.shopList){
  247. res.data.shopList.forEach(item=>{
  248. item.id=item.shopId
  249. shopNames.push(item.shopName)
  250. shopList.push(item.shopId)
  251. })
  252. this.shopNames=shopNames.join(',')
  253. this.shopList=shopList.join(',')
  254. }
  255. var useshoplist=res.data.shopList
  256. this.ckMusic=res.data.selectedMusic;
  257. if(this.ckMusic){
  258. this.music=this.ckMusic.id;
  259. uni.setStorage({
  260. key: 'ckmusic',
  261. data: this.ckMusic,
  262. success: function () {
  263. }
  264. });
  265. }else{
  266. uni.removeStorageSync('ckmusic');
  267. }
  268. //console.log(this.imgListArr)
  269. uni.setStorage({
  270. key: 'shopckList',
  271. data: useshoplist,
  272. success: function () {
  273. }
  274. });
  275. //this.list=res.data
  276. })
  277. },
  278. delimgzt(){
  279. this.img=''
  280. },
  281. upimgzt(){
  282. var that = this;
  283. uni.chooseImage({
  284. sourceType: ['album','camera'],
  285. count:1,
  286. sizeType:['compressed'],
  287. success: (chooseImageRes) => {
  288. const tempFilePaths = chooseImageRes.tempFilePaths;
  289. that.file=tempFilePaths[0];
  290. that.$refs.wCompress.start(that.file, {
  291. pixels: 600000, // 最大分辨率,默认二百万
  292. quality: 0.9, // 压缩质量,默认0.8
  293. type: 'png', // 图片类型,默认jpg
  294. base64: true, // 是否返回base64,默认false,非H5有效
  295. }).then(resxx => {
  296. uni.uploadFile({
  297. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  298. filePath: resxx,
  299. name: 'file',
  300. formData: {
  301. 'user': 'test'
  302. },
  303. success: (uploadFileRes) => {
  304. that.img=JSON.parse(uploadFileRes.data).data[0]
  305. }
  306. });
  307. }).catch(e => {
  308. })
  309. // uni.uploadFile({
  310. // url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  311. // filePath: tempFilePaths[0],
  312. // name: 'file',
  313. // formData: {
  314. // 'user': 'test'
  315. // },
  316. // success: (uploadFileRes) => {
  317. // console.log(JSON.parse(uploadFileRes.data).data );
  318. // that.img=JSON.parse(uploadFileRes.data).data[0]
  319. // }
  320. // });
  321. }
  322. });
  323. },
  324. preview(){
  325. //console.log(this.clWhere)
  326. // if(this.money==0){
  327. // this.money=0
  328. // }
  329. if(this.money==null){
  330. this.money=''
  331. }
  332. if(this.payType==2){
  333. this.money=0;
  334. }
  335. console.log(this.money)
  336. if(this.activityName==''){
  337. uni.showToast({
  338. title: '请输入活动名称',
  339. icon:'none',
  340. duration: 2000
  341. });
  342. return false;
  343. }else if(!this.startTime||!this.endTime){
  344. uni.showToast({
  345. title: '请选择报名时间',
  346. icon:'none',
  347. duration: 2000
  348. });
  349. return false;
  350. }else if(this.shopList==''){
  351. uni.showToast({
  352. title: '请选择活动门店',
  353. icon:'none',
  354. duration: 2000
  355. });
  356. return false;
  357. }else if(this.clWhereString==''){
  358. uni.showToast({
  359. title: '请选择报名凭证',
  360. icon:'none',
  361. duration: 2000
  362. });
  363. return false;
  364. }else if(this.number==''){
  365. uni.showToast({
  366. title: '请输入最多报名人数',
  367. icon:'none',
  368. duration: 2000
  369. });
  370. return false;
  371. }else if(this.money!==0&&this.money==''&&this.payType==1){
  372. uni.showToast({
  373. title: '请输入支付金额',
  374. icon:'none',
  375. duration: 2000
  376. });
  377. return false;
  378. }
  379. //return false;
  380. var editdata={
  381. id:this.id,
  382. activityName:this.activityName,
  383. startTime:this.startTime+ ' 00:00:00',
  384. endTime:this.endTime+ ' 23:59:59',
  385. number:this.number,
  386. activityContent:this.activityContent,
  387. clWhere:this.clWhereString,
  388. payType:this.payType,
  389. music:this.music,
  390. money:this.money,
  391. shopList:this.shopList,
  392. img:this.img,
  393. imgList:this.imgListArr.join(','),
  394. clState:'',
  395. }
  396. console.log(editdata)
  397. uni.setStorage({
  398. key: 'editdata',
  399. data: editdata,
  400. success: function () {
  401. uni.navigateTo({
  402. url:'jkDetail?type=1'
  403. })
  404. }
  405. });
  406. },
  407. addShop(){
  408. uni.navigateTo({
  409. url:'ckshop'
  410. })
  411. },
  412. goMusic(){
  413. uni.navigateTo({
  414. url:'ckmusic'
  415. })
  416. },
  417. musicDel(){
  418. this.music='';
  419. this.ckMusic=''
  420. uni.removeStorageSync('ckmusic');
  421. },
  422. bindTimeChangeStart(e){
  423. console.log(e)
  424. this.startTime=e.detail.value;
  425. },
  426. bindTimeChangeendTime(e){
  427. this.endTime=e.detail.value;
  428. },
  429. clWhere(num){
  430. console.log(this.clWhereList)
  431. this.clWhereString=this.clWhereList.join(',');
  432. if(this.clWhereString.indexOf(num)!=-1){
  433. // this.clWhereList.remove(num)
  434. let index = this.clWhereList.indexOf(num);
  435. this.clWhereList.splice(index, 1)
  436. //this.remove(num)
  437. }else{
  438. this.clWhereList.push(num)
  439. }
  440. this.clWhereString=this.clWhereList.join(',');
  441. console.log(this.clWhereString)
  442. },
  443. delimg(index){
  444. this.imgListArr.splice(index, 1)
  445. },
  446. upimg(){
  447. var that = this;
  448. uni.chooseImage({
  449. sourceType: ['album','camera'],
  450. count:9,
  451. sizeType:['compressed'],
  452. success: (chooseImageRes) => {
  453. const tempFilePaths = chooseImageRes.tempFilePaths;
  454. that.file=tempFilePaths[0]
  455. that.$refs.wCompress.start(that.file, {
  456. pixels: 600000, // 最大分辨率,默认二百万
  457. quality: 0.9, // 压缩质量,默认0.8
  458. type: 'png', // 图片类型,默认jpg
  459. base64: true, // 是否返回base64,默认false,非H5有效
  460. }).then(resxx => {
  461. uni.uploadFile({
  462. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  463. filePath: resxx,
  464. name: 'file',
  465. formData: {
  466. 'user': 'test'
  467. },
  468. success: (uploadFileRes) => {
  469. that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  470. }
  471. });
  472. }).catch(e => {
  473. })
  474. // uni.uploadFile({
  475. // url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  476. // filePath: tempFilePaths[0],
  477. // name: 'file',
  478. // formData: {
  479. // 'user': 'test'
  480. // },
  481. // success: (uploadFileRes) => {
  482. // console.log(JSON.parse(uploadFileRes.data).data );
  483. // that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  484. // //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  485. // //that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  486. // //that.goAddzdy(that.imgurl)
  487. // }
  488. // });
  489. }
  490. });
  491. }
  492. }
  493. }
  494. </script>
  495. <style scoped>
  496. .content{
  497. min-height: 100vh;
  498. background:#F4F5F7;
  499. }
  500. .preview{
  501. width: 750rpx;
  502. height: 98rpx;
  503. background: #3F90F7;
  504. line-height: 98rpx;
  505. text-align: center;
  506. color: #ffffff;
  507. font-size: 30rpx;
  508. position: fixed;
  509. left: 0;
  510. bottom: 0;
  511. }
  512. .musicBox{
  513. padding: 0 24rpx;
  514. }
  515. .musicLine{
  516. display: flex;
  517. justify-content: space-between;
  518. margin-bottom:30rpx;
  519. padding:26rpx 24rpx;
  520. background: #F4F5F7;
  521. border-radius: 10rpx;
  522. }
  523. .musicName{
  524. color: #3C3C3C;font-size: 24rpx;
  525. padding-left: 10rpx;
  526. }
  527. .musicLineLeft{
  528. display: flex;
  529. }
  530. .musicDel{
  531. width: 30rpx;
  532. height: 30rpx;
  533. }
  534. .musicImg{
  535. width: 36rpx;
  536. height: 36rpx;
  537. }
  538. .line2{
  539. padding: 30rpx 24rpx;
  540. border-bottom: 1px solid #EEEEEE;
  541. }
  542. .musicJt{
  543. width: 28rpx;
  544. height: 28rpx;
  545. margin-top: 8rpx;
  546. }
  547. .musicRight{
  548. display: flex;
  549. justify-content: space-between;
  550. width: 500rpx;
  551. }
  552. .musicMS{
  553. color: #CCCCCC;
  554. }
  555. .lineimgdel{
  556. width: 37rpx;
  557. height: 37rpx;
  558. position: absolute;
  559. top: -18rpx;
  560. right: -18rpx;
  561. }
  562. .lineimghz{
  563. margin-right: 24rpx;
  564. position: relative;
  565. margin-top: 24rpx;
  566. }
  567. .lineimg{
  568. width: 150rpx;
  569. height: 150rpx;
  570. }
  571. .lineTitle{
  572. color: #666666;font-size: 28rpx;
  573. }
  574. .lineMS{
  575. color: #999999;font-size: 24rpx;padding-top: 10rpx;
  576. }
  577. .lineImgBOx{
  578. display: flex;
  579. flex-wrap: wrap;
  580. }
  581. .payBox{
  582. display: flex;
  583. }
  584. .payTypeImg{
  585. width: 36rpx;
  586. height: 36rpx;
  587. }
  588. .payType{
  589. display: flex;
  590. line-height: 36rpx;
  591. }
  592. .payTypeTxt{
  593. padding-left: 10rpx;
  594. color: #3C3C3C;
  595. }
  596. .line{
  597. display: flex;
  598. font-size: 28rpx;
  599. padding: 30rpx 24rpx;
  600. border-bottom: 1px solid #EEEEEE;
  601. }
  602. .linexx{
  603. color: #FF3B30;
  604. }
  605. .dateView{
  606. color:#3C3C3C ;
  607. }
  608. .lineLeft{
  609. width: 200rpx;
  610. color: #666666;
  611. }
  612. .clWhereBox{
  613. display: flex;
  614. }
  615. .clWhereLine{
  616. width: 100rpx;
  617. height: 52rpx;
  618. background: #F4F5F7;
  619. border-radius: 10rpx;
  620. text-align: center;
  621. color: #3C3C3C;
  622. line-height: 52rpx;
  623. font-size: 24rpx;
  624. margin-right: 24rpx;
  625. }
  626. .clWhereBox .clWhereActive{
  627. background: #EAF3FF;
  628. border: 2rpx solid #3F90F7;
  629. height: 48rpx;
  630. color: #3F90F7;
  631. height: 48rpx;
  632. line-height: 48rpx;
  633. width: 96rpx;
  634. }
  635. .timelineRight{
  636. display: flex;
  637. }
  638. .textsr{
  639. width: 500rpx;
  640. height: 180rpx;
  641. }
  642. .shopListNo{
  643. width: 400rpx;
  644. white-space:nowrap;
  645. overflow:hidden;
  646. text-overflow:ellipsis;
  647. color: #CCCCCC;
  648. }
  649. .shopListY{
  650. width: 400rpx;
  651. white-space:nowrap;
  652. overflow:hidden;
  653. text-overflow:ellipsis;
  654. color: #3C3C3C;
  655. }
  656. .addshop{
  657. color: #3F90F7;
  658. padding-left: 10rpx;
  659. }
  660. .shopckBox{
  661. display: flex;
  662. }
  663. .timeHx{
  664. color: #CCCCCC;
  665. padding: 0 30rpx;
  666. }
  667. .lineRightInput{
  668. font-size: 28rpx;
  669. color:#3C3C3C ;
  670. width: 500rpx;
  671. }
  672. .lineRight{
  673. color:#3C3C3C ;
  674. }
  675. .inputPlace{
  676. color: #CCCCCC;
  677. }
  678. .dateViewno{
  679. color: #CCCCCC;
  680. }
  681. .box{
  682. background: #ffffff;
  683. padding-bottom: 30rpx;
  684. }
  685. .kk{
  686. background:#F4F5F7;
  687. height: 20rpx;
  688. }
  689. .title{
  690. padding-left: 24rpx;
  691. padding-top: 30rpx;
  692. color: #333333;
  693. font-size: 32rpx;
  694. line-height: 45rpx;
  695. font-weight: 500;
  696. }
  697. .lineBorderNo{
  698. border-bottom: none !important;
  699. }
  700. </style>