addEditFormA.vue 13 KB

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