purchase.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  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.spec" border="none" placeholder="如颜色/尺寸等"></u-input>
  30. </view>
  31. <view class="box_item hflex acenter">
  32. <view class="left left_red">数量</view>
  33. <u-input v-model="item.number" type="number" border="none" placeholder="请输入数量"></u-input>
  34. </view>
  35. <view class="box_item1">
  36. <view class="left">质量标准</view>
  37. <u-textarea v-model="item.standard" confirmType="done" placeholder="请填写质量标准要求"></u-textarea>
  38. </view>
  39. <view class="box_item hflex acenter">
  40. <view class="left">原采购价</view>
  41. <u-input v-model="item.price" border="none" placeholder="请输入原采购价格"></u-input>
  42. </view>
  43. <view class="hflex acenter jend">
  44. <view class="dte_btn hflex acenter jcenter" @click="delGood(index)">删除</view>
  45. </view>
  46. </view>
  47. </block>
  48. <view class="box">
  49. <view class="box_title">图片/视频</view>
  50. <view class="hflex acenter fwrap" style="padding-bottom: 20rpx;">
  51. <block v-for="(item,index) in fileList1" :key="index">
  52. <view v-if="item.type == 'image'" style="position: relative;">
  53. <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  54. <image src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic2(index)"></image>
  55. </view>
  56. <view v-if="item.type == 'video'" style="position: relative;">
  57. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video>
  58. <image src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic2(index)"></image>
  59. </view>
  60. <!-- <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  61. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video> -->
  62. </block>
  63. <!-- <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="9" width="200rpx" height="200rpx"></u-upload> -->
  64. <image src="/static/images/common/upload_img.png" class="img" @click="choose"></image>
  65. </view>
  66. </view>
  67. <view class="box">
  68. <view class="box_item hflex acenter">
  69. <view class="left left_red">交货地址</view>
  70. <u-input v-model="post_address" border="none" placeholder="请填写交货地址"></u-input>
  71. </view>
  72. <view class="box_item hflex acenter" @click="showTime">
  73. <view class="left left_red">交货时间</view>
  74. <u-input v-model="post_time" border="none" disabled disabledColor="#fff" placeholder="请选择交货时间" suffixIcon="arrow-right"></u-input>
  75. </view>
  76. <u-datetime-picker :show="show_time" :minDate="Number(new Date())" mode="date" @cancel="close" @confirm="selectTime"></u-datetime-picker>
  77. </view>
  78. <view class="btn hflex acenter jcenter" @click="release">立即发布</view>
  79. <u-popup :show="show_choose" @close="close">
  80. <view class="vflex acenter">
  81. <view class="hflex acenter jcenter choose" @click="choose_img">
  82. <view>图片</view>
  83. </view>
  84. <view class="hflex acenter jcenter choose" @click="choose_video">
  85. <view>视频</view>
  86. </view>
  87. <view class="hflex acenter jcenter choose" @click="close">
  88. <view>取消</view>
  89. </view>
  90. </view>
  91. </u-popup>
  92. </view>
  93. </template>
  94. <script>
  95. import $api from '@/static/js/api.js'
  96. var that = ''
  97. export default {
  98. data() {
  99. return {
  100. name: '',
  101. phone: '',
  102. items: [
  103. {
  104. name: '',
  105. spec: '',
  106. number: '',
  107. standard: '',
  108. price: ''
  109. }
  110. ],
  111. good: {
  112. name: '',
  113. spec: '',
  114. number: '',
  115. standard: '',
  116. price: ''
  117. },
  118. show: false,
  119. fileList1: [],
  120. post_address: '',
  121. post_time: '',
  122. show_time: false,
  123. id: '',
  124. back: false,
  125. show_choose: false
  126. }
  127. },
  128. onLoad(options) {
  129. that = this
  130. if(options.id) {
  131. that.id = options.id
  132. that.getData()
  133. }
  134. if(options.back) {
  135. that.back = options.back
  136. }
  137. },
  138. methods: {
  139. getData() {
  140. $api.req({
  141. url: '/data/api.business.Purchase/show',
  142. data: {
  143. tab: 1,
  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.images
  152. that.post_address = res.data.post_address
  153. that.post_time = res.data.post_time
  154. }
  155. })
  156. },
  157. showTime() {
  158. that.show_time = true
  159. },
  160. formatter(type, value) {
  161. if (type === 'year') {
  162. return `${value}年`
  163. }
  164. if (type === 'month') {
  165. return `${value}月`
  166. }
  167. if (type === 'day') {
  168. return `${value}日`
  169. }
  170. return value
  171. },
  172. close() {
  173. that.show_time = false
  174. that.show_choose = false
  175. },
  176. selectTime(e) {
  177. that.post_time = $api.formatDate(e)
  178. that.close()
  179. },
  180. // 删除图片
  181. deletePic(event) {
  182. this[`fileList${event.name}`].splice(event.index, 1)
  183. },
  184. deletePic2(index) {
  185. that.fileList1.splice(index,1)
  186. },
  187. // 新增图片
  188. async afterRead(event) {
  189. uni.showLoading({
  190. title: '上传中',
  191. mask: true
  192. })
  193. let lists = [].concat(event.file)
  194. let fileListLen = this[`fileList${event.name}`].length
  195. lists.map((item) => {
  196. this[`fileList${event.name}`].push({
  197. ...item,
  198. // status: 'uploading',
  199. // message: '上传中'
  200. })
  201. })
  202. for (let i = 0; i < lists.length; i++) {
  203. const result = await this.uploadFilePromise(lists[i].url)
  204. let item = this[`fileList${event.name}`][fileListLen]
  205. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  206. // status: 'success',
  207. type: result.type,
  208. url: result.url
  209. }))
  210. fileListLen++
  211. if(lists.length - 1 == i) {
  212. uni.hideLoading()
  213. }
  214. }
  215. console.log(that.fileList1);
  216. },
  217. uploadFilePromise(url) {
  218. return new Promise((resolve, reject) => {
  219. let a = uni.uploadFile({
  220. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  221. filePath: url,
  222. name: 'file',
  223. header: {
  224. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  225. 'api-name': 'iosapp'
  226. },
  227. formData: {
  228. user: 'test'
  229. },
  230. success: (res) => {
  231. setTimeout(() => {
  232. var data = JSON.parse(res.data)
  233. console.log('data:',data);
  234. var type = data.data.key.split('.')
  235. if(type[1] == 'mp4') {
  236. that.$set(data.data,'type','video')
  237. } else {
  238. that.$set(data.data,'type','image')
  239. }
  240. resolve(data.data)
  241. }, 1000)
  242. }
  243. });
  244. })
  245. },
  246. addGood() {
  247. that.good = {
  248. name: '',
  249. spec: '',
  250. number: '',
  251. standard: '',
  252. price: ''
  253. },
  254. that.items.push(that.good)
  255. },
  256. delGood(index) {
  257. that.items.splice(index,1)
  258. },
  259. release() {
  260. var images = []
  261. var image = {}
  262. for(var i=0;i<that.fileList1.length;i++) {
  263. image = {
  264. type: that.fileList1[i].type,
  265. src: that.fileList1[i].url,
  266. url: that.fileList1[i].url
  267. }
  268. images.push(image)
  269. }
  270. console.log(images);
  271. for(var i=0;i<that.items.length;i++) {
  272. if(!that.items[i].name || !that.items[i].spec || !that.items[i].number) {
  273. $api.info('商品不能为空')
  274. return
  275. }
  276. }
  277. /* if(images.length <=0) {
  278. $api.info('请选择图片')
  279. return
  280. } */
  281. $api.req({
  282. url: '/data/api.business.Purchase/purchase_order',
  283. method: 'POST',
  284. data: {
  285. id: that.id,
  286. real_name: that.name,
  287. mobile: that.phone,
  288. post_time: that.post_time,
  289. post_address: that.post_address,
  290. images: JSON.stringify(images),
  291. item: JSON.stringify(that.items)
  292. }
  293. }, function(res) {
  294. if(res.code == 1) {
  295. $api.info('发布成功')
  296. setTimeout(() => {
  297. if(that.back) {
  298. $api.jump(-1)
  299. } else {
  300. $api.jump('/pages/tabbar/index/index',2)
  301. }
  302. },2000)
  303. }
  304. })
  305. },
  306. choose() {
  307. that.show_choose = true
  308. },
  309. choose_img() {
  310. that.close()
  311. uni.chooseImage({
  312. count: 9, //默认9
  313. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  314. sourceType: ['album','camera'], //从相册选择
  315. success: function (res) {
  316. uni.showLoading({
  317. title: '上传中',
  318. mask: true
  319. })
  320. let fileListLen = that.fileList1.length
  321. let file = res.tempFiles[0].path
  322. console.log(file);
  323. uni.uploadFile({
  324. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  325. filePath: file,
  326. name: 'file',
  327. header: {
  328. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  329. 'api-name': 'iosapp'
  330. },
  331. formData: {
  332. user: 'test'
  333. },
  334. success: (res2) => {
  335. var data = JSON.parse(res2.data)
  336. console.log('data:',data);
  337. let item = {
  338. type: 'image',
  339. url: data.data.url
  340. }
  341. that.fileList1.push(item)
  342. uni.hideLoading()
  343. },
  344. fail(err) {
  345. console.log(err);
  346. }
  347. });
  348. }
  349. });
  350. },
  351. choose_video() {
  352. that.close()
  353. uni.chooseVideo({
  354. sourceType: ['camera', 'album'],
  355. success: function (res) {
  356. uni.showLoading({
  357. title: '上传中',
  358. mask: true
  359. })
  360. let fileListLen = that.fileList1.length
  361. let file = res.tempFilePath
  362. console.log(file);
  363. uni.uploadFile({
  364. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  365. filePath: file,
  366. name: 'file',
  367. header: {
  368. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  369. 'api-name': 'iosapp'
  370. },
  371. formData: {
  372. user: 'test'
  373. },
  374. success: (res2) => {
  375. var data = JSON.parse(res2.data)
  376. let item = {
  377. type: 'video',
  378. url: data.data.url
  379. }
  380. that.fileList1.push(item)
  381. uni.hideLoading()
  382. },
  383. fail(err) {
  384. console.log(err);
  385. }
  386. });
  387. }
  388. });
  389. }
  390. },
  391. }
  392. </script>
  393. <style lang="scss" scoped>
  394. .content::v-deep {
  395. background: #F5F5F5;
  396. .title {
  397. font-size: 30rpx;
  398. font-weight: 500;
  399. color: #222222;
  400. line-height: 42rpx;
  401. padding: 24rpx 0 14rpx 30rpx;
  402. }
  403. .add_text {
  404. font-size: 28rpx;
  405. font-weight: 500;
  406. color: #222222;
  407. line-height: 40rpx;
  408. padding-left: 2rpx;
  409. }
  410. .box {
  411. width: 100%;
  412. box-sizing: border-box;
  413. padding: 0 30rpx;
  414. background: #fff;
  415. margin-bottom: 20rpx;
  416. .box_title {
  417. font-size: 28rpx;
  418. font-weight: 500;
  419. color: #222222;
  420. line-height: 40rpx;
  421. padding: 24rpx 0 20rpx;
  422. }
  423. .img {
  424. width: 200rpx;
  425. height: 200rpx;
  426. margin: 0 20rpx 20rpx 0;
  427. border-radius: 16rpx;
  428. }
  429. video {
  430. width: 200rpx;
  431. height: 200rpx;
  432. margin: 0 20rpx 20rpx 0;
  433. }
  434. .close_icon {
  435. position: absolute;
  436. top: 0;
  437. right: 15rpx;
  438. width: 30rpx;
  439. height: 30rpx;
  440. }
  441. .img_bottom {
  442. position: absolute;
  443. bottom: 0;
  444. left: 0;
  445. width: 100%;
  446. height: 36rpx;
  447. background: rgba(0,0,0,0.5);
  448. border-radius: 0px 0px 16rpx 16rpx;
  449. font-size: 20rpx;
  450. font-weight: 400;
  451. color: #FFFFFF;
  452. line-height: 28rpx;
  453. }
  454. .box_item {
  455. padding: 28rpx 0;
  456. border-bottom: 1rpx solid #F5F5F5;
  457. .left {
  458. width: 156rpx;
  459. font-size: 30rpx;
  460. font-weight: 400;
  461. color: #222222;
  462. line-height: 42rpx;
  463. }
  464. .left_red {
  465. position: relative;
  466. }
  467. .left_red::after {
  468. position: absolute;
  469. content: "*";
  470. color: #ff0000;
  471. font-size: 30rpx;
  472. left: -15rpx;
  473. top: 0;
  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_title {
  515. font-size: 36rpx;
  516. font-weight: 500;
  517. color: #222222;
  518. line-height: 50rpx;
  519. }
  520. .choose {
  521. padding: 20rpx 0;
  522. }
  523. }
  524. </style>