production.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  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_item hflex">
  36. <view class="left">附件</view>
  37. <view class="center vflex">
  38. <block v-for="(item2,index2) in item.enclosure" :key="index2">
  39. <view class="text_hide" style="max-width: 300rpx;">{{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: 2,
  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. for(var i=0;i<that.items.length;i++) {
  312. if(!that.items[i].name || !that.items[i].spec || !that.items[i].number) {
  313. $api.info('商品不能为空')
  314. return
  315. }
  316. if(!that.items[i].enclosure) {
  317. that.items[i].enclosure = {
  318. filename: '',
  319. fileurl: ''
  320. }
  321. }
  322. }
  323. var images = []
  324. var image = {}
  325. for(var i=0;i<that.fileList1.length;i++) {
  326. image = {
  327. type: that.fileList1[i].type,
  328. src: that.fileList1[i].url,
  329. url: that.fileList1[i].url
  330. }
  331. images.push(image)
  332. }
  333. /* if(images.length <=0) {
  334. $api.info('请选择图片')
  335. return
  336. } */
  337. $api.req({
  338. url: '/data/api.business.Purchase/production_order',
  339. method: 'POST',
  340. data: {
  341. id: that.id,
  342. real_name: that.name,
  343. mobile: that.phone,
  344. standard_tech: that.standard_tech,
  345. standard_check: that.standard_check,
  346. post_time: that.post_time,
  347. post_address: that.post_address,
  348. file: JSON.stringify(images),
  349. item: JSON.stringify(that.items)
  350. }
  351. }, function(res) {
  352. console.log(res);
  353. if(res.code == 1) {
  354. $api.info('发布成功')
  355. setTimeout(() => {
  356. if(that.back) {
  357. $api.jump(-1)
  358. } else {
  359. $api.jump('/pages/tabbar/index/index',2)
  360. }
  361. },2000)
  362. }
  363. })
  364. },
  365. choose() {
  366. that.show_choose = true
  367. },
  368. choose_img() {
  369. that.close()
  370. uni.chooseImage({
  371. count: 9, //默认9
  372. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  373. sourceType: ['album','camera'], //从相册选择
  374. success: function (res) {
  375. uni.showLoading({
  376. title: '上传中',
  377. mask: true
  378. })
  379. let fileListLen = that.fileList1.length
  380. let file = res.tempFiles[0].path
  381. console.log(file);
  382. uni.uploadFile({
  383. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  384. filePath: file,
  385. name: 'file',
  386. header: {
  387. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  388. 'api-name': 'iosapp'
  389. },
  390. formData: {
  391. user: 'test'
  392. },
  393. success: (res2) => {
  394. var data = JSON.parse(res2.data)
  395. console.log('data:',data);
  396. let item = {
  397. type: 'image',
  398. url: data.data.url
  399. }
  400. that.fileList1.push(item)
  401. uni.hideLoading()
  402. },
  403. fail(err) {
  404. console.log(err);
  405. }
  406. });
  407. }
  408. });
  409. },
  410. choose_video() {
  411. that.close()
  412. uni.chooseVideo({
  413. sourceType: ['camera', 'album'],
  414. success: function (res) {
  415. uni.showLoading({
  416. title: '上传中',
  417. mask: true
  418. })
  419. let fileListLen = that.fileList1.length
  420. let file = res.tempFilePath
  421. console.log(file);
  422. uni.uploadFile({
  423. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  424. filePath: file,
  425. name: 'file',
  426. header: {
  427. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  428. 'api-name': 'iosapp'
  429. },
  430. formData: {
  431. user: 'test'
  432. },
  433. success: (res2) => {
  434. var data = JSON.parse(res2.data)
  435. let item = {
  436. type: 'video',
  437. url: data.data.url
  438. }
  439. that.fileList1.push(item)
  440. uni.hideLoading()
  441. },
  442. fail(err) {
  443. console.log(err);
  444. }
  445. });
  446. }
  447. });
  448. },
  449. deletePic2(index) {
  450. that.fileList1.splice(index,1)
  451. },
  452. },
  453. }
  454. </script>
  455. <style lang="scss" scoped>
  456. .content::v-deep {
  457. background: #F5F5F5;
  458. .title {
  459. font-size: 30rpx;
  460. font-weight: 500;
  461. color: #222222;
  462. line-height: 42rpx;
  463. padding: 24rpx 0 14rpx 30rpx;
  464. }
  465. .add_text {
  466. font-size: 28rpx;
  467. font-weight: 500;
  468. color: #222222;
  469. line-height: 40rpx;
  470. padding-left: 2rpx;
  471. }
  472. .box {
  473. width: 100%;
  474. box-sizing: border-box;
  475. padding: 0 30rpx;
  476. background: #fff;
  477. margin-bottom: 20rpx;
  478. .box_title {
  479. font-size: 28rpx;
  480. font-weight: 500;
  481. color: #222222;
  482. line-height: 40rpx;
  483. padding: 24rpx 0 20rpx;
  484. }
  485. .img {
  486. width: 200rpx;
  487. height: 200rpx;
  488. margin: 0 20rpx 20rpx 0;
  489. border-radius: 16rpx;
  490. }
  491. video {
  492. width: 200rpx;
  493. height: 200rpx;
  494. margin: 0 20rpx 20rpx 0;
  495. }
  496. .close_icon {
  497. position: absolute;
  498. top: 0;
  499. right: 15rpx;
  500. width: 30rpx;
  501. height: 30rpx;
  502. }
  503. .box_item {
  504. padding: 28rpx 0;
  505. border-bottom: 1rpx solid #F5F5F5;
  506. .left {
  507. width: 156rpx;
  508. font-size: 30rpx;
  509. font-weight: 400;
  510. color: #222222;
  511. line-height: 42rpx;
  512. }
  513. .left_red {
  514. position: relative;
  515. }
  516. .left_red::after {
  517. position: absolute;
  518. content: "*";
  519. color: #ff0000;
  520. font-size: 30rpx;
  521. left: -15rpx;
  522. top: 0;
  523. }
  524. .center {
  525. width: calc(100% - 276rpx);
  526. }
  527. .right {
  528. text-align: 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>