waixie.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  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="lef left_redt">规格</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_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 left_red">交货地址</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 left_red">交货时间</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====',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. console.log('data====',data);
  223. var enclosure = {
  224. filename: result.lastName,
  225. fileurl: data.data.url
  226. }
  227. if(that.items[index].enclosure[0].filename == '') {
  228. that.items[index].enclosure.splice(0,1,enclosure)
  229. } else {
  230. that.items[index].enclosure.push(enclosure)
  231. }
  232. console.log('items',that.items);
  233. }
  234. });
  235. }
  236. }
  237. });
  238. }
  239. });
  240. }
  241. },
  242. // 删除图片
  243. deletePic(event) {
  244. this[`fileList${event.name}`].splice(event.index, 1)
  245. },
  246. // 新增图片
  247. async afterRead(event) {
  248. uni.showLoading({
  249. title: '上传中',
  250. mask: true
  251. })
  252. let lists = [].concat(event.file)
  253. let fileListLen = this[`fileList${event.name}`].length
  254. lists.map((item) => {
  255. this[`fileList${event.name}`].push({
  256. ...item,
  257. // status: 'uploading',
  258. // message: '上传中'
  259. })
  260. })
  261. for (let i = 0; i < lists.length; i++) {
  262. const result = await this.uploadFilePromise(lists[i].url)
  263. let item = this[`fileList${event.name}`][fileListLen]
  264. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  265. // status: 'success',
  266. type: result.type,
  267. url: result.url
  268. }))
  269. fileListLen++
  270. if(lists.length - 1 == i) {
  271. uni.hideLoading()
  272. }
  273. }
  274. console.log(that.fileList1);
  275. },
  276. uploadFilePromise(url) {
  277. return new Promise((resolve, reject) => {
  278. let a = uni.uploadFile({
  279. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  280. filePath: url,
  281. name: 'file',
  282. header: {
  283. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  284. 'api-name': 'iosapp'
  285. },
  286. formData: {
  287. user: 'test'
  288. },
  289. success: (res) => {
  290. setTimeout(() => {
  291. var data = JSON.parse(res.data)
  292. console.log('data:',data);
  293. var type = data.data.key.split('.')
  294. if(type[1] == 'mp4') {
  295. that.$set(data.data,'type','video')
  296. } else {
  297. that.$set(data.data,'type','image')
  298. }
  299. resolve(data.data)
  300. }, 1000)
  301. }
  302. });
  303. })
  304. },
  305. addGood() {
  306. that.items.push(that.good)
  307. },
  308. delGood(index) {
  309. that.items.splice(index,1)
  310. },
  311. release() {
  312. console.log(that.fileList1);
  313. var images = []
  314. var image = {}
  315. for(var i=0;i<that.fileList1.length;i++) {
  316. image = {
  317. type: that.fileList1[i].type,
  318. src: that.fileList1[i].url,
  319. url: that.fileList1[i].url
  320. }
  321. images.push(image)
  322. }
  323. for(var i=0;i<that.items.length;i++) {
  324. if(!that.items[i].name || !that.items[i].spec || !that.items[i].number) {
  325. $api.info('商品不能为空')
  326. return
  327. }
  328. if(!that.items[i].enclosure) {
  329. that.items[i].enclosure = {
  330. filename: '',
  331. fileurl: ''
  332. }
  333. }
  334. }
  335. /* if(images.length <=0) {
  336. $api.info('请选择图片')
  337. return
  338. } */
  339. $api.req({
  340. url: '/data/api.business.Purchase/coordination_order',
  341. method: 'POST',
  342. data: {
  343. id: that.id,
  344. real_name: that.name,
  345. mobile: that.phone,
  346. standard_tech: that.standard_tech,
  347. standard_check: that.standard_check,
  348. post_time: that.post_time,
  349. post_address: that.post_address,
  350. file: JSON.stringify(images),
  351. item: JSON.stringify(that.items)
  352. }
  353. }, function(res) {
  354. if(res.code == 1) {
  355. $api.info('发布成功')
  356. setTimeout(() => {
  357. if(that.back) {
  358. $api.jump(-1)
  359. } else {
  360. $api.jump('/pages/tabbar/index/index',2)
  361. }
  362. },2000)
  363. }
  364. })
  365. },
  366. choose() {
  367. that.show_choose = true
  368. },
  369. choose_img() {
  370. that.close()
  371. uni.chooseImage({
  372. count: 9, //默认9
  373. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  374. sourceType: ['album','camera'], //从相册选择
  375. success: function (res) {
  376. uni.showLoading({
  377. title: '上传中',
  378. mask: true
  379. })
  380. let fileListLen = that.fileList1.length
  381. let file = res.tempFiles[0].path
  382. console.log(file);
  383. uni.uploadFile({
  384. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  385. filePath: file,
  386. name: 'file',
  387. header: {
  388. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  389. 'api-name': 'iosapp'
  390. },
  391. formData: {
  392. user: 'test'
  393. },
  394. success: (res2) => {
  395. var data = JSON.parse(res2.data)
  396. console.log('data:',data);
  397. let item = {
  398. type: 'image',
  399. url: data.data.url
  400. }
  401. that.fileList1.push(item)
  402. uni.hideLoading()
  403. },
  404. fail(err) {
  405. console.log(err);
  406. }
  407. });
  408. }
  409. });
  410. },
  411. choose_video() {
  412. that.close()
  413. uni.chooseVideo({
  414. sourceType: ['camera', 'album'],
  415. success: function (res) {
  416. uni.showLoading({
  417. title: '上传中',
  418. mask: true
  419. })
  420. let fileListLen = that.fileList1.length
  421. let file = res.tempFilePath
  422. console.log(file);
  423. uni.uploadFile({
  424. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  425. filePath: file,
  426. name: 'file',
  427. header: {
  428. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  429. 'api-name': 'iosapp'
  430. },
  431. formData: {
  432. user: 'test'
  433. },
  434. success: (res2) => {
  435. var data = JSON.parse(res2.data)
  436. let item = {
  437. type: 'video',
  438. url: data.data.url
  439. }
  440. that.fileList1.push(item)
  441. uni.hideLoading()
  442. },
  443. fail(err) {
  444. console.log(err);
  445. }
  446. });
  447. }
  448. });
  449. },
  450. deletePic2(index) {
  451. that.fileList1.splice(index,1)
  452. },
  453. },
  454. }
  455. </script>
  456. <style lang="scss" scoped>
  457. .content::v-deep {
  458. background: #F5F5F5;
  459. .title {
  460. font-size: 30rpx;
  461. font-weight: 500;
  462. color: #222222;
  463. line-height: 42rpx;
  464. padding: 24rpx 0 14rpx 30rpx;
  465. }
  466. .add_text {
  467. font-size: 28rpx;
  468. font-weight: 500;
  469. color: #222222;
  470. line-height: 40rpx;
  471. padding-left: 2rpx;
  472. }
  473. .box {
  474. width: 100%;
  475. box-sizing: border-box;
  476. padding: 0 30rpx;
  477. background: #fff;
  478. margin-bottom: 20rpx;
  479. .box_title {
  480. font-size: 28rpx;
  481. font-weight: 500;
  482. color: #222222;
  483. line-height: 40rpx;
  484. padding: 24rpx 0 20rpx;
  485. }
  486. .img {
  487. width: 200rpx;
  488. height: 200rpx;
  489. margin: 0 20rpx 20rpx 0;
  490. border-radius: 16rpx;
  491. }
  492. video {
  493. width: 200rpx;
  494. height: 200rpx;
  495. margin: 0 20rpx 20rpx 0;
  496. }
  497. .close_icon {
  498. position: absolute;
  499. top: 0;
  500. right: 15rpx;
  501. width: 30rpx;
  502. height: 30rpx;
  503. }
  504. .box_item {
  505. padding: 28rpx 0;
  506. border-bottom: 1rpx solid #F5F5F5;
  507. .left {
  508. width: 156rpx;
  509. font-size: 30rpx;
  510. font-weight: 400;
  511. color: #222222;
  512. line-height: 42rpx;
  513. }
  514. .left_red {
  515. position: relative;
  516. }
  517. .left_red::after {
  518. position: absolute;
  519. content: "*";
  520. color: #ff0000;
  521. font-size: 30rpx;
  522. left: -15rpx;
  523. top: 0;
  524. }
  525. .center {
  526. width: calc(100% - 276rpx);
  527. }
  528. .right {
  529. font-size: 30rpx;
  530. font-weight: 400;
  531. color: #5471FF;
  532. line-height: 42rpx;
  533. }
  534. }
  535. .box_item1 {
  536. padding: 28rpx 0;
  537. .left {
  538. // width: 156rpx;
  539. font-size: 30rpx;
  540. font-weight: 400;
  541. color: #222222;
  542. line-height: 42rpx;
  543. }
  544. .u-textarea {
  545. margin: 28rpx 0 0;
  546. border: none;
  547. background: #F5F5F5;
  548. border-radius: 16rpx;
  549. }
  550. }
  551. .dte_btn {
  552. width: 132rpx;
  553. height: 52rpx;
  554. margin: 30rpx 0;
  555. border-radius: 26rpx;
  556. border: 1rpx solid #D3D3D3;
  557. font-size: 26rpx;
  558. font-weight: 400;
  559. color: #222222;
  560. line-height: 36rpx;
  561. }
  562. }
  563. .btn {
  564. margin: 28rpx auto;
  565. width: 690rpx;
  566. height: 84rpx;
  567. background: #5471FF;
  568. border-radius: 46rpx;
  569. font-size: 36rpx;
  570. font-weight: 500;
  571. color: #FFFFFF;
  572. }
  573. .popu_title {
  574. font-size: 36rpx;
  575. font-weight: 500;
  576. color: #222222;
  577. line-height: 50rpx;
  578. }
  579. .choose {
  580. padding: 20rpx 0;
  581. }
  582. }
  583. </style>