123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <el-form
- :model="ruleForm"
- :rules="rules"
- ref="ruleForm"
- :size="'mini'"
- label-width="90px"
- >
- <el-row>
- <el-col :span="8">
- <el-form-item label="物流公司" prop="post_name">
- <search-express
- :value="ruleForm.post_name"
- :placeholder="'请输入物流公司'"
- :names="''"
- :size="'mini'"
- :order_source="''"
- :is-detail="!(status == '2' && ppowers.some((i) => i == '2'))"
- @searchChange="handleCompany"
- />
- </el-form-item>
- <el-form-item label="物流费用" prop="post_fee">
- <digital-input
- :values="ruleForm.post_fee"
- :placeholder="'物流费用'"
- :min="0"
- :max="100000000000"
- :position="'right'"
- :precision="2"
- :size="'mini'"
- :controls="false"
- :append="'元'"
- @reschange="number_change($event, 'post_fee')"
- />
- </el-form-item>
- <el-form-item label="物流单号" prop="post_code">
- <div>
- <el-alert title="多物流单号请用逗号','隔开" type="warning" :closable="false">
- </el-alert>
- </div>
- <el-input
- placeholder="请输入物流单号"
- maxlength="100"
- :size="'mini'"
- v-model="ruleForm.post_code"
- clearable
- >
- </el-input>
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- class="fr"
- :size="'mini'"
- @click="submitForm"
- :loading="loading"
- >保 存
- </el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </template>
- <script>
- import resToken from "@/mixins/resToken";
- import asyncRequest from "@/apis/service/sellOut/deliveryWorkOrder";
- import { isAlphanumeric } from "@/utils/validate";
- export default {
- name: "allotFlow",
- mixins: [resToken],
- props: ["id", "sitem"],
- computed: {
- powers() {
- const tran =
- this.$store.getters.btnList.find((i) => i.menu_route == "allotDetail") || {};
- const { action } = tran ?? {};
- return action ?? [];
- },
- ppowers() {
- const tran =
- this.$store.getters.roleProcess.find((i) => i.process_type === "DBD") || {};
- const { action } = tran ?? {};
- return action ?? [];
- },
- },
- data() {
- const validateExpressSn = (rule, value, callback) => {
- if (value === "") {
- callback(new Error("物流单号不能为空!"));
- } else {
- if (!isAlphanumeric(value)) {
- callback(new Error("请输入正确的物流单号"));
- } else {
- callback();
- }
- }
- };
- const validate_post_fee = (rule, value, callback) => {
- const { required } = rule;
- if (required && value === "") {
- callback(new Error("不能为空!"));
- } else {
- callback();
- }
- };
- return {
- status: "",
- ruleForm: {
- post_name: [], //发货物流公司
- post_code: "", //物流单号
- post_fee: "",
- },
- rules: {
- post_name: [
- {
- // type: "array",
- // required: true,
- message: "请选择发货公司",
- trigger: "change",
- },
- ],
- post_fee: [
- {
- // required: true,
- // validator: validate_post_fee,
- trigger: "blur",
- },
- ],
- post_code: [
- {
- // required: true,
- trigger: "blur",
- // validator: validateExpressSn,s
- },
- ],
- },
- };
- },
- methods: {
- async number_change(e, key) {
- this.ruleForm[key] = e + "" || "0";
- this.$refs.ruleForm.validateField(key);
- },
- getComma(str){
- const isHasComma = str.indexOf(',') !== -1
- const isHasEComma = str.indexOf(',') !== -1
- const commas = []
- if(isHasComma) commas.push(',')
- if(isHasEComma) commas.push(',')
- return {
- isHasComma: isHasComma || isHasEComma,
- commas
- }
- },
- // 商品保存提交
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- if (this.loading) {
- return;
- }
- this.loading = true;
- let model = JSON.parse(JSON.stringify(this.ruleForm));
- const { post_code } = model;
- const { isHasComma, commas } = this.getComma(post_code)
- if(isHasComma){
- let postCodeChunks;
- postCodeChunks = post_code.split(commas[0])
- if(commas[1]) postCodeChunks.forEach()
- }
- model.outChildCode = this.sitem.outChildCode;
- model.post_name = model.post_name.toString();
-
- let res = await asyncRequest.express({list:[model]});
- this.loading = false;
-
- if (res && res.code === 0) {
- //
- this.showModelThis = false;
- // 刷新
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- } else {
- console.log("error submit!!");
- return false;
- }
- });
- },
- handleCompany(e) {
- this.ruleForm.post_name = e && e.code ? [e.label] : [];
- this.$refs.ruleForm.validateField("post_name");
- },
- },
- };
- </script>
|