purchase.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  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">联系人</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">联系电话</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">商品{{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">规格</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">数量</view>
  33. <u-input v-model="item.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">交货地址</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">交货时间</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(res.info)
  296. if(that.back) {
  297. $api.jump(-1)
  298. } else {
  299. $api.jump('/pages/tabbar/index/index',2)
  300. }
  301. }
  302. })
  303. },
  304. choose() {
  305. that.show_choose = true
  306. },
  307. choose_img() {
  308. that.close()
  309. uni.chooseImage({
  310. count: 9, //默认9
  311. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  312. sourceType: ['album','camera'], //从相册选择
  313. success: function (res) {
  314. uni.showLoading({
  315. title: '上传中',
  316. mask: true
  317. })
  318. let fileListLen = that.fileList1.length
  319. let file = res.tempFiles[0].path
  320. console.log(file);
  321. uni.uploadFile({
  322. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  323. filePath: file,
  324. name: 'file',
  325. header: {
  326. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  327. 'api-name': 'iosapp'
  328. },
  329. formData: {
  330. user: 'test'
  331. },
  332. success: (res2) => {
  333. var data = JSON.parse(res2.data)
  334. console.log('data:',data);
  335. let item = {
  336. type: 'image',
  337. url: data.data.url
  338. }
  339. that.fileList1.push(item)
  340. uni.hideLoading()
  341. },
  342. fail(err) {
  343. console.log(err);
  344. }
  345. });
  346. }
  347. });
  348. },
  349. choose_video() {
  350. that.close()
  351. uni.chooseVideo({
  352. sourceType: ['camera', 'album'],
  353. success: function (res) {
  354. uni.showLoading({
  355. title: '上传中',
  356. mask: true
  357. })
  358. let fileListLen = that.fileList1.length
  359. let file = res.tempFilePath
  360. console.log(file);
  361. uni.uploadFile({
  362. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  363. filePath: file,
  364. name: 'file',
  365. header: {
  366. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  367. 'api-name': 'iosapp'
  368. },
  369. formData: {
  370. user: 'test'
  371. },
  372. success: (res2) => {
  373. var data = JSON.parse(res2.data)
  374. let item = {
  375. type: 'video',
  376. url: data.data.url
  377. }
  378. that.fileList1.push(item)
  379. uni.hideLoading()
  380. },
  381. fail(err) {
  382. console.log(err);
  383. }
  384. });
  385. }
  386. });
  387. }
  388. },
  389. }
  390. </script>
  391. <style lang="scss" scoped>
  392. .content::v-deep {
  393. background: #F5F5F5;
  394. .title {
  395. font-size: 30rpx;
  396. font-weight: 500;
  397. color: #222222;
  398. line-height: 42rpx;
  399. padding: 24rpx 0 14rpx 30rpx;
  400. }
  401. .add_text {
  402. font-size: 28rpx;
  403. font-weight: 500;
  404. color: #222222;
  405. line-height: 40rpx;
  406. padding-left: 2rpx;
  407. }
  408. .box {
  409. width: 100%;
  410. box-sizing: border-box;
  411. padding: 0 30rpx;
  412. background: #fff;
  413. margin-bottom: 20rpx;
  414. .box_title {
  415. font-size: 28rpx;
  416. font-weight: 500;
  417. color: #222222;
  418. line-height: 40rpx;
  419. padding: 24rpx 0 20rpx;
  420. }
  421. .img {
  422. width: 200rpx;
  423. height: 200rpx;
  424. margin: 0 20rpx 20rpx 0;
  425. border-radius: 16rpx;
  426. }
  427. video {
  428. width: 200rpx;
  429. height: 200rpx;
  430. margin: 0 20rpx 20rpx 0;
  431. }
  432. .close_icon {
  433. position: absolute;
  434. top: 0;
  435. right: 15rpx;
  436. width: 30rpx;
  437. height: 30rpx;
  438. }
  439. .img_bottom {
  440. position: absolute;
  441. bottom: 0;
  442. left: 0;
  443. width: 100%;
  444. height: 36rpx;
  445. background: rgba(0,0,0,0.5);
  446. border-radius: 0px 0px 16rpx 16rpx;
  447. font-size: 20rpx;
  448. font-weight: 400;
  449. color: #FFFFFF;
  450. line-height: 28rpx;
  451. }
  452. .box_item {
  453. padding: 28rpx 0;
  454. border-bottom: 1rpx solid #F5F5F5;
  455. .left {
  456. width: 156rpx;
  457. font-size: 30rpx;
  458. font-weight: 400;
  459. color: #222222;
  460. line-height: 42rpx;
  461. }
  462. }
  463. .box_item1 {
  464. padding: 28rpx 0;
  465. .left {
  466. // width: 156rpx;
  467. font-size: 30rpx;
  468. font-weight: 400;
  469. color: #222222;
  470. line-height: 42rpx;
  471. }
  472. .u-textarea {
  473. margin: 28rpx 0 0;
  474. border: none;
  475. background: #F5F5F5;
  476. border-radius: 16rpx;
  477. }
  478. }
  479. .dte_btn {
  480. width: 132rpx;
  481. height: 52rpx;
  482. margin: 30rpx 0;
  483. border-radius: 26rpx;
  484. border: 1rpx solid #D3D3D3;
  485. font-size: 26rpx;
  486. font-weight: 400;
  487. color: #222222;
  488. line-height: 36rpx;
  489. }
  490. }
  491. .btn {
  492. margin: 28rpx auto;
  493. width: 690rpx;
  494. height: 84rpx;
  495. background: #5471FF;
  496. border-radius: 46rpx;
  497. font-size: 36rpx;
  498. font-weight: 500;
  499. color: #FFFFFF;
  500. }
  501. .popu_title {
  502. font-size: 36rpx;
  503. font-weight: 500;
  504. color: #222222;
  505. line-height: 50rpx;
  506. }
  507. .choose {
  508. padding: 20rpx 0;
  509. }
  510. }
  511. </style>