|
@@ -1,362 +0,0 @@
|
|
|
-<template>
|
|
|
- <el-form
|
|
|
- ref="ruleForm"
|
|
|
- :loading="loading"
|
|
|
- :model="ruleForm"
|
|
|
- status-icon
|
|
|
- :rules="rulesThis"
|
|
|
- label-width="100px"
|
|
|
- style="width: 100%"
|
|
|
- class="demo-ruleForm"
|
|
|
- >
|
|
|
- <el-row>
|
|
|
- <el-row>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="是否同意" prop="whether_back">
|
|
|
- <el-select
|
|
|
- style="width: 100%"
|
|
|
- v-model="ruleForm.whether_back"
|
|
|
- placeholder="请选择是否同意退回"
|
|
|
- @change="handleView"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in whether_back_options"
|
|
|
- :key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="反馈备注" prop="feedback_remark">
|
|
|
- <el-input
|
|
|
- type="textarea"
|
|
|
- placeholder="请输入反馈备注"
|
|
|
- v-model="ruleForm.feedback_remark"
|
|
|
- maxlength="250"
|
|
|
- show-word-limit
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row v-if="ruleForm.whether_back === 'value1'">
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="退回地址" prop="return_goods_addr">
|
|
|
- <select-area
|
|
|
- :placeholder="'请选择省/市/区'"
|
|
|
- :value="ruleForm.return_goods_addr"
|
|
|
- :is-detail="id !== 'add'"
|
|
|
- @selectChange="selectAreaAddr_code"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="详细地址" prop="addr_detail">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.addr_detail"
|
|
|
- placeholder="请输入退货详细地址"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="收件人" prop="addressee">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.addressee"
|
|
|
- placeholder="请输入收件人"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="收件人电话" prop="addressee_phone">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.addressee_phone"
|
|
|
- placeholder="请输入收件人电话"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="物流要求" prop="express_require">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.express_require"
|
|
|
- placeholder="请输入物流"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-col :span="24" style="text-align: right">
|
|
|
- <el-button type="primary" @click="submitForm" v-if="true"
|
|
|
- >保 存</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="statusConfirm('1', '发起审核流程')"
|
|
|
- v-if="status === '0' && powers.some((item) => item == '012')"
|
|
|
- >发起审核流程
|
|
|
- </el-button>
|
|
|
- <el-button
|
|
|
- @click="statusConfirm('0', '取消审核流程')"
|
|
|
- plain
|
|
|
- v-if="status === '1' && powers.some((item) => item == '014')"
|
|
|
- >取消审核流程</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- @click="statusConfirm('-1', '作废该条信息')"
|
|
|
- type="danger"
|
|
|
- plain
|
|
|
- v-if="
|
|
|
- (status === '0' || status === '1') &&
|
|
|
- powers.some((item) => item == '015')
|
|
|
- "
|
|
|
- >作废该条信息</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- @click="statusConfirm('2', '通过审核')"
|
|
|
- type="primary"
|
|
|
- v-if="status === '1' && powers.some((item) => item == '016')"
|
|
|
- >通过审核</el-button
|
|
|
- >
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
-</template>
|
|
|
-<script>
|
|
|
-import { isMobile } from "@/utils/validate.js";
|
|
|
-import asyncRequest from "@/apis/service/sellOut/sellAfterApply";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
-export default {
|
|
|
- name: "sellAfterApplyDetail",
|
|
|
- props: ["id", "showModelThis", "newTime"],
|
|
|
- mixins: [resToken],
|
|
|
- data() {
|
|
|
- const validatemobile = (rule, value, callback) => {
|
|
|
- if (value === "") {
|
|
|
- callback(new Error("手机号不能为空!"));
|
|
|
- } else {
|
|
|
- if (!isMobile(value)) {
|
|
|
- callback(new Error("手机号格式不正确!"));
|
|
|
- } else {
|
|
|
- callback();
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- return {
|
|
|
- loading: false,
|
|
|
- status: "", //存储详情接口返的状态
|
|
|
- showModelThis: this.showModel,
|
|
|
- ruleForm: {
|
|
|
- whether_back: "", //是否同意退回
|
|
|
- feedback_remark: "", //反馈备注
|
|
|
- return_goods_addr: [], //退货地址
|
|
|
- addr_detail: "", //退货详细地址
|
|
|
- addressee: "", //收件人
|
|
|
- addressee_phone: "", //收件人电话
|
|
|
- express_require: "", //物流要求
|
|
|
- },
|
|
|
- rulesThis: this.rules,
|
|
|
- // 验证规则
|
|
|
- rules: {
|
|
|
- whether_back: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- trigger: "change",
|
|
|
- message: "请选择是否同意退回",
|
|
|
- },
|
|
|
- ],
|
|
|
- feedback_remark: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入反馈备注",
|
|
|
- trigger: "blur",
|
|
|
- },
|
|
|
- ],
|
|
|
- return_goods_addr: [
|
|
|
- {
|
|
|
- type: "array",
|
|
|
- required: true,
|
|
|
- message: "请选择退回地址所在省/市/区",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
- ],
|
|
|
- addr_detail: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入详细退货地址",
|
|
|
- trigger: "blur",
|
|
|
- },
|
|
|
- ],
|
|
|
- addressee: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入收件人",
|
|
|
- trigger: "blur",
|
|
|
- },
|
|
|
- ],
|
|
|
- addressee_phone: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- trigger: "blur",
|
|
|
- validator: validatemobile,
|
|
|
- },
|
|
|
- ],
|
|
|
- express_require: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- trigger: "blur",
|
|
|
- message: "请输入物流信息",
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- whether_back_options: [
|
|
|
- {
|
|
|
- value: "value1",
|
|
|
- label: "同意退回",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "value2",
|
|
|
- label: "拒绝退回",
|
|
|
- },
|
|
|
- ],
|
|
|
- };
|
|
|
- },
|
|
|
- computed: {
|
|
|
- powers() {
|
|
|
- let tran =
|
|
|
- this.$store.getters.btnList.find(
|
|
|
- (item) => item.menu_route == "sellAfterApplyDetail"
|
|
|
- ) || {};
|
|
|
- if (tran && tran.action && tran.action.length > 0) {
|
|
|
- return tran.action;
|
|
|
- } else {
|
|
|
- return [];
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- this.initForm();
|
|
|
- },
|
|
|
- watch: {
|
|
|
- id: function (val) {
|
|
|
- if (val) {
|
|
|
- this.initForm();
|
|
|
- }
|
|
|
- },
|
|
|
- newTime: function (val) {
|
|
|
- if (val) {
|
|
|
- this.initForm();
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
- methods: {
|
|
|
- closeAdd() {
|
|
|
- this.showModelThis = false;
|
|
|
- },
|
|
|
- async initForm() {
|
|
|
- this.loading = true;
|
|
|
- if (this.id === "add") {
|
|
|
- this.rulesThis = this.rules;
|
|
|
- await this.resetForm();
|
|
|
- } else {
|
|
|
- this.rulesThis = this.rules;
|
|
|
- await this.resetForm();
|
|
|
- // await this.initData();
|
|
|
- }
|
|
|
- this.loading = false;
|
|
|
- },
|
|
|
- // async initData() {
|
|
|
- // const res = await asyncRequest.detail({ id: this.id });
|
|
|
- // if (res && res.code === 0 && res.data) {
|
|
|
- // let { hand_name, resign_name, hand_uid, resign_uid, status } = res.data;
|
|
|
- // this.resign_name = resign_name;
|
|
|
- // this.hand_name = hand_name;
|
|
|
- // this.status = status;
|
|
|
- // this.ruleForm = {
|
|
|
- // hand_uid: hand_uid.split(","),
|
|
|
- // resign_uid: resign_uid.split(","),
|
|
|
- // };
|
|
|
- // } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- // await this.logout();
|
|
|
- // } else {
|
|
|
- // this.$message.warning(res.message);
|
|
|
- // }
|
|
|
- // },
|
|
|
-
|
|
|
- async resetForm() {
|
|
|
- // 重置
|
|
|
- await this.$nextTick(() => {
|
|
|
- if (this.$refs.ruleForm) {
|
|
|
- this.$refs.ruleForm.resetFields();
|
|
|
- this.$refs.ruleForm.clearValidate();
|
|
|
- this.ruleForm = {
|
|
|
- whether_back: "", //是否同意退回
|
|
|
- feedback_remark: "", //反馈备注
|
|
|
- return_goods_addr: [], //退货地址
|
|
|
- addr_detail: "", //退货详细地址
|
|
|
- addressee: "", //收件人
|
|
|
- addressee_phone: "", //收件人电话
|
|
|
- express_require: "", //物流要求
|
|
|
- };
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- async submitForm() {
|
|
|
- await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
- // if (valid) {
|
|
|
- // const { resign_uid, hand_uid } = this.ruleForm;
|
|
|
- // let rUid = resign_uid.toString(),
|
|
|
- // hUid = hand_uid.toString();
|
|
|
- // if (rUid === hUid) {
|
|
|
- // this.$message.error("离职人和接收人不能相同");
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // this.loading = true;
|
|
|
- // const model = {
|
|
|
- // id: this.id,
|
|
|
- // resign_uid: rUid,
|
|
|
- // hand_uid: hUid,
|
|
|
- // };
|
|
|
- // let res = {};
|
|
|
- // if (this.id === "add") {
|
|
|
- // delete model["id"];
|
|
|
- // res = await asyncRequest.add(model);
|
|
|
- // } else {
|
|
|
- // res = await asyncRequest.update(model);
|
|
|
- // }
|
|
|
- // this.loading = false;
|
|
|
- // if (res && res.code === 0) {
|
|
|
- // const title = this.id === "add" ? "添加成功!" : "修改成功!";
|
|
|
- // this.$notify.success({
|
|
|
- // title,
|
|
|
- // message: "",
|
|
|
- // });
|
|
|
- // if (this.id === "add") {
|
|
|
- // this.showModelThis = false;
|
|
|
- // this.$emit("refresh", false);
|
|
|
- // } else {
|
|
|
- // this.initForm();
|
|
|
- // }
|
|
|
- // } 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;
|
|
|
- // }
|
|
|
- });
|
|
|
- },
|
|
|
- handleView(e) {
|
|
|
- this.ruleForm.whether_back = e;
|
|
|
- this.$refs.ruleForm.validateField("return_goods_addr");
|
|
|
- },
|
|
|
- //退货省市区
|
|
|
- selectAreaAddr_code(e) {
|
|
|
- this.ruleForm.return_goods_addr = e;
|
|
|
- this.$refs.ruleForm.validateField("return_goods_addr");
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
-</script>
|