0326-海宁pad走访修改
This commit is contained in:
@@ -422,6 +422,15 @@
|
||||
<el-radio v-for="item in sourceOptions" :key="item.value" :label="item.value">{{ item.label }}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="走访备注">
|
||||
<el-input
|
||||
v-model="feedbackForm.remark"
|
||||
type="textarea"
|
||||
:rows="3"
|
||||
maxlength="200"
|
||||
show-word-limit
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="客户意愿" required>
|
||||
<div class="feedback-groups">
|
||||
<section v-for="type in feedbackTypeOptions" :key="type" class="feedback-group">
|
||||
@@ -541,6 +550,7 @@ export default {
|
||||
feedbackForm: {
|
||||
id: null,
|
||||
source: "",
|
||||
remark: "",
|
||||
feedbackSelections: createEmptyFeedbackSelections()
|
||||
}
|
||||
};
|
||||
@@ -616,6 +626,7 @@ export default {
|
||||
this.feedbackForm = {
|
||||
id: null,
|
||||
source: "",
|
||||
remark: "",
|
||||
feedbackSelections: createEmptyFeedbackSelections()
|
||||
};
|
||||
},
|
||||
@@ -666,6 +677,7 @@ export default {
|
||||
this.feedbackForm = {
|
||||
id: row.id,
|
||||
source: row.source === null || row.source === undefined ? "" : String(row.source),
|
||||
remark: row.remark || "",
|
||||
feedbackSelections: this.parseFeedbackValue(row.intentionProductValue)
|
||||
};
|
||||
this.feedbackDialogVisible = true;
|
||||
@@ -683,6 +695,7 @@ export default {
|
||||
const payload = {
|
||||
id: this.feedbackForm.id,
|
||||
source: this.feedbackForm.source || null,
|
||||
remark: this.feedbackForm.remark || null,
|
||||
feedbackItems
|
||||
};
|
||||
this.feedbackSubmitting = true;
|
||||
|
||||
Reference in New Issue
Block a user