ocean.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. <template>
  2. <view class="content">
  3. <view class="title">订单信息</view>
  4. <view class="box">
  5. <view class="box_item hflex acenter">
  6. <view class="left left_red">联系人</view>
  7. <u-input v-model="name" border="none" placeholder="请输入联系人姓名"></u-input>
  8. </view>
  9. <view class="box_item hflex acenter">
  10. <view class="left left_red">联系电话</view>
  11. <u-input v-model="phone" border="none" placeholder="请输入手机号"></u-input>
  12. </view>
  13. </view>
  14. <view class="hflex acenter jbetween" style="padding-right: 30rpx;">
  15. <view class="title">商品信息</view>
  16. <view class="hflex acenter " @click="addGood">
  17. <image src="/static/images/common/add_icon2.png" style="width: 36rpx;height: 36rpx;"></image>
  18. <view class="add_text">添加</view>
  19. </view>
  20. </view>
  21. <block v-for="(item,index) in items" :key="index">
  22. <view class="box">
  23. <view class="box_item hflex acenter">
  24. <view class="left left_red">商品{{index + 1}}</view>
  25. <u-input v-model="item.name" border="none" placeholder="请输入标题"></u-input>
  26. </view>
  27. <view class="box_item hflex acenter">
  28. <view class="left left_red">数量/吨位</view>
  29. <u-input v-model="item.weight" type="number" border="none" placeholder="请输入商品数量"></u-input>
  30. </view>
  31. <view class="hflex acenter jend">
  32. <view class="dte_btn hflex acenter jcenter" @click="delGood(index)">删除</view>
  33. </view>
  34. </view>
  35. </block>
  36. <view class="box">
  37. <view class="box_item hflex acenter" @click="showTime">
  38. <view class="left left_red">包装形式</view>
  39. <u-input v-model="form" border="none" disabled disabledColor="#fff" placeholder="去选择" suffixIcon="arrow-right"></u-input>
  40. </view>
  41. <view class="box_item hflex acenter">
  42. <view class="left left_red">到货码头</view>
  43. <u-input v-model="wharf_to" border="none" placeholder="请输入装货码头"></u-input>
  44. </view>
  45. <view class="box_item hflex acenter">
  46. <view class="left left_red">到港码头</view>
  47. <u-input v-model="wharf_for" border="none" placeholder="请输入到港码头"></u-input>
  48. </view>
  49. </view>
  50. <view class="box">
  51. <view class="box_title">图片/视频</view>
  52. <view class="hflex acenter fwrap" style="padding-bottom: 20rpx;">
  53. <block v-for="(item,index) in fileList1" :key="index">
  54. <view v-if="item.type == 'image'" style="position: relative;">
  55. <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  56. <image src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic2(index)"></image>
  57. </view>
  58. <view v-if="item.type == 'video'" style="position: relative;">
  59. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video>
  60. <image src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic2(index)"></image>
  61. </view>
  62. <!-- <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  63. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video> -->
  64. </block>
  65. <!-- <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="9" width="200rpx" height="200rpx"></u-upload> -->
  66. <image src="/static/images/common/upload_img.png" class="img" @click="choose"></image>
  67. </view>
  68. </view>
  69. <view class="btn hflex acenter jcenter" @click="release">立即发布</view>
  70. <u-popup :show="show_time" round="10" mode="bottom" @close="close" :safeAreaInsetBottom="false">
  71. <view class="popu">
  72. <image src="/static/images/common/popu_close.png" class="close" @click="close"></image>
  73. <view class="popu_title">选择包装形式(可多选)</view>
  74. <view class="hflex acenter fwrap">
  75. <block v-for="(item,index) in formList" :key="index">
  76. <view class="popu_item hflex acenter jcenter" :class="active.indexOf(index) !== -1?'active':''" @click="select(index)">{{item}}</view>
  77. </block>
  78. </view>
  79. <view class="btn hflex acenter jcenter" @click="sure">确定</view>
  80. </view>
  81. </u-popup>
  82. <u-popup :show="show_choose" @close="close">
  83. <view class="vflex acenter">
  84. <view class="hflex acenter jcenter choose" @click="choose_img">
  85. <view>图片</view>
  86. </view>
  87. <view class="hflex acenter jcenter choose" @click="choose_video">
  88. <view>视频</view>
  89. </view>
  90. <view class="hflex acenter jcenter choose" @click="close">
  91. <view>取消</view>
  92. </view>
  93. </view>
  94. </u-popup>
  95. </view>
  96. </template>
  97. <script>
  98. import $api from '@/static/js/api.js'
  99. var that = ''
  100. export default {
  101. data() {
  102. return {
  103. name: '',
  104. phone: '',
  105. items: [
  106. {
  107. name: '',
  108. weight: '',
  109. }
  110. ],
  111. good: {
  112. name: '',
  113. weight: '',
  114. },
  115. fileList1: [],
  116. form: '',
  117. formList: [],
  118. active: [],
  119. wharf_to: '',
  120. wharf_for: '',
  121. show_time: false,
  122. id: '',
  123. back: false,
  124. show_choose: false
  125. }
  126. },
  127. onLoad(options) {
  128. that = this
  129. if(options.id) {
  130. that.id = options.id
  131. that.getData()
  132. }
  133. if(options.back) {
  134. that.back = options.back
  135. }
  136. that.getformList()
  137. },
  138. methods: {
  139. getData() {
  140. $api.req({
  141. url: '/data/api.business.Purchase/show',
  142. data: {
  143. tab: 4,
  144. id: that.id
  145. }
  146. }, function(res) {
  147. if(res.code == 1) {
  148. that.name = res.data.real_name
  149. that.phone = res.data.mobile
  150. that.items = res.data.items
  151. that.fileList1 = res.data.file
  152. that.form = res.data.form
  153. that.wharf_to = res.data.wharf_to
  154. that.wharf_for = res.data.wharf_for
  155. }
  156. })
  157. },
  158. getformList() {
  159. $api.req({
  160. url: '/data/api.business.Purchase/config'
  161. }, function(res) {
  162. if(res.code == 1) {
  163. that.formList = res.data.packing
  164. }
  165. })
  166. },
  167. showTime() {
  168. that.show_time = true
  169. },
  170. close() {
  171. that.show_time = false
  172. that.show_choose = false
  173. },
  174. select(index) {
  175. for(var i=0;i<that.active.length;i++) {
  176. if(index == that.active[i]) {
  177. that.active.splice(i,1)
  178. return;
  179. }
  180. }
  181. that.active.push(index)
  182. },
  183. sure() {
  184. that.form = ''
  185. for(var i=0;i<that.active.length;i++) {
  186. that.form += that.formList[that.active[i]] + ','
  187. }
  188. that.form = that.form.substring(0,that.form.length - 1)
  189. that.close()
  190. },
  191. // 删除图片
  192. deletePic(event) {
  193. this[`fileList${event.name}`].splice(event.index, 1)
  194. },
  195. deletePic2(index) {
  196. that.fileList1.splice(index,1)
  197. },
  198. // 新增图片
  199. async afterRead(event) {
  200. uni.showLoading({
  201. title: '上传中',
  202. mask: true
  203. })
  204. let lists = [].concat(event.file)
  205. let fileListLen = this[`fileList${event.name}`].length
  206. lists.map((item) => {
  207. this[`fileList${event.name}`].push({
  208. ...item,
  209. // status: 'uploading',
  210. // message: '上传中'
  211. })
  212. })
  213. for (let i = 0; i < lists.length; i++) {
  214. const result = await this.uploadFilePromise(lists[i].url)
  215. let item = this[`fileList${event.name}`][fileListLen]
  216. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  217. // status: 'success',
  218. type: result.type,
  219. url: result.url
  220. }))
  221. fileListLen++
  222. if(lists.length - 1 == i) {
  223. uni.hideLoading()
  224. }
  225. }
  226. console.log(that.fileList1);
  227. },
  228. uploadFilePromise(url) {
  229. return new Promise((resolve, reject) => {
  230. let a = uni.uploadFile({
  231. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  232. filePath: url,
  233. name: 'file',
  234. header: {
  235. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  236. 'api-name': 'iosapp'
  237. },
  238. formData: {
  239. user: 'test'
  240. },
  241. success: (res) => {
  242. setTimeout(() => {
  243. var data = JSON.parse(res.data)
  244. console.log('data:',data);
  245. var type = data.data.key.split('.')
  246. if(type[1] == 'mp4') {
  247. that.$set(data.data,'type','video')
  248. } else {
  249. that.$set(data.data,'type','image')
  250. }
  251. resolve(data.data)
  252. }, 1000)
  253. }
  254. });
  255. })
  256. },
  257. addGood() {
  258. that.items.push(that.good)
  259. },
  260. delGood(index) {
  261. that.items.splice(index,1)
  262. },
  263. release() {
  264. var images = []
  265. var image = {}
  266. for(var i=0;i<that.fileList1.length;i++) {
  267. image = {
  268. type: that.fileList1[i].type,
  269. src: that.fileList1[i].url,
  270. url: that.fileList1[i].url
  271. }
  272. images.push(image)
  273. }
  274. for(var i=0;i<that.items.length;i++) {
  275. if(!that.items[i].name || !that.items[i].weight) {
  276. $api.info('商品不能为空')
  277. return
  278. }
  279. }
  280. /* if(images.length <=0) {
  281. $api.info('请选择图片')
  282. return
  283. } */
  284. $api.req({
  285. url: '/data/api.business.Purchase/ocean_order',
  286. method: 'POST',
  287. data: {
  288. id: that.id,
  289. real_name: that.name,
  290. mobile: that.phone,
  291. form: that.form,
  292. wharf_to: that.wharf_to,
  293. wharf_for: that.wharf_for,
  294. file: JSON.stringify(images),
  295. item: JSON.stringify(that.items)
  296. }
  297. }, function(res) {
  298. if(res.code == 1) {
  299. $api.info('发布成功')
  300. setTimeout(() => {
  301. if(that.back) {
  302. $api.jump(-1)
  303. } else {
  304. $api.jump('/pages/tabbar/index/index',2)
  305. }
  306. },2000)
  307. }
  308. })
  309. },
  310. choose() {
  311. that.show_choose = true
  312. },
  313. choose_img() {
  314. that.close()
  315. uni.chooseImage({
  316. count: 9, //默认9
  317. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  318. sourceType: ['album','camera'], //从相册选择
  319. success: function (res) {
  320. uni.showLoading({
  321. title: '上传中',
  322. mask: true
  323. })
  324. let fileListLen = that.fileList1.length
  325. let file = res.tempFiles[0].path
  326. console.log(file);
  327. uni.uploadFile({
  328. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  329. filePath: file,
  330. name: 'file',
  331. header: {
  332. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  333. 'api-name': 'iosapp'
  334. },
  335. formData: {
  336. user: 'test'
  337. },
  338. success: (res2) => {
  339. var data = JSON.parse(res2.data)
  340. console.log('data:',data);
  341. let item = {
  342. type: 'image',
  343. url: data.data.url
  344. }
  345. that.fileList1.push(item)
  346. uni.hideLoading()
  347. },
  348. fail(err) {
  349. console.log(err);
  350. }
  351. });
  352. }
  353. });
  354. },
  355. choose_video() {
  356. that.close()
  357. uni.chooseVideo({
  358. sourceType: ['camera', 'album'],
  359. success: function (res) {
  360. uni.showLoading({
  361. title: '上传中',
  362. mask: true
  363. })
  364. let fileListLen = that.fileList1.length
  365. let file = res.tempFilePath
  366. console.log(file);
  367. uni.uploadFile({
  368. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  369. filePath: file,
  370. name: 'file',
  371. header: {
  372. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  373. 'api-name': 'iosapp'
  374. },
  375. formData: {
  376. user: 'test'
  377. },
  378. success: (res2) => {
  379. var data = JSON.parse(res2.data)
  380. let item = {
  381. type: 'video',
  382. url: data.data.url
  383. }
  384. that.fileList1.push(item)
  385. uni.hideLoading()
  386. },
  387. fail(err) {
  388. console.log(err);
  389. }
  390. });
  391. }
  392. });
  393. }
  394. },
  395. }
  396. </script>
  397. <style lang="scss" scoped>
  398. .content::v-deep {
  399. background: #F5F5F5;
  400. .title {
  401. font-size: 30rpx;
  402. font-weight: 500;
  403. color: #222222;
  404. line-height: 42rpx;
  405. padding: 24rpx 0 14rpx 30rpx;
  406. }
  407. .add_text {
  408. font-size: 28rpx;
  409. font-weight: 500;
  410. color: #222222;
  411. line-height: 40rpx;
  412. padding-left: 2rpx;
  413. }
  414. .box {
  415. width: 100%;
  416. box-sizing: border-box;
  417. padding: 0 30rpx;
  418. background: #fff;
  419. margin-bottom: 20rpx;
  420. .box_title {
  421. font-size: 28rpx;
  422. font-weight: 500;
  423. color: #222222;
  424. line-height: 40rpx;
  425. padding: 24rpx 0 20rpx;
  426. }
  427. .img {
  428. width: 200rpx;
  429. height: 200rpx;
  430. margin: 0 20rpx 20rpx 0;
  431. border-radius: 16rpx;
  432. }
  433. video {
  434. width: 200rpx;
  435. height: 200rpx;
  436. margin: 0 20rpx 20rpx 0;
  437. }
  438. .close_icon {
  439. position: absolute;
  440. top: 0;
  441. right: 15rpx;
  442. width: 30rpx;
  443. height: 30rpx;
  444. }
  445. .box_item {
  446. padding: 28rpx 0;
  447. border-bottom: 1rpx solid #F5F5F5;
  448. .left {
  449. width: 156rpx;
  450. font-size: 30rpx;
  451. font-weight: 400;
  452. color: #222222;
  453. line-height: 42rpx;
  454. }
  455. .left_red {
  456. position: relative;
  457. }
  458. .left_red::after {
  459. position: absolute;
  460. content: "*";
  461. color: #ff0000;
  462. font-size: 30rpx;
  463. left: -15rpx;
  464. top: 0;
  465. }
  466. .center {
  467. width: calc(100% - 276rpx);
  468. }
  469. .right {
  470. font-size: 30rpx;
  471. font-weight: 400;
  472. color: #5471FF;
  473. line-height: 42rpx;
  474. }
  475. }
  476. .box_item1 {
  477. padding: 28rpx 0;
  478. .left {
  479. // width: 156rpx;
  480. font-size: 30rpx;
  481. font-weight: 400;
  482. color: #222222;
  483. line-height: 42rpx;
  484. }
  485. .u-textarea {
  486. margin: 28rpx 0 0;
  487. border: none;
  488. background: #F5F5F5;
  489. border-radius: 16rpx;
  490. }
  491. }
  492. .dte_btn {
  493. width: 132rpx;
  494. height: 52rpx;
  495. margin: 30rpx 0;
  496. border-radius: 26rpx;
  497. border: 1rpx solid #D3D3D3;
  498. font-size: 26rpx;
  499. font-weight: 400;
  500. color: #222222;
  501. line-height: 36rpx;
  502. }
  503. }
  504. .btn {
  505. margin: 28rpx auto;
  506. width: 690rpx;
  507. height: 84rpx;
  508. background: #5471FF;
  509. border-radius: 46rpx;
  510. font-size: 36rpx;
  511. font-weight: 500;
  512. color: #FFFFFF;
  513. }
  514. .popu {
  515. box-sizing: border-box;
  516. padding: 36rpx 30rpx;
  517. position: relative;
  518. width: 100%;
  519. // height: 520rpx;
  520. background: #FFFFFF;
  521. border-radius: 40rpx 40rpx 0px 0px;
  522. .close {
  523. position: absolute;
  524. width: 48rpx;
  525. height: 48rpx;
  526. right: 30rpx;
  527. top: -60rpx;
  528. }
  529. .popu_title {
  530. width: 100%;
  531. text-align: center;
  532. padding: 0 0 36rpx 0;
  533. font-size: 36rpx;
  534. font-weight: 500;
  535. color: #222222;
  536. line-height: 50rpx;
  537. }
  538. .popu_item {
  539. height: 60rpx;
  540. background: #F3F3F7;
  541. border-radius: 34rpx;
  542. padding: 0 66rpx;
  543. font-size: 30rpx;
  544. font-weight: 400;
  545. color: #222222;
  546. margin: 28rpx 28rpx 0 0;
  547. }
  548. .active {
  549. background: #E7EBFF;
  550. border: 1px solid #5471FF;
  551. color: #5471FF;
  552. }
  553. }
  554. .choose {
  555. padding: 20rpx 0;
  556. }
  557. }
  558. </style>