eadit.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  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="nopayCl" 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 v-if="payType==1">
  89. <view class="line line3">
  90. <view class="lineLeft">
  91. <span>拼团设置</span>
  92. </view>
  93. <view class="lineRight"><switch :checked='groupType' @change="switchgroupType" style="transform:scale(0.8)"/></view>
  94. </view>
  95. <view v-if="groupType">
  96. <view class="line" >
  97. <view class="lineLeft">
  98. <span class="linexx">*</span> <span>拼团人数</span>
  99. </view>
  100. <view class="lineRight">
  101. <input type="number" @blur="blurgroupNumber" v-model="groupNumber" placeholder="可输入大于1的整数" class="lineRightInput" placeholder-class="inputPlace">
  102. </view>
  103. </view>
  104. <view class="line" >
  105. <view class="lineLeft">
  106. <span class="linexx">*</span> <span>拼团有效期</span>
  107. </view>
  108. <view class="lineRight">
  109. <input type="digit" @blur="blurgroupTime" v-model="groupTime" placeholder="可输入0.5至72小时" class="linecInput" placeholder-class="inputPlace">
  110. </view>
  111. <viwe class="lineRight">小时</viwe>
  112. </view>
  113. <view class="line" >
  114. <view class="lineLeft">
  115. <span class="linexx">*</span> <span>拼团价</span>
  116. </view>
  117. <view class="lineRight">
  118. <input type="digit" @blur="blurgroupMoney" v-model="groupMoney" placeholder="需小于支付金额" class="linecInput" placeholder-class="inputPlace">
  119. </view>
  120. <viwe class="lineRight">元</viwe>
  121. </view>
  122. <view class="line line3">
  123. <view class="lineLeft2">
  124. <span class="linexx">*</span><span>拼团超时自动成团</span>
  125. <image @click="zyct" src="../../static/img/icon_help.png" mode="" class="helpIcon"></image>
  126. </view>
  127. <view class="lineRight"><switch :checked='groupOutState' @change="switchgroupOutState" style="transform:scale(0.8)"/></view>
  128. </view>
  129. <view class="line line3">
  130. <view class="lineLeft2">
  131. <span class="linexx">*</span><span>自由参团</span>
  132. <image @click="zdct" src="../../static/img/icon_help.png" mode="" class="helpIcon"></image>
  133. </view>
  134. <view class="lineRight"><switch :checked='groupRestrictions' @change="switchgroupRestrictions" style="transform:scale(0.8)"/></view>
  135. </view>
  136. </view>
  137. </view>
  138. </view>
  139. <view class="kk"></view>
  140. <view class="box">
  141. <view class="title">活动详情</view>
  142. <view class="line">
  143. <view class="lineLeft">
  144. <span>活动说明</span>
  145. </view>
  146. <view class="lineRight">
  147. <textarea placeholder-class="inputPlace" v-model="activityContent" placeholder="请输入" class="textsr"/>
  148. </view>
  149. </view>
  150. <view class="line2">
  151. <view class="lineTitle">主图</view>
  152. <view class="lineMS">此图在活动顶部显示,建议宽度750px</view>
  153. <view class="lineImgBOx">
  154. <view class="lineimghz" v-if="img" >
  155. <img src="../../static/img/del.png" alt="" class="lineimgdel" @click="delimgzt" >
  156. <img :src="img" alt="" class="lineimg" @click="previewImage(img)">
  157. </view>
  158. <view class="lineimghz" @click="upimgzt" v-if="!img">
  159. <img src="../../static/img/scimg.png" alt="" class="lineimg">
  160. </view>
  161. </view>
  162. </view>
  163. <view class="line2">
  164. <view class="lineTitle">详情图片</view>
  165. <view class="lineMS">此图在活动底部显示,可用于显示门店照片等,建议宽度750px</view>
  166. <view class="lineImgBOx">
  167. <view class="lineimghz" v-for="(item,index) in imgListArr">
  168. <img src="../../static/img/del.png" alt="" class="lineimgdel" @click="delimg(index)" >
  169. <img :src="item" alt="" class="lineimg" @click="previewImage(item)">
  170. </view>
  171. <view class="lineimghz" @click="upimg">
  172. <img src="../../static/img/scimg.png" alt="" class="lineimg">
  173. </view>
  174. </view>
  175. </view>
  176. <view class="line lineBorderNo">
  177. <view class="lineLeft">
  178. <span>音乐</span>
  179. </view>
  180. <view class="lineRight musicRight" @click="goMusic">
  181. <view class="musicMS">选择/更换音乐</view>
  182. <img src="../../static/img/jt.png" alt="" class="musicJt">
  183. </view>
  184. </view>
  185. <view class="musicBox" v-if="ckMusic">
  186. <view class="musicLine">
  187. <view class="musicLineLeft">
  188. <img src="../../static/img/music.png" alt="" class="musicImg">
  189. <view class="musicName">{{ckMusic.name}}</view>
  190. </view>
  191. <view>
  192. <img src="../../static/img/sanchu.png" alt="" class="musicDel" @click="musicDel">
  193. </view>
  194. </view>
  195. </view>
  196. </view>
  197. <view style="height: 120rpx;"></view>
  198. <view class="preview" @click="preview">预览</view>
  199. <w-compress ref='wCompress' />
  200. </view>
  201. </template>
  202. <script>
  203. import WCompress from '@/components/w-compress/w-compress.vue'
  204. export default {
  205. components: {
  206. WCompress
  207. },
  208. data() {
  209. return {
  210. id:'', //类型:String 可有字段 备注:新增无编辑有
  211. activityName:'', //类型:String 必有字段 备注:活动名称
  212. startTime:"", //类型:String 必有字段 备注:营业开始时间
  213. endTime:"", //类型:String 必有字段 备注:营业结束时间
  214. number:"", //类型:String 必有字段 备注:报名人数
  215. activityContent:"", //类型:String 必有字段 备注:活动说明
  216. //clWhere:'', //类型:String 必有字段 备注:报名凭证1,2,3,4 1手机号2车牌号3姓名4单位
  217. payType:1, //类型:String 必有字段 备注:1在线支付2无需支付
  218. music:"", //类型:String 必有字段 备注:背景音乐
  219. clState:'', //类型:String 必有字段 备注:1未启用2启用
  220. img:'', //类型:String 必有字段 备注:从首页带进来的图片
  221. imgList:'',//类型:String 必有字段 备注:详情图片多个以逗号分割
  222. datetimerange: '',
  223. shopNames:'',
  224. shopList:'',
  225. clWhereList:[1,],
  226. clWhereString:'1',
  227. imgListArr:[],
  228. money:'',
  229. ckMusic:'',
  230. id:'',
  231. groupNumber:'',
  232. groupType:false,
  233. groupTime:'',
  234. groupMoney:'',
  235. groupOutState:false,
  236. groupRestrictions:false,
  237. isExistGroup:'',
  238. }
  239. },
  240. onLoad(opt) {
  241. this.img=opt.img;
  242. if(opt.id){
  243. this.id=opt.id;
  244. this.getDetails()
  245. }
  246. },
  247. onShow() {
  248. const shopckList = uni.getStorageSync("shopckList");
  249. this.ckMusic=uni.getStorageSync("ckmusic")
  250. if(this.ckMusic){
  251. this.music=this.ckMusic.id
  252. }
  253. var shopNames=[];
  254. var shopList=[];
  255. if(shopckList){
  256. shopckList.forEach(item=>{
  257. shopNames.push(item.shopName)
  258. shopList.push(item.id)
  259. })
  260. this.shopNames=shopNames.join(',')
  261. this.shopList=shopList.join(',')
  262. }
  263. },
  264. methods: {
  265. nopayCl(){
  266. this.payType=2;
  267. this.groupType=false
  268. },
  269. zdct(){
  270. uni.showModal({
  271. title: '自由参团',
  272. content: '如果开启自由参团,则用户可以在详情页直接参团;如果关闭,则用户只能通过好友分享的链接参与拼团',
  273. showCancel:false,
  274. confirmText:'我知道了',
  275. success: function (res) {
  276. }
  277. });
  278. },
  279. zyct(){
  280. uni.showModal({
  281. title: '拼团超时自动成团',
  282. content: '如果开启:过了拼团有效期或拼团活动结束后未能成团,则自动成团;如果关闭:过了拼团有效期或拼团活动结束后未能成团,则拼团失败,团内用户的支付金额将原路退回。',
  283. showCancel:false,
  284. confirmText:'我知道了',
  285. success: function (res) {
  286. }
  287. });
  288. },
  289. switchgroupType(e){
  290. console.log(e)
  291. this.groupType=e.detail.value
  292. },
  293. switchgroupOutState(e){
  294. this.groupOutState=e.detail.value
  295. },
  296. switchgroupRestrictions(e){
  297. this.groupRestrictions=e.detail.value
  298. },
  299. previewImage(img){
  300. var arr=[]
  301. arr.push(img)
  302. uni.previewImage({
  303. urls: arr,
  304. longPressActions: {
  305. itemList: ['发送给朋友', '保存图片',],
  306. success: function(data) {},
  307. fail: function(err) {}
  308. }
  309. });
  310. },
  311. getDetails(){
  312. uni.showLoading({
  313. title: '加载中'
  314. })
  315. this.$http('openH5SetTheGuest/getActivityDetails', {
  316. id:this.id
  317. },'GET').then(res => {
  318. uni.hideLoading();
  319. var jkdata=res.data.data
  320. this.activityName=jkdata.activityName;
  321. this.activityContent=jkdata.activityContent;
  322. this.money=jkdata.money;
  323. this.number=jkdata.number;
  324. this.clWhereString=jkdata.clWhere;
  325. this.clWhereList=this.clWhereString.split(',');
  326. this.startTime=jkdata.startTime.slice(0,10);
  327. this.endTime=jkdata.endTime.slice(0,10);
  328. this.payType=jkdata.payType;
  329. this.img=res.data.img.img;
  330. this.isExistGroup=res.data.isExistGroup
  331. if(res.data.imgList){
  332. res.data.imgList.forEach(item=>{
  333. this.imgListArr.push(item.img)
  334. })
  335. }
  336. var shopNames=[];
  337. var shopList=[];
  338. if(res.data.shopList){
  339. res.data.shopList.forEach(item=>{
  340. item.id=item.shopId
  341. shopNames.push(item.shopName)
  342. shopList.push(item.shopId)
  343. })
  344. this.shopNames=shopNames.join(',')
  345. this.shopList=shopList.join(',')
  346. }
  347. var useshoplist=res.data.shopList
  348. this.ckMusic=res.data.selectedMusic;
  349. if(this.ckMusic){
  350. this.music=this.ckMusic.id;
  351. uni.setStorage({
  352. key: 'ckmusic',
  353. data: this.ckMusic,
  354. success: function () {
  355. }
  356. });
  357. }else{
  358. uni.removeStorageSync('ckmusic');
  359. }
  360. this.groupType=jkdata.groupType==1?true:false;
  361. this.groupNumber=jkdata.groupNumber;
  362. this.groupTime=jkdata.groupTime;
  363. this.groupMoney=jkdata.groupMoney;
  364. this.groupOutState=jkdata.groupOutState;
  365. this.groupRestrictions=jkdata.groupRestrictions;
  366. //console.log(this.imgListArr)
  367. uni.setStorage({
  368. key: 'shopckList',
  369. data: useshoplist,
  370. success: function () {
  371. }
  372. });
  373. //this.list=res.data
  374. })
  375. },
  376. delimgzt(){
  377. this.img=''
  378. },
  379. upimgzt(){
  380. var that = this;
  381. uni.chooseImage({
  382. sourceType: ['album','camera'],
  383. count:1,
  384. sizeType:['compressed'],
  385. success: (chooseImageRes) => {
  386. const tempFilePaths = chooseImageRes.tempFilePaths;
  387. that.file=tempFilePaths[0];
  388. that.$refs.wCompress.start(that.file, {
  389. pixels: 600000, // 最大分辨率,默认二百万
  390. quality: 0.9, // 压缩质量,默认0.8
  391. type: 'png', // 图片类型,默认jpg
  392. base64: true, // 是否返回base64,默认false,非H5有效
  393. }).then(resxx => {
  394. uni.uploadFile({
  395. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  396. filePath: resxx,
  397. name: 'file',
  398. formData: {
  399. 'user': 'test'
  400. },
  401. success: (uploadFileRes) => {
  402. that.img=JSON.parse(uploadFileRes.data).data[0]
  403. }
  404. });
  405. }).catch(e => {
  406. })
  407. // uni.uploadFile({
  408. // url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  409. // filePath: tempFilePaths[0],
  410. // name: 'file',
  411. // formData: {
  412. // 'user': 'test'
  413. // },
  414. // success: (uploadFileRes) => {
  415. // console.log(JSON.parse(uploadFileRes.data).data );
  416. // that.img=JSON.parse(uploadFileRes.data).data[0]
  417. // }
  418. // });
  419. }
  420. });
  421. },
  422. blurgroupNumber(){
  423. if(this.groupNumber%1 != 0||this.groupNumber<2){
  424. uni.showToast({
  425. title: '请输入大于1整数',
  426. icon:'none',
  427. duration: 2000
  428. });
  429. }
  430. },
  431. blurgroupTime(){
  432. if(!this.groupTime){
  433. uni.showToast({
  434. title: '请输入拼团有效期',
  435. icon:'none',
  436. duration: 2000
  437. });
  438. }else if(this.groupTime<0.5||this.groupTime>72){
  439. uni.showToast({
  440. title: '有效期为0.5小时至72小时',
  441. icon:'none',
  442. duration: 2000
  443. });
  444. }
  445. },
  446. blurgroupMoney(){
  447. if(this.groupMoney>this.money){
  448. uni.showToast({
  449. title: '拼团价格需小于支付金额',
  450. icon:'none',
  451. duration: 2000
  452. });
  453. }
  454. },
  455. preview(){
  456. if(this.isExistGroup){
  457. uni.showToast({
  458. title: '已有用户参与该拼团活动,无法修改活动内容',
  459. icon:'none',
  460. duration: 3000
  461. });
  462. return false
  463. }
  464. //console.log(this.clWhere)
  465. // if(this.money==0){
  466. // this.money=0
  467. // }
  468. if(this.money==null){
  469. this.money=''
  470. }
  471. if(this.payType==2){
  472. this.money=0;
  473. }
  474. console.log(this.money)
  475. if(this.activityName==''){
  476. uni.showToast({
  477. title: '请输入活动名称',
  478. icon:'none',
  479. duration: 2000
  480. });
  481. return false;
  482. }else if(!this.startTime||!this.endTime){
  483. uni.showToast({
  484. title: '请选择报名时间',
  485. icon:'none',
  486. duration: 2000
  487. });
  488. return false;
  489. }else if(this.shopList==''){
  490. uni.showToast({
  491. title: '请选择活动门店',
  492. icon:'none',
  493. duration: 2000
  494. });
  495. return false;
  496. }else if(this.clWhereString==''){
  497. uni.showToast({
  498. title: '请选择报名凭证',
  499. icon:'none',
  500. duration: 2000
  501. });
  502. return false;
  503. }else if(this.number==''){
  504. uni.showToast({
  505. title: '请输入最多报名人数',
  506. icon:'none',
  507. duration: 2000
  508. });
  509. return false;
  510. }else if(this.money!==0&&this.money==''&&this.payType==1){
  511. uni.showToast({
  512. title: '请输入支付金额',
  513. icon:'none',
  514. duration: 2000
  515. });
  516. return false;
  517. }else if(this.groupType){
  518. if(!this.groupNumber){
  519. uni.showToast({
  520. title: '请输入拼团人数',
  521. icon:'none',
  522. duration: 2000
  523. });
  524. return false;
  525. }else if(this.groupNumber%1 != 0||this.groupNumber<2){
  526. uni.showToast({
  527. title: '请输入大于1整数',
  528. icon:'none',
  529. duration: 2000
  530. });
  531. return false;
  532. }
  533. if(!this.groupTime){
  534. uni.showToast({
  535. title: '请输入拼团有效期',
  536. icon:'none',
  537. duration: 2000
  538. });
  539. return false;
  540. }else if(this.groupTime<0.5||this.groupTime>72){
  541. uni.showToast({
  542. title: '有效期为0.5小时至72小时',
  543. icon:'none',
  544. duration: 2000
  545. });
  546. return false;
  547. }
  548. if(!this.groupMoney){
  549. uni.showToast({
  550. title: '请输入价格',
  551. icon:'none',
  552. duration: 2000
  553. });
  554. return false;
  555. }else if(this.groupMoney>this.money){
  556. uni.showToast({
  557. title: '拼团价格需小于支付金额',
  558. icon:'none',
  559. duration: 2000
  560. });
  561. return false;
  562. }
  563. }
  564. //return false;
  565. var editdata={
  566. id:this.id,
  567. activityName:this.activityName,
  568. startTime:this.startTime+ ' 00:00:00',
  569. endTime:this.endTime+ ' 23:59:59',
  570. number:this.number,
  571. activityContent:this.activityContent,
  572. clWhere:this.clWhereString,
  573. payType:this.payType,
  574. music:this.music,
  575. money:this.money,
  576. shopList:this.shopList,
  577. img:this.img,
  578. imgList:this.imgListArr.join(','),
  579. clState:'',
  580. groupType:this.groupType?1:0,
  581. groupNumber:this.groupNumber,
  582. groupTime:this.groupTime,
  583. groupMoney:this.groupMoney,
  584. groupOutState:this.groupOutState?1:0,
  585. groupRestrictions:this.groupRestrictions?1:0
  586. }
  587. console.log(editdata)
  588. //return false;
  589. uni.setStorage({
  590. key: 'editdata',
  591. data: editdata,
  592. success: function () {
  593. uni.navigateTo({
  594. url:'jkDetail?type=1'
  595. })
  596. }
  597. });
  598. },
  599. addShop(){
  600. uni.navigateTo({
  601. url:'ckshop'
  602. })
  603. },
  604. goMusic(){
  605. uni.navigateTo({
  606. url:'ckmusic'
  607. })
  608. },
  609. musicDel(){
  610. this.music='';
  611. this.ckMusic=''
  612. uni.removeStorageSync('ckmusic');
  613. },
  614. bindTimeChangeStart(e){
  615. console.log(e)
  616. this.startTime=e.detail.value;
  617. },
  618. bindTimeChangeendTime(e){
  619. this.endTime=e.detail.value;
  620. },
  621. clWhere(num){
  622. console.log(this.clWhereList)
  623. this.clWhereString=this.clWhereList.join(',');
  624. if(this.clWhereString.indexOf(num)!=-1){
  625. // this.clWhereList.remove(num)
  626. let index = this.clWhereList.indexOf(num);
  627. this.clWhereList.splice(index, 1)
  628. //this.remove(num)
  629. }else{
  630. this.clWhereList.push(num)
  631. }
  632. this.clWhereString=this.clWhereList.join(',');
  633. console.log(this.clWhereString)
  634. },
  635. delimg(index){
  636. this.imgListArr.splice(index, 1)
  637. },
  638. upimg(){
  639. var that = this;
  640. uni.chooseImage({
  641. sourceType: ['album','camera'],
  642. count:9,
  643. sizeType:['compressed'],
  644. success: (chooseImageRes) => {
  645. const tempFilePaths = chooseImageRes.tempFilePaths;
  646. that.file=tempFilePaths[0]
  647. that.$refs.wCompress.start(that.file, {
  648. pixels: 600000, // 最大分辨率,默认二百万
  649. quality: 0.9, // 压缩质量,默认0.8
  650. type: 'png', // 图片类型,默认jpg
  651. base64: true, // 是否返回base64,默认false,非H5有效
  652. }).then(resxx => {
  653. uni.uploadFile({
  654. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  655. filePath: resxx,
  656. name: 'file',
  657. formData: {
  658. 'user': 'test'
  659. },
  660. success: (uploadFileRes) => {
  661. that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  662. }
  663. });
  664. }).catch(e => {
  665. })
  666. // uni.uploadFile({
  667. // url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  668. // filePath: tempFilePaths[0],
  669. // name: 'file',
  670. // formData: {
  671. // 'user': 'test'
  672. // },
  673. // success: (uploadFileRes) => {
  674. // console.log(JSON.parse(uploadFileRes.data).data );
  675. // that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  676. // //that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  677. // //that.imgurl=JSON.parse(uploadFileRes.data).data[0];
  678. // //that.goAddzdy(that.imgurl)
  679. // }
  680. // });
  681. }
  682. });
  683. }
  684. }
  685. }
  686. </script>
  687. <style scoped>
  688. .content{
  689. min-height: 100vh;
  690. background:#F4F5F7;
  691. }
  692. .lineLeft2{
  693. width: 300rpx;color: #666666;display: flex;align-items: center;
  694. }
  695. .helpIcon{
  696. width: 26rpx;height: 26rpx;padding-left: 10rpx;padding-top: 4rpx;
  697. }
  698. .preview{
  699. width: 750rpx;
  700. height: 98rpx;
  701. background: #3F90F7;
  702. line-height: 98rpx;
  703. text-align: center;
  704. color: #ffffff;
  705. font-size: 30rpx;
  706. position: fixed;
  707. left: 0;
  708. bottom: 0;
  709. }
  710. .musicBox{
  711. padding: 0 24rpx;
  712. }
  713. .musicLine{
  714. display: flex;
  715. justify-content: space-between;
  716. margin-bottom:30rpx;
  717. padding:26rpx 24rpx;
  718. background: #F4F5F7;
  719. border-radius: 10rpx;
  720. }
  721. .musicName{
  722. color: #3C3C3C;font-size: 24rpx;
  723. padding-left: 10rpx;
  724. }
  725. .musicLineLeft{
  726. display: flex;
  727. }
  728. .musicDel{
  729. width: 30rpx;
  730. height: 30rpx;
  731. }
  732. .musicImg{
  733. width: 36rpx;
  734. height: 36rpx;
  735. }
  736. .line2{
  737. padding: 30rpx 24rpx;
  738. border-bottom: 1px solid #EEEEEE;
  739. }
  740. .musicJt{
  741. width: 28rpx;
  742. height: 28rpx;
  743. margin-top: 8rpx;
  744. }
  745. .musicRight{
  746. display: flex;
  747. justify-content: space-between;
  748. width: 500rpx;
  749. }
  750. .musicMS{
  751. color: #CCCCCC;
  752. }
  753. .lineimgdel{
  754. width: 37rpx;
  755. height: 37rpx;
  756. position: absolute;
  757. top: -18rpx;
  758. right: -18rpx;
  759. }
  760. .lineimghz{
  761. margin-right: 24rpx;
  762. position: relative;
  763. margin-top: 24rpx;
  764. }
  765. .lineimg{
  766. width: 150rpx;
  767. height: 150rpx;
  768. }
  769. .lineTitle{
  770. color: #666666;font-size: 28rpx;
  771. }
  772. .lineMS{
  773. color: #999999;font-size: 24rpx;padding-top: 10rpx;
  774. }
  775. .lineImgBOx{
  776. display: flex;
  777. flex-wrap: wrap;
  778. }
  779. .payBox{
  780. display: flex;
  781. }
  782. .payTypeImg{
  783. width: 36rpx;
  784. height: 36rpx;
  785. }
  786. .payType{
  787. display: flex;
  788. line-height: 36rpx;
  789. }
  790. .payTypeTxt{
  791. padding-left: 10rpx;
  792. color: #3C3C3C;
  793. }
  794. .line{
  795. display: flex;
  796. font-size: 28rpx;
  797. padding: 30rpx 24rpx;
  798. border-bottom: 1px solid #EEEEEE;
  799. }
  800. .linexx{
  801. color: #FF3B30;
  802. }
  803. .dateView{
  804. color:#3C3C3C ;
  805. }
  806. .lineLeft{
  807. width: 200rpx;
  808. color: #666666;
  809. }
  810. .clWhereBox{
  811. display: flex;
  812. }
  813. .clWhereLine{
  814. width: 100rpx;
  815. height: 52rpx;
  816. background: #F4F5F7;
  817. border-radius: 10rpx;
  818. text-align: center;
  819. color: #3C3C3C;
  820. line-height: 52rpx;
  821. font-size: 24rpx;
  822. margin-right: 24rpx;
  823. }
  824. .clWhereBox .clWhereActive{
  825. background: #EAF3FF;
  826. border: 2rpx solid #3F90F7;
  827. height: 48rpx;
  828. color: #3F90F7;
  829. height: 48rpx;
  830. line-height: 48rpx;
  831. width: 96rpx;
  832. }
  833. .timelineRight{
  834. display: flex;
  835. }
  836. .textsr{
  837. width: 500rpx;
  838. height: 180rpx;
  839. }
  840. .shopListNo{
  841. width: 400rpx;
  842. white-space:nowrap;
  843. overflow:hidden;
  844. text-overflow:ellipsis;
  845. color: #CCCCCC;
  846. }
  847. .shopListY{
  848. width: 400rpx;
  849. white-space:nowrap;
  850. overflow:hidden;
  851. text-overflow:ellipsis;
  852. color: #3C3C3C;
  853. }
  854. .addshop{
  855. color: #3F90F7;
  856. padding-left: 10rpx;
  857. }
  858. .shopckBox{
  859. display: flex;
  860. }
  861. .timeHx{
  862. color: #CCCCCC;
  863. padding: 0 30rpx;
  864. }
  865. .lineRightInput{
  866. font-size: 28rpx;
  867. color:#3C3C3C ;
  868. width: 500rpx;
  869. }
  870. .linecInput{
  871. font-size: 28rpx;
  872. color:#3C3C3C ;
  873. width: 400rpx;
  874. }
  875. .lineRight{
  876. color:#3C3C3C ;
  877. }
  878. .inputPlace{
  879. color: #CCCCCC;
  880. }
  881. .dateViewno{
  882. color: #CCCCCC;
  883. }
  884. .box{
  885. background: #ffffff;
  886. padding-bottom: 30rpx;
  887. }
  888. .kk{
  889. background:#F4F5F7;
  890. height: 20rpx;
  891. }
  892. .title{
  893. padding-left: 24rpx;
  894. padding-top: 30rpx;
  895. color: #333333;
  896. font-size: 32rpx;
  897. line-height: 45rpx;
  898. font-weight: 500;
  899. }
  900. .lineBorderNo{
  901. border-bottom: none !important;
  902. }
  903. .line3{
  904. display: flex;justify-content: space-between;
  905. padding: 16rpx 24rpx;
  906. }
  907. .line3 .lineLeft{
  908. display: flex;align-items: center;
  909. }
  910. </style>