waixie.vue 16 KB

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