addEditFormA.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. <template>
  2. <el-form
  3. ref="ruleForm"
  4. :loading="loading"
  5. :model="ruleForm"
  6. status-icon
  7. :size="'small'"
  8. :rules="rulesThis"
  9. label-width="80px"
  10. style="width: 100%"
  11. class="demo-ruleForm"
  12. >
  13. <el-row>
  14. <el-col :span="6">
  15. <el-form-item label="收货情况" prop="is_receive">
  16. <el-select
  17. style="width: 100%"
  18. :disabled="disabled"
  19. v-model="ruleForm.is_receive"
  20. @change="is_receive_change"
  21. placeholder="收货情况"
  22. >
  23. <el-option
  24. v-for="item in is_receive_options"
  25. :key="item.value"
  26. :label="item.label"
  27. :value="item.value"
  28. >
  29. </el-option>
  30. </el-select>
  31. </el-form-item>
  32. <el-form-item label="发货总量" prop="send_num" required>
  33. <el-input
  34. disabled
  35. v-model="ruleForm.send_num"
  36. maxlength="10"
  37. placeholder="发货总量"
  38. ></el-input>
  39. </el-form-item>
  40. <el-form-item label="异常数量" prop="num">
  41. <digital-input
  42. :values="ruleForm.num"
  43. :placeholder="'异常数量'"
  44. :min="0"
  45. :disabled="ruleForm.is_receive === '0'"
  46. :max="ruleForm.send_num"
  47. :position="'right'"
  48. :precision="0"
  49. :size="'small'"
  50. :controls="false"
  51. :append="''"
  52. @reschange="number_change($event, 'num')"
  53. />
  54. </el-form-item>
  55. </el-col>
  56. <el-col :span="9">
  57. <el-form-item label="异常原因" prop="errorCode">
  58. <el-select
  59. style="width: 100%"
  60. :disabled="ruleForm.is_receive === ''"
  61. v-model="ruleForm.errorCode"
  62. placeholder="异常原因"
  63. >
  64. <el-option
  65. v-for="item in reason_options"
  66. :key="item.id"
  67. :label="item.result"
  68. :value="item.result_code"
  69. :disabled="item.status == 0"
  70. >
  71. </el-option>
  72. </el-select>
  73. </el-form-item>
  74. </el-col>
  75. <el-col :span="9">
  76. <el-form-item label="期望意愿" prop="except_code">
  77. <el-select
  78. style="width: 100%"
  79. :disabled="ruleForm.is_receive === ''"
  80. v-model="ruleForm.except_code"
  81. placeholder="期望意愿"
  82. >
  83. <el-option
  84. v-for="item in expect_options"
  85. :key="item.value"
  86. :label="item.label"
  87. :value="item.value"
  88. >
  89. </el-option>
  90. </el-select>
  91. </el-form-item>
  92. </el-col>
  93. <el-col :span="18">
  94. <el-form-item label="异常备注" prop="remark">
  95. <el-input
  96. placeholder="异常备注"
  97. v-model="ruleForm.remark"
  98. type="textarea"
  99. :rows="3"
  100. :disabled="disabled"
  101. maxlength="250"
  102. show-word-limit
  103. />
  104. </el-form-item>
  105. </el-col>
  106. <el-col :span="20">
  107. <el-form-item label="异常图片" prop="img">
  108. <div class="el-form-item-error-img">
  109. <ul>
  110. <li
  111. class="images_li"
  112. :style="getMargin_li()"
  113. v-for="(item, index) in ruleForm.img"
  114. :key="item"
  115. >
  116. <img :src="item" alt="" style="width: 50px; height: 50px" />
  117. <i
  118. class="el-icon-close"
  119. v-if="
  120. id === 'add' || (status === '0' && powers.some((i) => i == '005'))
  121. "
  122. @click="imgClose(index)"
  123. ></i>
  124. </li>
  125. </ul>
  126. <div
  127. class="btnupload"
  128. :style="getMargin()"
  129. v-if="ruleForm.img.length < 5 && isShow"
  130. style="position: relative"
  131. @click="show = true"
  132. >
  133. <i class="el-icon-plus avatar-uploader-icon"></i>
  134. <file-upload
  135. class="Upload"
  136. :accept="'.jpg,.png,.jpeg'"
  137. :multiple="true"
  138. :uploadcondition="beforeAvatarUpload"
  139. @UploadErrorEvent="UploadErrorEvent"
  140. @UploadSuccessEvent="UploadSuccessEvent"
  141. />
  142. </div>
  143. </div>
  144. </el-form-item>
  145. </el-col>
  146. <el-col :span="4" style="text-align: right">
  147. <el-button
  148. type="primary"
  149. @click="submitForm"
  150. v-if="id === 'add' || (status === '0' && powers.some((i) => i == '005'))"
  151. >保 存</el-button
  152. >
  153. </el-col>
  154. </el-row>
  155. </el-form>
  156. </template>
  157. <script>
  158. import { isnumber } from "@/utils/validate.js";
  159. import asyncRequest from "@/apis/service/sellOut/sellAfterApply";
  160. import resToken from "@/mixins/resToken";
  161. export default {
  162. name: "handover",
  163. props: ["id", "sitem", "showModelThis", "newTime", "orderCode", "outCode"],
  164. mixins: [resToken],
  165. data() {
  166. const validatenumbers = (rule, value, callback) => {
  167. if (value === "") {
  168. callback(new Error("异常数量不能为空!"));
  169. } else {
  170. if (!isnumber(value)) {
  171. callback(new Error("异常数量必须为数字"));
  172. } else {
  173. callback();
  174. }
  175. }
  176. };
  177. return {
  178. isShow: true,
  179. loading: false,
  180. disabled: true,
  181. status: "", //存储详情接口返的状态
  182. showModelThis: this.showModel,
  183. is_receive_options: [
  184. {
  185. value: "1",
  186. label: "已收到货",
  187. },
  188. {
  189. value: "0",
  190. label: "未收到货",
  191. },
  192. ],
  193. resign_name: "", //离职人
  194. hand_name: "", //交接人
  195. ruleForm: {
  196. is_receive: "",
  197. send_num: "",
  198. order_type: "",
  199. outCode: "", //
  200. stock_out_numbers: "", //发货申请单编号
  201. num: "", //异常数量
  202. errorCode: "", //异常原因
  203. except_code: "", //期望意愿
  204. img: [],
  205. remark: "", //异常备注
  206. },
  207. rulesThis: this.rules,
  208. // 验证规则
  209. rules: {
  210. is_receive: [
  211. {
  212. required: true,
  213. message: "请选择收货情况",
  214. trigger: "change",
  215. },
  216. ],
  217. num: [
  218. {
  219. required: true,
  220. trigger: "blur",
  221. validator: validatenumbers,
  222. },
  223. ],
  224. errorCode: [
  225. {
  226. required: true,
  227. message: "请选择异常原因",
  228. trigger: "change",
  229. },
  230. ],
  231. except_code: [
  232. {
  233. required: true,
  234. message: "请选择期望意愿",
  235. trigger: "change",
  236. },
  237. ],
  238. img: [
  239. {
  240. type: "array",
  241. required: true,
  242. message: "异常图片不能为空!",
  243. trigger: "change",
  244. },
  245. ],
  246. remark: [
  247. {
  248. required: true,
  249. message: "请输入异常备注",
  250. trigger: "blur",
  251. },
  252. ],
  253. },
  254. reason_options: [],
  255. expect_options: [],
  256. expect_options1: [
  257. {
  258. value: "1",
  259. label: "退货",
  260. },
  261. {
  262. value: "2",
  263. label: "换货",
  264. },
  265. ],
  266. expect_options0: [
  267. {
  268. value: "1",
  269. label: "退货",
  270. },
  271. {
  272. value: "2",
  273. label: "补发",
  274. },
  275. ],
  276. expect_value: "", //期望意愿
  277. code: "",
  278. };
  279. },
  280. computed: {
  281. powers() {
  282. const tran =
  283. this.$store.getters.btnList.find((item) => item.menu_route == "handoverDetail") ||
  284. {};
  285. const { action } = tran ?? {};
  286. return action ?? [];
  287. },
  288. },
  289. mounted() {
  290. this.initForm();
  291. },
  292. watch: {
  293. id: function (val) {
  294. if (val) {
  295. this.initForm();
  296. }
  297. },
  298. newTime: function (val) {
  299. if (val) {
  300. this.initForm();
  301. }
  302. },
  303. },
  304. methods: {
  305. closeAdd() {
  306. this.showModelThis = false;
  307. },
  308. async initForm() {
  309. this.loading = true;
  310. this.status = "";
  311. this.rulesThis = this.rules;
  312. this.disabled = false;
  313. await this.resetForm();
  314. this.loading = false;
  315. },
  316. async initData() {
  317. if (this.sitem) {
  318. let { returnCode } = this.sitem;
  319. let model = {
  320. returnCode,
  321. };
  322. const res = await asyncRequest.detail(model);
  323. if (res && res.code === 0 && res.data) {
  324. let {
  325. error_num,
  326. error_img,
  327. error_remark,
  328. except_code,
  329. error_code,
  330. } = console.log(res.data);
  331. this.ruleForm = {
  332. stock_out_numbers: "", //发货申请单编号
  333. num: error_num, //异常数量
  334. errorCode: error_code, //异常原因
  335. except_code: except_code, //期望意愿
  336. img: [error_img],
  337. remark: error_remark, //异常备注
  338. };
  339. } else if (res && res.code >= 100 && res.code <= 104) {
  340. await this.logout();
  341. } else {
  342. this.$message.warning(res.message);
  343. }
  344. }
  345. },
  346. async is_receive_change() {
  347. const { is_receive } = this.ruleForm;
  348. this.ruleForm.errorCode = "";
  349. this.ruleForm.except_code = "";
  350. if (is_receive === "0") {
  351. this.ruleForm.num = this.ruleForm.send_num;
  352. }
  353. this.expect_options = [];
  354. this.reason_options = [];
  355. if (is_receive !== "") {
  356. this.expect_options = JSON.parse(
  357. JSON.stringify(is_receive === "1" ? this.expect_options1 : this.expect_options0)
  358. );
  359. await this.getReason(is_receive === "1" ? "3" : "6"); //获取异常原因
  360. }
  361. },
  362. async number_change(e, key) {
  363. this.ruleForm[key] = e + "" || "0";
  364. this.$refs.ruleForm.validateField(key);
  365. },
  366. async resetForm() {
  367. this.resign_name = "";
  368. this.hand_name = "";
  369. this.status = "";
  370. // 重置
  371. await this.$nextTick(() => {
  372. if (this.$refs.ruleForm) {
  373. this.$refs.ruleForm.resetFields();
  374. this.$refs.ruleForm.clearValidate();
  375. let { send_num } = this.sitem;
  376. this.ruleForm = {
  377. is_receive: "",
  378. send_num: send_num || "",
  379. num: send_num || "", //异常数量
  380. errorCode: "", //异常原因
  381. except_code: "", //期望意愿
  382. img: [],
  383. outCode: this.code,
  384. };
  385. }
  386. });
  387. },
  388. async submitForm() {
  389. await this.$refs.ruleForm.validate(async (valid) => {
  390. if (valid) {
  391. if (this.loading) {
  392. return;
  393. }
  394. this.loading = true;
  395. let model = JSON.parse(JSON.stringify(this.ruleForm));
  396. model.outCode = this.sitem.outCode;
  397. model.img = model.img.toString();
  398. const { code, data, message } = await asyncRequest.add(model);
  399. this.loading = false;
  400. if (code === 0) {
  401. const title = this.id === "add" ? "添加成功!" : "修改成功!";
  402. this.$notify.success({
  403. title,
  404. message: "",
  405. });
  406. this.$emit("refresh", false);
  407. } else if (code >= 100 && code <= 104) {
  408. await this.logout();
  409. } else {
  410. this.$message.warning(message);
  411. }
  412. } else {
  413. console.log("error submit!!");
  414. return false;
  415. }
  416. });
  417. },
  418. // 获取异常原因
  419. async getReason(type) {
  420. let model = {
  421. type: type,
  422. page: 1,
  423. size: 100,
  424. };
  425. const res = await asyncRequest.reasonList(model);
  426. this.loading = false;
  427. if (res && res.code === 0) {
  428. this.reason_options = res.data.list;
  429. } else if (res && res.code >= 100 && res.code <= 104) {
  430. await this.logout();
  431. } else {
  432. this.$message.warning(res.message);
  433. }
  434. },
  435. //图片上传失败
  436. UploadErrorEvent(res) {
  437. if (res !== "break") {
  438. this.$message.error("图片上传失败!");
  439. this.$refs.ruleForm.validateField("img");
  440. }
  441. },
  442. //图片上传成功
  443. async UploadSuccessEvent(data) {
  444. const { url } = data;
  445. if (url === "noToken") {
  446. await this.logout();
  447. } else {
  448. this.ruleForm.img.push(url);
  449. this.$message.success("图片上传成功!");
  450. this.$refs.ruleForm.validateField("img");
  451. }
  452. },
  453. //判断图片规格
  454. beforeAvatarUpload(file) {
  455. let isJPG = false,
  456. isLt2M = false;
  457. if (file) {
  458. if (
  459. file.type === "image/jpg" ||
  460. file.type === "image/png" ||
  461. file.type === "image/jpeg"
  462. ) {
  463. isJPG = true;
  464. }
  465. isLt2M = file.size / 1024 / 1024 < 1;
  466. if (!isJPG) {
  467. this.$message.error("图片格式不正确!");
  468. }
  469. if (!isLt2M) {
  470. this.$message.error("图片大小不能超过 1MB!");
  471. }
  472. }
  473. return isJPG && isLt2M;
  474. },
  475. imgClose(index) {
  476. this.ruleForm.img.splice(index, 1);
  477. this.$refs.ruleForm.validateField("img");
  478. },
  479. getMargin() {
  480. if (this.ruleForm.img.length == 0) {
  481. return "margin:0;";
  482. } else if (this.ruleForm.img.length < 3) {
  483. return "margin:0px 0 0 10px";
  484. } else {
  485. return "margin:10px 0 0 10px";
  486. }
  487. },
  488. getMargin_li() {
  489. if (this.ruleForm.img.length <= 3) {
  490. return "margin:0 0 0 10px";
  491. } else {
  492. return "margin:10px 0 0 10px";
  493. }
  494. },
  495. },
  496. };
  497. </script>
  498. <style lang="scss" scoped>
  499. .el-form-item-error-img {
  500. width: 100%;
  501. ul {
  502. width: 100%;
  503. li {
  504. float: left;
  505. border: 1px solid rgb(220, 223, 230);
  506. // border-left: 0;
  507. box-sizing: border-box;
  508. width: 50px;
  509. height: 50px;
  510. line-height: 50px;
  511. position: relative;
  512. img {
  513. display: inline-block;
  514. width: 100%;
  515. height: 100%;
  516. }
  517. .el-icon-close {
  518. position: absolute;
  519. top: 0;
  520. right: 0;
  521. z-index: 2;
  522. width: 16px;
  523. height: 16px;
  524. text-align: center;
  525. line-height: 16px;
  526. font-size: 13px;
  527. &:hover {
  528. color: #6954f0;
  529. }
  530. }
  531. }
  532. }
  533. }
  534. .images_li {
  535. // width: 50px;
  536. // height: 50px;
  537. float: left;
  538. }
  539. .btnupload {
  540. float: left;
  541. border: 1px solid rgb(220, 223, 230);
  542. // border-left: 0;
  543. box-sizing: border-box;
  544. width: 50px;
  545. height: 50px;
  546. line-height: 50px;
  547. text-align: center;
  548. }
  549. .Upload {
  550. width: 50px;
  551. height: 50px;
  552. line-height: 50px;
  553. text-align: center;
  554. position: absolute;
  555. line-height: 0px;
  556. top: 0;
  557. left: 0;
  558. z-index: 2;
  559. line-height: 50px;
  560. }
  561. .avatar-uploader-icon {
  562. font-size: 33px;
  563. color: #8c939d;
  564. width: 50px;
  565. height: 50px;
  566. line-height: 50px;
  567. text-align: center;
  568. }
  569. </style>