|
@@ -43,9 +43,9 @@
|
|
|
</el-row>
|
|
|
<el-row v-if="ruleForm.whether_back === 'value1'">
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="退回地址" prop="return_goods_addr">
|
|
|
+ <el-form-item label="地址省/市/区" prop="return_goods_addr">
|
|
|
<select-area
|
|
|
- :placeholder="'请选择省/市/区'"
|
|
|
+ :placeholder="'省/市/区'"
|
|
|
:value="ruleForm.return_goods_addr"
|
|
|
:is-detail="id !== 'add'"
|
|
|
@selectChange="selectAreaAddr_code"
|
|
@@ -56,7 +56,7 @@
|
|
|
<el-form-item label="详细地址" prop="addr_detail">
|
|
|
<el-input
|
|
|
v-model="ruleForm.addr_detail"
|
|
|
- placeholder="请输入退货详细地址"
|
|
|
+ placeholder="详细地址"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -64,7 +64,7 @@
|
|
|
<el-form-item label="收件人" prop="addressee">
|
|
|
<el-input
|
|
|
v-model="ruleForm.addressee"
|
|
|
- placeholder="请输入收件人"
|
|
|
+ placeholder="收件人"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -72,7 +72,7 @@
|
|
|
<el-form-item label="收件人电话" prop="addressee_phone">
|
|
|
<el-input
|
|
|
v-model="ruleForm.addressee_phone"
|
|
|
- placeholder="请输入收件人电话"
|
|
|
+ placeholder="收件人电话"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -90,41 +90,13 @@
|
|
|
<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 { isMobile } from "@/utils/validate";
|
|
|
+import asyncRequest from "@/apis/service/sheetOrder/zxAfterSale";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
export default {
|
|
|
name: "supplier_feedback",
|
|
@@ -324,7 +296,6 @@ export default {
|
|
|
// } else {
|
|
|
// res = await asyncRequest.update(model);
|
|
|
// }
|
|
|
-
|
|
|
// this.loading = false;
|
|
|
// if (res && res.code === 0) {
|
|
|
// const title = this.id === "add" ? "添加成功!" : "修改成功!";
|
|
@@ -332,7 +303,6 @@ export default {
|
|
|
// title,
|
|
|
// message: "",
|
|
|
// });
|
|
|
-
|
|
|
// if (this.id === "add") {
|
|
|
// this.showModelThis = false;
|
|
|
// this.$emit("refresh", false);
|