Commit 07e3a6e6 authored by honghy's avatar honghy

需求116 后台-集运-包裹列表-操作-跟进

parent 4dc7f2ef
......@@ -70,11 +70,8 @@ export default {
})
let p = this.specialNeedsList.filter(i => this.advanceType.indexOf(i.advanceType) > -1)
let p1 = []
console.log(111111111111111111111111111111111111)
console.log(this.echoList)
console.log(p)
console.log(this.specialNeedsList)
console.log(111111111111111111111111111111111111)
//获取新增的和修改的
p.forEach(item => {
......
......@@ -282,7 +282,7 @@
<SpecialNeedsCons :showSpecialNeedsCons.sync="showSpecialNeedsCons" :currency="JSON.stringify(currencyList)" :consId="id" :consNum="consNum" @determine="getList"></SpecialNeedsCons>
<SpecialNeedsConsLook :showSpecialNeedsConsLook.sync="showSpecialNeedsConsLook" :consNum="consNum" :consId="id"></SpecialNeedsConsLook>
<fee-application-cons v-if="feeApplicationBol" :consId="id" :currencys="JSON.stringify(currencyList)" :dialog-visible.sync="feeApplicationBol "@refresh="getList"></fee-application-cons>
<ConsFollowupEdit :showConsFollowupEdit.sync="showConsFollowupEdit" :id="id" @determine="getList"></ConsFollowupEdit>
<ConsFollowupEdit :showConsFollowupEdit.sync="showConsFollowupEdit" :consId="id" @determine="getList"></ConsFollowupEdit>
<batch-sign-off :showConsBatchSignOff.sync="showConsBatchSignOff" @determine="getList" :consIds="consIds"></batch-sign-off>
</div>
</template>
......
<template>
<el-dialog :title="cons.consNum+'-'+cons.customerNumber+'-'+$t('跟进记录')" :before-close="()=>{$emit('update:showConsFollowupEdit',false)}"
<el-dialog :title="cons.consNum+'-'+cons.customerNumber+'-'+$t('跟进记录')"
:before-close="()=>{$emit('update:showConsFollowupEdit',false)}"
:visible.sync="showConsFollowupEdit">
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-form-item label="状态" prop="status">
<dict-selector :placeholder="$t('请选择状态')" v-model="form.status"
:type="DICT_TYPE.ECW_CONS_FOLLOWUP_STATUS"></dict-selector>
</el-form-item>
<el-form-item label="跟进内容">
<el-input type="textarea" v-model="form.followContent" :rows="6" />
<el-form-item label="跟进内容" prop="followContent">
<el-input type="textarea" v-model="form.followContent" :rows="3" />
</el-form-item>
<el-form-item label="下次跟进时间" prop="nextFollowTime">
<el-date-picker clearable v-model="form.nextFollowTime" type="date" value-format="yyyy-MM-dd"
placeholder="选择下次跟进时间" />
</el-form-item>
<el-form-item label="下次跟进内容">
<el-input type="textarea" v-model="form.nextFollowContent" :rows="6" />
<el-form-item label="下次跟进内容" prop="nextFollowContent">
<el-input type="textarea" v-model="form.nextFollowContent" :rows="3" />
</el-form-item>
<el-form-item :label="$t('图片')">
......@@ -50,20 +51,24 @@
<el-row>
<el-col :span="12">
<el-form-item label="创建人">
{{form.creatorName}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="创建时间">
{{form.createTime}}
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="最后更新人">
{{form.updaterName}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="最后更新时间">
{{form.updateTime}}
</el-form-item>
</el-col>
</el-row>
......@@ -80,24 +85,31 @@
import imageUpload from "@/components/ImageUpload/index.vue"
import Editor from "@/components/Editor/index.vue"
import { getCons } from "@/api/ecw/cons"
import { listSimpleUsers } from "@/api/system/user"
import { createConsFollowup } from "@/api/ecw/consFollowup"
import { listSimpleUsers } from "@/api/system/user"
import { createConsFollowup, getConsFollowup, updateConsFollowup } from "@/api/ecw/consFollowup"
export default {
name: "consFollowupEdit",
components: { Editor, imageUpload },
props: {
id: Number,
showConsFollowupEdit: Boolean
showConsFollowupEdit: Boolean,
consId: Number
},
data() {
return {
form: {
exceptionUrls: [],
exceptionUrls: []
},
rules: {
status: [
{ required: true, message: "请选择状态", trigger: "blur" }
],
followContent: [
{ max: 500, message: "500max", trigger: "blur" }
],
nextFollowContent: [
{ max: 500, message: "500max", trigger: "blur" }
]
},
cons: {},
......@@ -108,13 +120,25 @@ export default {
submitForm() {
this.$refs.form.validate(validate => {
if (validate) {
this.form.exceptionUrls = this.params.exceptionUrls.length ? this.params.exceptionUrls.split(",") : []
this.form.mediaBusinessType = 2
createConsFollowup(this.form).then(response => {
this.showConsFollowupEdit = false
this.$emit("determine")
this.$modal.msgSuccess("新增成功")
})
if(this.consId) {
var parmas = JSON.parse(JSON.stringify(this.form))
parmas.exceptionUrls = parmas.exceptionUrls.length ? parmas.exceptionUrls.split(",") : []
parmas.mediaBusinessType = 2
createConsFollowup(parmas).then(response => {
this.$emit("update:showConsFollowupEdit", false)
this.$emit("determine")
this.$modal.msgSuccess("新增成功")
})
} else {
var parmas = JSON.parse(JSON.stringify(this.form))
parmas.exceptionUrls = parmas.exceptionUrls.length ? parmas.exceptionUrls.split(",") : []
parmas.mediaBusinessType = 2
updateConsFollowup(parmas).then(response => {
this.$emit("update:showConsFollowupEdit", false)
this.$emit("determine")
this.$modal.msgSuccess("修改成功")
})
}
}
})
}
......@@ -122,15 +146,39 @@ export default {
watch: {
showConsFollowupEdit(val) {
if (val) {
getCons(this.id).then(res => {
this.cons = res.data
})
listSimpleUsers().then((r) => {
this.userServiceList = r.data;
});
this.userServiceList = r.data
})
if (this.consId) {
getCons(this.consId).then(res => {
this.cons = res.data
})
// 获取当前时间精确至[年、月、日、时、分、秒]
var now = new Date()
var year = now.getFullYear()
var month = now.getMonth()
var date = now.getDate()
month = month + 1
month = month.toString().padStart(2, '0')
date = date.toString().padStart(2, '0')
var defaultDate = `${year}-${month}-${date}`
this.$set(this.form, "followTime", defaultDate)
this.$set(this.form, "consId", this.consId)
this.$set(this.form, "followUserId", this.$store.state.user.id)
} else if (this.id) {
getConsFollowup(this.id).then(res => {
var data = res.data
data.exceptionUrls = data.exceptionUrls && data.exceptionUrls.length > 0 ? data.exceptionUrls.join(',') : '';
this.form = data
this.$set(this.form, "status", data.status+'')
this.cons.consNum = data.consNum
this.cons.customerNumber = data.customerNumber
})
}
} else {
this.exceptionUrls = []
this.form = {}
this.form = {
exceptionUrls: []
}
}
}
}
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment