123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- <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-col :span="12">
- <el-form-item label="退回仓库" prop="return_store">
- <el-select
- style="width: 100%"
- v-model="ruleForm.return_value"
- placeholder="请选择退回仓库"
- @change="handleStore"
- >
- <el-option
- v-for="item in return_store_options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-row>
- <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-row>
- <el-col :span="24" style="text-align: right">
- <el-button type="primary" @click="submitForm" v-if="true"
- >保 存</el-button
- >
- <!-- id === 'add' ||
- (status === '0' && powers.some((item) => item == '005')) -->
- <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";
- import { isnumber } from "@/utils/validate.js";
- export default {
- name: "purchase_check",
- 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,
- resign_name: "", //离职人
- hand_name: "", //交接人
- ruleForm: {
- return_store: "", //退回仓库
- return_goods_addr: [], //退货地址
- addr_detail: "", //退货详细地址
- addressee: "", //收件人
- addressee_phone: "", //收件人电话
- express_require: "", //物流要求
- },
- rulesThis: this.rules,
- // 验证规则
- rules: {
- return_store: [
- {
- required: true,
- trigger: "change",
- message: "请选择退回仓库",
- },
- ],
- addressee: [
- {
- 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: "请输入物流信息",
- },
- ],
- },
- return_store_options: [
- {
- value: "value1",
- label: "供应商仓库",
- return_goods_addr: ["110000", "110100", "110101"],
- addr_detail: "三河道",
- addressee: "张三",
- addressee_phone: "13223223230",
- },
- {
- value: "value2",
- label: "自建仓/部门仓1",
- },
- {
- value: "value3",
- label: "自建仓/部门仓2",
- },
- {
- value: "value4",
- label: "自建仓/部门仓3",
- },
- ],
- return_value: "", //退回仓库
- };
- },
- computed: {
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "purchase_check"
- ) || {};
- 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: {
- // 关闭弹窗,直接隐藏表单
- // async closeAddEdit() {
- // this.$emit("closeModel", false); //抛出一个事件,关闭弹窗
- //
- // },
- closeAdd() {
- this.showModelThis = false;
- },
- async initForm() {
- this.loading = true;
- if (this.id === "add") {
- this.status = "";
- this.rulesThis = this.rules;
- await this.resetForm();
- } else {
- this.rulesThis = this.rules;
- await this.resetForm();
- // await this.initData();
- }
- this.loading = false;
- },
- async resetForm() {
- this.resign_name = "";
- this.hand_name = "";
- this.status = "";
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.ruleForm) {
- this.$refs.ruleForm.resetFields();
- this.$refs.ruleForm.clearValidate();
- this.ruleForm = {
- return_store: "", //退回仓库
- return_goods_addr: [], //退货地址
- addr_detail: "", //退货详细地址
- addressee: "", //收件人
- addressee_phone: "", //收件人电话
- express_require: "", //物流要求
- };
- }
- });
- },
- async submitForm() {
- await this.$refs.ruleForm.validate(async (valid) => {
- if (valid) {
- 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;
- }
- });
- },
- handleStore(e) {
- this.return_store_options.find((item) => {
- if (item.value === e) {
- this.ruleForm.return_goods_addr = item.return_goods_addr;
- this.ruleForm.addr_detail = item.addr_detail;
- this.ruleForm.addressee = item.addressee;
- this.ruleForm.addressee_phone = item.addressee_phone;
- this.$refs.ruleForm.validateField("addressee");
- this.$refs.ruleForm.validateField("return_goods_addr");
- this.$refs.ruleForm.validateField("addr_detail");
- this.$refs.ruleForm.validateField("addressee_phone");
- }
- });
- this.ruleForm.return_store = e;
- },
- //退货省市区
- selectAreaAddr_code(e) {
- console.log(e);
- this.ruleForm.return_goods_addr = e;
- console.log(this.ruleForm);
- this.$refs.ruleForm.validateField("return_goods_addr");
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|