express.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <el-form
  3. :model="ruleForm"
  4. :rules="rules"
  5. ref="ruleForm"
  6. :size="'mini'"
  7. label-width="90px"
  8. >
  9. <el-row>
  10. <el-col :span="8">
  11. <el-form-item label="物流公司" prop="post_name">
  12. <search-express
  13. :value="ruleForm.post_name"
  14. :placeholder="'请输入物流公司'"
  15. :names="''"
  16. :size="'mini'"
  17. :order_source="''"
  18. :is-detail="!(status == '2' && ppowers.some((i) => i == '2'))"
  19. @searchChange="handleCompany"
  20. />
  21. </el-form-item>
  22. <el-form-item label="物流费用" prop="post_fee">
  23. <digital-input
  24. :values="ruleForm.post_fee"
  25. :placeholder="'物流费用'"
  26. :min="0"
  27. :max="100000000000"
  28. :position="'right'"
  29. :precision="2"
  30. :size="'mini'"
  31. :controls="false"
  32. :append="'元'"
  33. @reschange="number_change($event, 'post_fee')"
  34. />
  35. </el-form-item>
  36. <el-form-item label="物流单号" prop="post_code">
  37. <div>
  38. <el-alert title="多物流单号请用逗号','隔开" type="warning" :closable="false">
  39. </el-alert>
  40. </div>
  41. <el-input
  42. placeholder="请输入物流单号"
  43. maxlength="100"
  44. :size="'mini'"
  45. v-model="ruleForm.post_code"
  46. clearable
  47. >
  48. </el-input>
  49. </el-form-item>
  50. <el-form-item>
  51. <el-button
  52. type="primary"
  53. class="fr"
  54. :size="'mini'"
  55. @click="submitForm"
  56. :loading="loading"
  57. >保 存
  58. </el-button>
  59. </el-form-item>
  60. </el-col>
  61. </el-row>
  62. </el-form>
  63. </template>
  64. <script>
  65. import resToken from "@/mixins/resToken";
  66. import asyncRequest from "@/apis/service/sellOut/deliveryWorkOrder";
  67. import { isAlphanumeric } from "@/utils/validate";
  68. export default {
  69. name: "allotFlow",
  70. mixins: [resToken],
  71. props: ["id", "sitem"],
  72. computed: {
  73. powers() {
  74. const tran =
  75. this.$store.getters.btnList.find((i) => i.menu_route == "allotDetail") || {};
  76. const { action } = tran ?? {};
  77. return action ?? [];
  78. },
  79. ppowers() {
  80. const tran =
  81. this.$store.getters.roleProcess.find((i) => i.process_type === "DBD") || {};
  82. const { action } = tran ?? {};
  83. return action ?? [];
  84. },
  85. },
  86. data() {
  87. const validateExpressSn = (rule, value, callback) => {
  88. if (value === "") {
  89. callback(new Error("物流单号不能为空!"));
  90. } else {
  91. if (!isAlphanumeric(value)) {
  92. callback(new Error("请输入正确的物流单号"));
  93. } else {
  94. callback();
  95. }
  96. }
  97. };
  98. const validate_post_fee = (rule, value, callback) => {
  99. const { required } = rule;
  100. if (required && value === "") {
  101. callback(new Error("不能为空!"));
  102. } else {
  103. callback();
  104. }
  105. };
  106. return {
  107. status: "",
  108. ruleForm: {
  109. post_name: [], //发货物流公司
  110. post_code: "", //物流单号
  111. post_fee: "",
  112. },
  113. rules: {
  114. post_name: [
  115. {
  116. // type: "array",
  117. // required: true,
  118. message: "请选择发货公司",
  119. trigger: "change",
  120. },
  121. ],
  122. post_fee: [
  123. {
  124. // required: true,
  125. // validator: validate_post_fee,
  126. trigger: "blur",
  127. },
  128. ],
  129. post_code: [
  130. {
  131. // required: true,
  132. trigger: "blur",
  133. // validator: validateExpressSn,s
  134. },
  135. ],
  136. },
  137. };
  138. },
  139. methods: {
  140. async number_change(e, key) {
  141. this.ruleForm[key] = e + "" || "0";
  142. this.$refs.ruleForm.validateField(key);
  143. },
  144. getComma(str){
  145. const isHasComma = str.indexOf(',') !== -1
  146. const isHasEComma = str.indexOf(',') !== -1
  147. const commas = []
  148. if(isHasComma) commas.push(',')
  149. if(isHasEComma) commas.push(',')
  150. return {
  151. isHasComma: isHasComma || isHasEComma,
  152. commas
  153. }
  154. },
  155. // 商品保存提交
  156. async submitForm() {
  157. await this.$refs.ruleForm.validate(async (valid) => {
  158. if (valid) {
  159. if (this.loading) {
  160. return;
  161. }
  162. this.loading = true;
  163. let model = JSON.parse(JSON.stringify(this.ruleForm));
  164. const { post_code } = model;
  165. const { isHasComma, commas } = this.getComma(post_code)
  166. if(isHasComma){
  167. let postCodeChunks;
  168. postCodeChunks = post_code.split(commas[0])
  169. if(commas[1]) postCodeChunks.forEach()
  170. }
  171. model.outChildCode = this.sitem.outChildCode;
  172. model.post_name = model.post_name.toString();
  173. let res = await asyncRequest.express({list:[model]});
  174. this.loading = false;
  175. if (res && res.code === 0) {
  176. //
  177. this.showModelThis = false;
  178. // 刷新
  179. this.$emit("refresh");
  180. } else if (res && res.code >= 100 && res.code <= 104) {
  181. await this.logout();
  182. } else {
  183. this.$message.warning(res.message);
  184. }
  185. } else {
  186. console.log("error submit!!");
  187. return false;
  188. }
  189. });
  190. },
  191. handleCompany(e) {
  192. this.ruleForm.post_name = e && e.code ? [e.label] : [];
  193. this.$refs.ruleForm.validateField("post_name");
  194. },
  195. },
  196. };
  197. </script>