index.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335
  1. <template>
  2. <div class="page-wecom-approval">
  3. <div
  4. v-if="loading"
  5. v-loading="true"
  6. style="
  7. width: 100vw;
  8. height: 100vh;
  9. z-index: 999;
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. "
  14. class=""
  15. element-loading-text="Loading..."
  16. element-loading-background="rgba(0, 0, 0, 0.3)"
  17. ></div>
  18. <div class="main-content">
  19. <div
  20. class="flex"
  21. style="max-width: 800px; margin: 0 auto"
  22. >
  23. <div class="logo-area">
  24. <img
  25. :src="getLogoPath()"
  26. alt=""
  27. />
  28. </div>
  29. <div class="page-title">货物运输申请</div>
  30. <!-- <el-button @click="redirectToCRM">test</el-button> -->
  31. </div>
  32. <el-form
  33. ref="mainForm"
  34. style="max-width: 800px; margin: 0 auto"
  35. :model="form"
  36. :rules="rules"
  37. label-width="150px"
  38. label-position="left"
  39. >
  40. <el-form-item
  41. label="申请人"
  42. prop="name"
  43. >
  44. <el-input
  45. v-model="form.creator_userid"
  46. disabled
  47. style="display: none"
  48. ></el-input>
  49. <div style="font-weight: bold">{{ firstName }}</div>
  50. </el-form-item>
  51. <el-form-item
  52. prop="so_ref"
  53. label="SO Reference"
  54. >
  55. <el-input
  56. v-model="form.so_ref"
  57. style="display: none"
  58. disabled
  59. ></el-input>
  60. <div class="">{{ form.so_ref }}</div>
  61. </el-form-item>
  62. <el-form-item
  63. prop="job_name"
  64. label="Job Name"
  65. >
  66. <el-input
  67. v-model="form.job_name"
  68. style="display: none"
  69. disabled
  70. ></el-input>
  71. <div class="">{{ form.job_name }}</div>
  72. </el-form-item>
  73. <el-form-item
  74. prop="location"
  75. label="Location"
  76. >
  77. <el-radio-group v-model="form.location">
  78. <el-radio
  79. v-for="item in locationList"
  80. :key="item.key"
  81. :label="item.value[0].text"
  82. :value="item.key"
  83. ></el-radio>
  84. </el-radio-group>
  85. </el-form-item>
  86. <el-form-item
  87. prop="yunshu"
  88. label="运输方式"
  89. >
  90. <el-radio-group v-model="form.yunshu">
  91. <el-radio
  92. v-for="item in yunshuList"
  93. :key="item.key"
  94. :label="item.value[0].text"
  95. :value="item.key"
  96. ></el-radio>
  97. </el-radio-group>
  98. </el-form-item>
  99. <el-form-item
  100. v-if="form.yunshu === 'option-1718767952637'"
  101. label="Cbm"
  102. prop="cbm"
  103. >
  104. <el-input
  105. v-model="form.cbm"
  106. placeholder="如选择海运,请填写方数"
  107. type="number"
  108. ></el-input>
  109. </el-form-item>
  110. <el-form-item
  111. prop="huoyun"
  112. label="货运方式"
  113. >
  114. <el-radio-group v-model="form.huoyun">
  115. <el-radio
  116. v-for="item in huoyunList"
  117. :key="item.key"
  118. :label="item.value[0].text"
  119. :value="item.key"
  120. ></el-radio>
  121. </el-radio-group>
  122. </el-form-item>
  123. <el-form-item
  124. v-if="form.huoyun === 'option-1718768018003'"
  125. label="货代名称"
  126. prop="huodai"
  127. >
  128. <el-select v-model="form.huodai">
  129. <el-option
  130. v-for="item in huodaiList"
  131. :key="item.key"
  132. :label="item.value[0].text"
  133. :value="item.key"
  134. ></el-option>
  135. </el-select>
  136. </el-form-item>
  137. <el-form-item
  138. prop="trans"
  139. label="中转方式"
  140. >
  141. <el-radio-group v-model="form.trans">
  142. <el-radio
  143. v-for="item in transList"
  144. :key="item.key"
  145. :label="item.value[0].text"
  146. :value="item.key"
  147. ></el-radio>
  148. </el-radio-group>
  149. </el-form-item>
  150. <el-form-item
  151. prop="number"
  152. label="箱数"
  153. >
  154. <el-input v-model="form.number"></el-input>
  155. </el-form-item>
  156. <el-form-item
  157. prop="weight"
  158. label="重量"
  159. >
  160. <el-input v-model="form.weight">
  161. <template #append>
  162. <div style="width: 100px; text-align: center">kg</div>
  163. </template>
  164. </el-input>
  165. </el-form-item>
  166. <el-form-item label="地址">
  167. <div class="addr-input-group">
  168. <div class="flex items-start">
  169. <el-input
  170. v-model="form.ATTN"
  171. placeholder="ATTN"
  172. ></el-input>
  173. <div class="addr-append">ATTN</div>
  174. </div>
  175. <div class="flex items-start">
  176. <el-input
  177. v-model="form.Phone"
  178. placeholder="Phone"
  179. ></el-input>
  180. <div class="addr-append">Phone</div>
  181. </div>
  182. <div class="flex items-stretch">
  183. <el-input
  184. v-model="form.Shipping_Unit_Building_Name"
  185. placeholder="Shipping Unit/Building Name"
  186. :autosize="{ minRows: 1 }"
  187. type="textarea"
  188. ></el-input>
  189. <div class="addr-append">Shipping Unit</div>
  190. </div>
  191. <div class="flex items-start">
  192. <el-input
  193. v-model="form.Shipping_Street"
  194. placeholder="Shipping Street"
  195. ></el-input>
  196. <div class="addr-append">Shipping Street</div>
  197. </div>
  198. <div class="flex items-start">
  199. <el-input
  200. v-model="form.Shipping_City"
  201. placeholder="Shipping City"
  202. ></el-input>
  203. <div class="addr-append">Shipping City</div>
  204. </div>
  205. <div class="flex items-start">
  206. <el-input
  207. v-model="form.Shipping_State"
  208. placeholder="Shipping state"
  209. ></el-input>
  210. <div class="addr-append">Shipping State</div>
  211. </div>
  212. <div class="flex items-start">
  213. <el-input
  214. v-model="form.Shipping_Code"
  215. placeholder="Shipping Code"
  216. ></el-input>
  217. <div class="addr-append">Shipping Code</div>
  218. </div>
  219. <div class="flex items-start">
  220. <el-input
  221. v-model="form.Shipping_Country"
  222. placeholder="Shipping Country"
  223. ></el-input>
  224. <div class="addr-append">Shipping Country</div>
  225. </div>
  226. </div>
  227. </el-form-item>
  228. <el-form-item
  229. prop="comment"
  230. label="装箱备注"
  231. >
  232. <el-input
  233. v-model="form.comment"
  234. placeholder="任何补充,请在此处填写"
  235. type="textarea"
  236. :rows="3"
  237. ></el-input>
  238. </el-form-item>
  239. <el-form-item
  240. prop="file"
  241. label="附件"
  242. >
  243. <div>
  244. <label for="fileInput">
  245. <el-tooltip
  246. :content="'企业微信限制了传\'图片\'最大只能上传10MB, 传\'文件\'类型最大只能上传20MB, 上传数量上限为6. 企微可能随时会调整, 建议别传太大的文件.'"
  247. >
  248. <div class="el-button el-button-primary">添加附件</div>
  249. </el-tooltip>
  250. </label>
  251. <br />
  252. <div style="color: #999">
  253. Artwork/Agreement/合同/其他附件, 请Attach
  254. </div>
  255. <div class="">
  256. <div
  257. v-for="(file, i) in form.files"
  258. :key="i"
  259. class="flex"
  260. >
  261. <div style="color: #333; margin-right: 24px">
  262. {{ file.name }}
  263. </div>
  264. <el-button
  265. size="small"
  266. type="danger"
  267. @click="deleteFile(i)"
  268. >
  269. Delete
  270. </el-button>
  271. </div>
  272. </div>
  273. </div>
  274. </el-form-item>
  275. <el-form-item label="价格">
  276. <el-table :data="form.price">
  277. <el-table-column
  278. label="货代价格"
  279. prop=""
  280. >
  281. <template #default="scope">
  282. <el-input
  283. v-model="scope.row.pa"
  284. placeholder="请填写我们支付给货代总金额或者每公斤单价"
  285. ></el-input>
  286. </template>
  287. </el-table-column>
  288. <el-table-column
  289. width="220"
  290. label="发票单价(AUD/USD)"
  291. prop=""
  292. >
  293. <template #default="scope">
  294. <el-input
  295. v-model="scope.row.pb"
  296. placeholder="请填写申报发票上的单价"
  297. ></el-input>
  298. </template>
  299. </el-table-column>
  300. <el-table-column
  301. width="100"
  302. label="操作"
  303. >
  304. <template #default="scope">
  305. <el-button
  306. type="danger"
  307. size="small"
  308. @click="deletePriceRow(scope.row, scope.$index)"
  309. >
  310. Delete
  311. </el-button>
  312. </template>
  313. </el-table-column>
  314. </el-table>
  315. <el-button
  316. size="small"
  317. @click="addPriceRow"
  318. >
  319. Add row
  320. </el-button>
  321. </el-form-item>
  322. <br />
  323. <el-form-item>
  324. <template #label>
  325. <div>
  326. <div class="">货物</div>
  327. <el-button
  328. type="danger"
  329. size="small"
  330. @click="resetGoods"
  331. >
  332. Reset
  333. </el-button>
  334. <el-button
  335. style="margin: 8px 0 0 0"
  336. type="primary"
  337. size="small"
  338. @click="autoFillNumber"
  339. >
  340. Dispatch All
  341. </el-button>
  342. </div>
  343. </template>
  344. <el-table :data="form.goods">
  345. <el-table-column label="品名">
  346. <template #default="scope">
  347. <el-input
  348. v-model="scope.row.name"
  349. disabled
  350. ></el-input>
  351. <el-input
  352. v-model="scope.row.desc"
  353. type="textarea"
  354. row="3"
  355. disabled
  356. style="margin-top: 8px"
  357. ></el-input>
  358. </template>
  359. </el-table-column>
  360. <el-table-column
  361. width="120"
  362. label="剩余数量"
  363. prop="quantity"
  364. >
  365. <template #default="scope">
  366. <el-input
  367. v-model="scope.row.quantity"
  368. type="number"
  369. disabled
  370. min="0"
  371. ></el-input>
  372. </template>
  373. </el-table-column>
  374. <el-table-column
  375. width="120"
  376. label="发货数量"
  377. prop="number"
  378. >
  379. <template #default="scope">
  380. <el-form-item
  381. label=""
  382. label-width="0"
  383. :prop="'goods.' + scope.$index + '.number'"
  384. :rules="{
  385. required: true,
  386. message: '必填项',
  387. trigger: ['blur', 'change'],
  388. }"
  389. >
  390. <el-input
  391. v-model="scope.row.number"
  392. type="number"
  393. min="0"
  394. @change="(e) => limitNumber(e, scope.row, 'number')"
  395. ></el-input>
  396. </el-form-item>
  397. </template>
  398. </el-table-column>
  399. <el-table-column
  400. label="操作"
  401. width="100"
  402. >
  403. <template #default="scope">
  404. <el-button
  405. type="danger"
  406. size="small"
  407. @click="deleteGoodRow(scope.row, scope.$index)"
  408. >
  409. Delete
  410. </el-button>
  411. </template>
  412. </el-table-column>
  413. </el-table>
  414. </el-form-item>
  415. <el-form-item>
  416. <div class="flex">
  417. <el-button
  418. size="large"
  419. type="primary"
  420. :disabled="submited"
  421. :loading="loading"
  422. @click="checkForm(mainForm)"
  423. >
  424. 提交
  425. </el-button>
  426. </div>
  427. </el-form-item>
  428. </el-form>
  429. <div class="copyright">
  430. Copyright of Promocollection - Version 1.0 Released on 01/07/2024
  431. </div>
  432. </div>
  433. <input
  434. id="fileInput"
  435. type="file"
  436. multiple
  437. style="display: none"
  438. @change="processFile"
  439. />
  440. </div>
  441. </template>
  442. <script lang="ts">
  443. export default defineComponent({
  444. name: 'WecomApproval',
  445. })
  446. </script>
  447. <script lang="ts" setup>
  448. import { computed, defineComponent, ref } from 'vue'
  449. import { useRoute } from 'vue-router'
  450. import {
  451. ElButton,
  452. ElForm,
  453. ElFormItem,
  454. ElInput,
  455. ElRadio,
  456. ElRadioGroup,
  457. ElTable,
  458. ElTableColumn,
  459. ElSelect,
  460. ElOption,
  461. ElMessage,
  462. ElTooltip,
  463. ElNotification,
  464. } from 'element-plus'
  465. import type { FormRules, FormInstance } from 'element-plus'
  466. import request from '@/utils/axios'
  467. const loading = ref(false)
  468. const mainForm = ref<FormInstance>()
  469. const form = ref({
  470. creator_userid: '',
  471. so_ref: '',
  472. job_name: '',
  473. location: '',
  474. yunshu: '',
  475. cbm: '',
  476. huoyun: '',
  477. huodai: '',
  478. trans: '',
  479. number: '',
  480. weight: '',
  481. ATTN: '',
  482. Phone: '',
  483. Shipping_Unit_Building_Name: '',
  484. Shipping_Street: '',
  485. Shipping_City: '',
  486. Shipping_State: '',
  487. Shipping_Code: '',
  488. Shipping_Country: '',
  489. comment: '',
  490. archer: '',
  491. price: [{ pa: '', pb: '' }],
  492. goods: [] as any[],
  493. files: [] as { file_id: string; name: string }[], // 附件
  494. useField: '',
  495. })
  496. const rules = ref<FormRules>({
  497. creator_userid: [{ required: true, message: '必填项', trigger: 'blur' }],
  498. so_ref: [{ required: true, message: '必填项', trigger: 'blur' }],
  499. job_name: [{ required: true, message: '必填项', trigger: 'blur' }],
  500. location: [{ required: true, message: '必填项', trigger: 'blur' }],
  501. yunshu: [{ required: true, message: '必填项', trigger: 'blur' }],
  502. cbm: [{ required: true, message: '必填项', trigger: 'blur' }],
  503. huoyun: [{ required: true, message: '必填项', trigger: 'blur' }],
  504. huodai: [{ required: true, message: '必填项', trigger: 'blur' }],
  505. trans: [{ required: true, message: '必填项', trigger: 'blur' }],
  506. })
  507. const locationList = [
  508. {
  509. key: 'option-1718767763003',
  510. value: [
  511. {
  512. text: 'AU',
  513. lang: 'zh_CN',
  514. },
  515. ],
  516. },
  517. {
  518. key: 'option-1718767763004',
  519. value: [
  520. {
  521. text: 'NZ',
  522. lang: 'zh_CN',
  523. },
  524. ],
  525. },
  526. {
  527. key: 'option-1718767776803',
  528. value: [
  529. {
  530. text: 'Other(请在地址栏填写其他国家)',
  531. lang: 'zh_CN',
  532. },
  533. ],
  534. },
  535. ]
  536. const yunshuList = [
  537. {
  538. key: 'option-1718767905143',
  539. value: [
  540. {
  541. text: '其他空运',
  542. lang: 'zh_CN',
  543. },
  544. ],
  545. },
  546. {
  547. key: 'option-1718767938758',
  548. value: [
  549. {
  550. text: 'DHL空运',
  551. lang: 'zh_CN',
  552. },
  553. ],
  554. },
  555. {
  556. key: 'option-1718767944843',
  557. value: [
  558. {
  559. text: 'TNT空运',
  560. lang: 'zh_CN',
  561. },
  562. ],
  563. },
  564. {
  565. key: 'option-1718767905144',
  566. value: [
  567. {
  568. text: 'FedEx空运',
  569. lang: 'zh_CN',
  570. },
  571. ],
  572. },
  573. {
  574. key: 'option-1718767952637',
  575. value: [
  576. {
  577. text: '海运',
  578. lang: 'zh_CN',
  579. },
  580. ],
  581. },
  582. ]
  583. const huoyunList = [
  584. {
  585. key: 'option-1718767971282',
  586. value: [
  587. {
  588. text: '自送AUE',
  589. lang: 'zh_CN',
  590. },
  591. ],
  592. },
  593. {
  594. key: 'option-1718767971283',
  595. value: [
  596. {
  597. text: '自送浚捷',
  598. lang: 'zh_CN',
  599. },
  600. ],
  601. },
  602. {
  603. key: 'option-1718768010827',
  604. value: [
  605. {
  606. text: 'Logistics直发客户',
  607. lang: 'zh_CN',
  608. },
  609. ],
  610. },
  611. {
  612. key: 'option-1718768018003',
  613. value: [
  614. {
  615. text: '货代',
  616. lang: 'zh_CN',
  617. },
  618. ],
  619. },
  620. ]
  621. const huodaiList = [
  622. {
  623. key: 'option-1718768061055',
  624. value: [
  625. {
  626. text: '腾信',
  627. lang: 'zh_CN',
  628. },
  629. ],
  630. },
  631. {
  632. key: 'option-1718768061056',
  633. value: [
  634. {
  635. text: 'BWW',
  636. lang: 'zh_CN',
  637. },
  638. ],
  639. },
  640. {
  641. key: 'option-1718768085759',
  642. value: [
  643. {
  644. text: '天汇',
  645. lang: 'zh_CN',
  646. },
  647. ],
  648. },
  649. {
  650. key: 'option-1718768093097',
  651. value: [
  652. {
  653. text: '耀辉',
  654. lang: 'zh_CN',
  655. },
  656. ],
  657. },
  658. {
  659. key: 'option-1718768107857',
  660. value: [
  661. {
  662. text: '聂先生',
  663. lang: 'zh_CN',
  664. },
  665. ],
  666. },
  667. {
  668. key: 'option-1718768114817',
  669. value: [
  670. {
  671. text: '项先生',
  672. lang: 'zh_CN',
  673. },
  674. ],
  675. },
  676. {
  677. key: 'option-1718768125847',
  678. value: [
  679. {
  680. text: '鑫发',
  681. lang: 'zh_CN',
  682. },
  683. ],
  684. },
  685. {
  686. key: 'option-1718768131503',
  687. value: [
  688. {
  689. text: '茗佳',
  690. lang: 'zh_CN',
  691. },
  692. ],
  693. },
  694. {
  695. key: 'option-1723103324115',
  696. value: [
  697. {
  698. text: '其他货代(请与物流部沟通)',
  699. lang: 'zh_CN',
  700. },
  701. ],
  702. },
  703. ]
  704. const transList = [
  705. {
  706. key: 'option-1718768200256',
  707. value: [
  708. {
  709. text: '直送NZ',
  710. lang: 'zh_CN',
  711. },
  712. ],
  713. },
  714. {
  715. key: 'option-1718768200257',
  716. value: [
  717. {
  718. text: '直送客户',
  719. lang: 'zh_CN',
  720. },
  721. ],
  722. },
  723. {
  724. key: 'option-1718768224239',
  725. value: [
  726. {
  727. text: 'to AUWH',
  728. lang: 'zh_CN',
  729. },
  730. ],
  731. },
  732. ]
  733. const addPriceRow = () =>
  734. form.value.price.push({
  735. pa: '',
  736. pb: '',
  737. })
  738. const deletePriceRow = function (row: any, index: number) {
  739. form.value.price.splice(index, 1)
  740. }
  741. const deleteGoodRow = function (row: any, index: number) {
  742. form.value.goods.splice(index, 1)
  743. }
  744. const deleteFile = function (index: number) {
  745. form.value.files.splice(index, 1)
  746. }
  747. const route = useRoute()
  748. const soData = ref(
  749. {} as {
  750. Contract_Title: string
  751. Reference: string
  752. Pkg_details: any[]
  753. Product_Details: any[]
  754. },
  755. )
  756. const resetGoods = function () {
  757. if (
  758. Array.isArray(soData.value.Pkg_details) &&
  759. soData.value.Pkg_details.length
  760. ) {
  761. form.value.useField = 'Pkg_details'
  762. form.value.goods = soData.value.Pkg_details.map((i: any) => {
  763. return {
  764. id: i.Product_Line_Id,
  765. name: i.Product?.name || '',
  766. desc: i.Description || '',
  767. quantity: i.Quantity || 0,
  768. number: '',
  769. }
  770. })
  771. } else if (Array.isArray(soData.value.Product_Details)) {
  772. form.value.useField = 'Product_Details'
  773. form.value.goods = soData.value.Product_Details.map((i: any) => {
  774. console.log('iii')
  775. return {
  776. id: i.id,
  777. name: i.product.name || '',
  778. desc: i.product_description || '',
  779. quantity: i.quantity || 0,
  780. number: '',
  781. }
  782. })
  783. } else {
  784. form.value.goods = []
  785. }
  786. }
  787. const autoFillNumber = function () {
  788. form.value.goods.forEach((i) => {
  789. i.number = i.quantity
  790. })
  791. }
  792. const firstName = ref('')
  793. request
  794. .post('/common/getSalesOrdersData', {
  795. id: route.params.id,
  796. })
  797. .then((res) => {
  798. const d = res.data.result
  799. if (res.status === 200 && res.data.code === 1) {
  800. soData.value = d
  801. if (d.Package_not_complate === true) {
  802. ElNotification({
  803. duration: 0,
  804. type: 'error',
  805. title: '出错啦!',
  806. message: 'Please confirm current package before a create a new one',
  807. })
  808. return false
  809. }
  810. firstName.value = (route.query.firstName as string) || ''
  811. form.value.creator_userid = (route.query.userName as string) || ''
  812. form.value.job_name = d.Contract_Title
  813. form.value.so_ref = d.Reference
  814. form.value.ATTN = d.ATTN || ''
  815. form.value.Phone = d.Phone || ''
  816. form.value.Shipping_Unit_Building_Name =
  817. d.Shipping_Unit_Building_Name || ''
  818. form.value.Shipping_Street = d.Shipping_Street || ''
  819. form.value.Shipping_City = d.Shipping_City || ''
  820. form.value.Shipping_State = d.Shipping_State || ''
  821. form.value.Shipping_Code = d.Shipping_Code || ''
  822. form.value.Shipping_Country = d.Shipping_Country || ''
  823. }
  824. resetGoods()
  825. })
  826. const limitNumber = function (e: any, obj: any, key: string) {
  827. if (e) {
  828. obj[key] = Math.round(Number(e))
  829. }
  830. }
  831. const resetFileInput = function () {
  832. const input = document.getElementById('fileInput') as HTMLInputElement
  833. if (input) {
  834. input.value = ''
  835. }
  836. }
  837. const processFile = async function (event: any) {
  838. if (loading.value) {
  839. console.log('重复 change')
  840. // 如果正在上传, 无视重复选择文件动作
  841. resetFileInput()
  842. return
  843. }
  844. const files = event.target.files || event.dataTransfer.files
  845. loading.value = true
  846. Promise.all(
  847. Array.from(files).map((file: any) => {
  848. const fileForm = new FormData()
  849. fileForm.append('file', file)
  850. return request
  851. .post('/Shipping_tracking/uploadStraightFile', fileForm, {
  852. headers: {
  853. 'Content-Type': 'multipart/form-data',
  854. },
  855. })
  856. .then((res) => {
  857. const d = res.data
  858. if (![1, 200].includes(d.result.code)) {
  859. ElMessage.error(d.result?.message?.errmsg || 'error')
  860. } else {
  861. ElMessage.success(file.name + '上传成功')
  862. form.value.files.push({
  863. file_id: d.result.message.media_id || '',
  864. name: file.name,
  865. })
  866. }
  867. })
  868. }),
  869. ).finally(() => {
  870. loading.value = false
  871. // 处理上传完文件, 重置文件输入框内容
  872. resetFileInput()
  873. })
  874. }
  875. const approvalCount = computed(() => {
  876. return form.value.goods.reduce((t, i) => {
  877. t += Number(i.number)
  878. return t
  879. }, 0)
  880. })
  881. const checkForm = function (formEl: FormInstance | undefined) {
  882. if (approvalCount.value <= 0) {
  883. ElNotification({
  884. duration: 0,
  885. type: 'warning',
  886. title: '注意',
  887. message: '总发货数量不能为 0, 请修改发货数量。',
  888. })
  889. return
  890. }
  891. if (!formEl) return
  892. formEl.validate((valid, fields) => {
  893. if (valid) {
  894. form.value.Phone = form.value.Phone.replace(/[^0-9-+]/g, '')
  895. submit()
  896. } else {
  897. ElMessage.error('请检查表单必填项')
  898. }
  899. })
  900. }
  901. const submited = ref(false)
  902. const submit = function () {
  903. // 接口
  904. const d: any = {
  905. creator_userid: form.value.creator_userid,
  906. template_id: '3TmmDAekrafuPCvjxB9TqYwrmk5uj6XGoxseaD1J', // 申请模版 的id
  907. use_template_approver: 1, // 使用此模板在管理后台设置的审批流程
  908. apply_data: {
  909. contents: [
  910. {
  911. control: 'Text',
  912. id: 'Text-1718767851650',
  913. value: {
  914. text: form.value.so_ref,
  915. },
  916. },
  917. {
  918. control: 'Text',
  919. id: 'Text-1718767876049',
  920. value: {
  921. text: form.value.job_name,
  922. },
  923. },
  924. {
  925. control: 'Selector',
  926. id: 'Selector-1718767763003',
  927. value: {
  928. selector: {
  929. type: 'single',
  930. options: [
  931. {
  932. key: form.value.location,
  933. },
  934. ],
  935. },
  936. },
  937. },
  938. {
  939. // 运输方式
  940. control: 'Selector',
  941. id: 'Selector-1718767905142',
  942. value: {
  943. selector: {
  944. type: 'single',
  945. options: [
  946. {
  947. key: form.value.yunshu,
  948. },
  949. ],
  950. },
  951. },
  952. },
  953. {
  954. // 货运
  955. control: 'Selector',
  956. id: 'Selector-1718767971281',
  957. value: {
  958. selector: {
  959. type: 'single',
  960. options: [
  961. {
  962. key: form.value.huoyun,
  963. },
  964. ],
  965. },
  966. },
  967. },
  968. {
  969. // 中转
  970. control: 'Selector',
  971. id: 'Selector-1718768200256',
  972. value: {
  973. selector: {
  974. type: 'single',
  975. options: [
  976. {
  977. key: form.value.trans,
  978. },
  979. ],
  980. },
  981. },
  982. },
  983. {
  984. control: 'Number',
  985. id: 'Number-1718768439507',
  986. value: {
  987. new_number: form.value.number,
  988. },
  989. },
  990. {
  991. control: 'Number',
  992. id: 'Number-1718768458174',
  993. value: {
  994. new_number: form.value.weight,
  995. },
  996. },
  997. {
  998. // 地址
  999. control: 'Textarea',
  1000. id: 'Textarea-1718769752197',
  1001. value: {
  1002. text: (
  1003. (form.value.ATTN ? `ATTN ${form.value.ATTN}; ` : '') +
  1004. (form.value.Phone ? `Phone ${form.value.Phone}` : '') +
  1005. '\n' +
  1006. form.value.Shipping_Unit_Building_Name +
  1007. ', ' +
  1008. form.value.Shipping_Street +
  1009. ', ' +
  1010. form.value.Shipping_City +
  1011. ', ' +
  1012. form.value.Shipping_State +
  1013. ', ' +
  1014. form.value.Shipping_Code +
  1015. ', ' +
  1016. form.value.Shipping_Country
  1017. )
  1018. .trim()
  1019. .replace('null', ''),
  1020. },
  1021. },
  1022. {
  1023. // 装箱备注
  1024. control: 'Textarea',
  1025. id: 'Textarea-1718769807829',
  1026. value: {
  1027. text: form.value.comment,
  1028. },
  1029. },
  1030. ] as any[],
  1031. },
  1032. summary_list: [
  1033. {
  1034. summary_info: [
  1035. {
  1036. text: locationList.filter((i) => i.key === form.value.location)[0]
  1037. .value[0].text,
  1038. lang: 'zh_CN',
  1039. },
  1040. ],
  1041. },
  1042. {
  1043. summary_info: [
  1044. {
  1045. text: form.value.so_ref,
  1046. lang: 'zh_CN',
  1047. },
  1048. ],
  1049. },
  1050. {
  1051. summary_info: [
  1052. {
  1053. text: form.value.job_name,
  1054. lang: 'zh_CN',
  1055. },
  1056. ],
  1057. },
  1058. ],
  1059. }
  1060. if (form.value.yunshu === 'option-1718767952637') {
  1061. d.apply_data.contents.push({
  1062. control: 'Number',
  1063. id: 'Number-1718768530132',
  1064. value: {
  1065. new_number: form.value.cbm,
  1066. },
  1067. })
  1068. }
  1069. if (form.value.huoyun === 'option-1718768018003') {
  1070. d.apply_data.contents.push({
  1071. control: 'Selector',
  1072. id: 'Selector-1718768061055',
  1073. value: {
  1074. selector: {
  1075. type: 'single',
  1076. options: [
  1077. {
  1078. key: form.value.huodai,
  1079. },
  1080. ],
  1081. },
  1082. },
  1083. })
  1084. }
  1085. if (form.value.price.length) {
  1086. // 价格数据
  1087. d.apply_data.contents.push({
  1088. control: 'Table',
  1089. id: 'Table-1718768730236',
  1090. value: {
  1091. children: form.value.price.map((p) => {
  1092. return {
  1093. list: [
  1094. {
  1095. control: 'Text',
  1096. id: 'Text-1718769352473',
  1097. value: {
  1098. text: p.pa,
  1099. },
  1100. },
  1101. {
  1102. control: 'Text',
  1103. id: 'Text-1718769658148',
  1104. value: {
  1105. text: p.pb,
  1106. },
  1107. },
  1108. ],
  1109. }
  1110. }),
  1111. },
  1112. })
  1113. }
  1114. if (form.value.goods.length) {
  1115. // 货物数据
  1116. d.apply_data.contents.push({
  1117. control: 'Table',
  1118. id: 'Table-1718950612643',
  1119. value: {
  1120. children: form.value.goods
  1121. .filter((g) => g.number > 0)
  1122. .map((g) => {
  1123. if (g.number > g.quantity) {
  1124. setTimeout(() => {
  1125. ElNotification({
  1126. duration: 0,
  1127. type: 'warning',
  1128. title: '注意',
  1129. message: `${g.name} 发货数量${g.number}大于可发货数量${g.quantity}`,
  1130. })
  1131. }, 0)
  1132. }
  1133. return {
  1134. list: [
  1135. {
  1136. control: 'Text',
  1137. id: 'Text-1718950641228',
  1138. value: {
  1139. text: g.name,
  1140. },
  1141. },
  1142. {
  1143. control: 'Textarea',
  1144. id: 'Textarea-1718950654801',
  1145. value: {
  1146. text: g.desc,
  1147. },
  1148. },
  1149. {
  1150. control: 'Number',
  1151. id: 'Number-1718950666260',
  1152. value: {
  1153. new_number: g.number,
  1154. },
  1155. },
  1156. ],
  1157. }
  1158. }),
  1159. },
  1160. })
  1161. }
  1162. if (form.value.files.length) {
  1163. // 附件
  1164. d.apply_data.contents.push({
  1165. control: 'File',
  1166. id: 'File-1718769828663',
  1167. value: {
  1168. files: form.value.files.map((i) => {
  1169. return { file_id: i.file_id }
  1170. }),
  1171. },
  1172. })
  1173. }
  1174. d.sales_order_detail = soData.value
  1175. d.origin_form = form.value
  1176. console.log(d, 'form data')
  1177. loading.value = true
  1178. submited.value = true
  1179. request
  1180. .post('/Shipping_tracking/createShippingTracking', d)
  1181. .then((res) => {
  1182. const d = res.data
  1183. console.log(d, 'create approval')
  1184. if (d.result.code === 200 && d.code === 1) {
  1185. ElNotification({
  1186. duration: 0,
  1187. type: 'success',
  1188. title: '任务已成功处理',
  1189. message: '本页面将自动跳转CRM',
  1190. })
  1191. setTimeout(() => {
  1192. redirectToCRM()
  1193. }, 3500)
  1194. } else {
  1195. ElNotification({
  1196. duration: 0,
  1197. type: 'error',
  1198. title: '创建审核单出错!请联系管理员',
  1199. message: d.result.message?.errmsg || d.msg || '',
  1200. })
  1201. }
  1202. })
  1203. .finally(() => {
  1204. loading.value = false
  1205. })
  1206. }
  1207. const redirectToCRM = () => {
  1208. window.location.replace(import.meta.env.VITE_CRM_PATH)
  1209. }
  1210. const getLogoPath = function () {
  1211. return new URL('/assets/logo@2x.png', import.meta.url).href
  1212. }
  1213. </script>
  1214. <style lang="scss">
  1215. input[type='number'] {
  1216. -moz-appearance: textfield;
  1217. appearance: textfield;
  1218. &:hover {
  1219. -moz-appearance: textfield;
  1220. appearance: textfield;
  1221. &::-webkit-inner-spin-button,
  1222. &::-webkit-outer-spin-button {
  1223. -webkit-appearance: none;
  1224. margin: 0;
  1225. }
  1226. }
  1227. &::-webkit-inner-spin-button,
  1228. &::-webkit-outer-spin-button {
  1229. -webkit-appearance: none;
  1230. margin: 0;
  1231. }
  1232. }
  1233. </style>
  1234. <style lang="scss" scoped>
  1235. .main-content {
  1236. background-color: #fff;
  1237. padding: 12px 40px 12px;
  1238. width: 1000px;
  1239. min-width: 1000px;
  1240. min-height: 100vh;
  1241. margin: 0 auto;
  1242. box-shadow:
  1243. 0 0 0 1px rgba(255, 255, 255, 0.4) inset,
  1244. 0 0.5em 1em rgba(0, 0, 0, 0.6);
  1245. }
  1246. .logo-area {
  1247. padding: 12px 0 12px;
  1248. img {
  1249. position: relative;
  1250. left: -16px;
  1251. height: 60px;
  1252. }
  1253. }
  1254. .page-title {
  1255. font-size: 24px;
  1256. font-weight: 500;
  1257. color: #222;
  1258. }
  1259. .copyright {
  1260. position: absoloute;
  1261. text-align: right;
  1262. color: #ccc;
  1263. font-size: 14px;
  1264. line-height: 16px;
  1265. right: 16px;
  1266. }
  1267. .addr-input-group {
  1268. width: 100%;
  1269. :deep(.el-input__wrapper),
  1270. :deep(textarea) {
  1271. border-top-right-radius: 0;
  1272. border-bottom-right-radius: 0;
  1273. min-height: 34px !important;
  1274. }
  1275. .el-input,
  1276. .el-textarea {
  1277. margin-bottom: 10px;
  1278. &:last-of-type {
  1279. margin-bottom: 0;
  1280. }
  1281. }
  1282. .addr-append {
  1283. box-sizing: border-box;
  1284. border-top-right-radius: 4px;
  1285. border-bottom-right-radius: 4px;
  1286. border: 1px solid #dfdfdf;
  1287. border-left: none;
  1288. margin-bottom: 10px;
  1289. $width: 140px;
  1290. width: $width;
  1291. max-width: $width;
  1292. min-width: $width;
  1293. color: rgb(144, 147, 153);
  1294. background-color: rgb(245, 247, 250);
  1295. box-shadow:
  1296. 0 1px 0 0 var(--el-input-border-color) inset,
  1297. 0 -1px 0 0 var(--el-input-border-color) inset,
  1298. -1px 0 0 0 var(--el-input-border-color) inset;
  1299. display: flex;
  1300. align-items: center;
  1301. justify-content: center;
  1302. }
  1303. }
  1304. </style>