|
@@ -24,8 +24,13 @@
|
|
|
label="是否完成"
|
|
|
align="center"
|
|
|
width="150px"
|
|
|
- prop="isFinish"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template #default="scope">
|
|
|
+ <el-text :type="scope.row.isFinish ? 'success' : 'danger'">
|
|
|
+ {{ scope.row.isFinish ? '已完成' : '未完成' }}
|
|
|
+ </el-text>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
label="需求内容"
|
|
|
align="center"
|
|
@@ -67,7 +72,7 @@
|
|
|
<el-dialog
|
|
|
v-model="addDemandShow"
|
|
|
width="35%"
|
|
|
- title="新增客户进度"
|
|
|
+ title="新增客户需求"
|
|
|
>
|
|
|
<el-form label-width="100px">
|
|
|
<el-form-item label="提出时间:">
|
|
@@ -118,7 +123,7 @@
|
|
|
<el-dialog
|
|
|
v-model="editDemandShow"
|
|
|
width="35%"
|
|
|
- title="新增客户进度"
|
|
|
+ title="编辑客户需求"
|
|
|
>
|
|
|
<el-form label-width="100px">
|
|
|
<el-form-item label="提出时间:">
|
|
@@ -162,7 +167,7 @@
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
size="large"
|
|
|
- @click="addDemand"
|
|
|
+ @click="editDemand"
|
|
|
>确定</el-button>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
@@ -173,7 +178,7 @@
|
|
|
import { ref, reactive } from 'vue'
|
|
|
import { useCustomer } from '@/pinia/customer/customer'
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
-import { postUserDemand, delUserDemand } from '@/api/demand'
|
|
|
+import { postUserDemand, delUserDemand, putUserDemand } from '@/api/demand'
|
|
|
defineOptions({
|
|
|
name: 'DemandUnit'
|
|
|
})
|
|
@@ -199,11 +204,12 @@ const addDemand = () => {
|
|
|
return
|
|
|
}
|
|
|
}
|
|
|
+ console.log(addDemandData)
|
|
|
postUserDemand(addDemandData).then(res => {
|
|
|
- console.log(res)
|
|
|
if (res.code === 0) {
|
|
|
ElMessage.success(res.msg)
|
|
|
- customerData.getDemandList(customerData.demandId)
|
|
|
+ customerData.getDemandList(customerData.customerId)
|
|
|
+ addDemandShow.value = false
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -211,18 +217,33 @@ const addDemand = () => {
|
|
|
// 编辑需求
|
|
|
const editDemandShow = ref(false)
|
|
|
const editDemandData = reactive({
|
|
|
+ id: 0,
|
|
|
proposeTime: '',
|
|
|
content: '',
|
|
|
isFinish: false,
|
|
|
customerId: customerData.customerId
|
|
|
})
|
|
|
const demandEdit = (row) => {
|
|
|
- console.log(row)
|
|
|
+ editDemandShow.value = true
|
|
|
+ editDemandData.id = row.ID
|
|
|
+ editDemandData.proposeTime = row.proposeTime
|
|
|
+ editDemandData.isFinish = row.isFinish
|
|
|
+ editDemandData.content = row.content
|
|
|
+}
|
|
|
+
|
|
|
+const editDemand = () => {
|
|
|
+ console.log(editDemandData)
|
|
|
+ putUserDemand(editDemandData).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ ElMessage.success(res.msg)
|
|
|
+ editDemandShow.value = false
|
|
|
+ customerData.getDemandList(customerData.customerId)
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
// 删除需求
|
|
|
const deleteDemand = (row) => {
|
|
|
- console.log(row)
|
|
|
ElMessageBox.confirm(
|
|
|
'确定删除此客户进度吗?',
|
|
|
'删除',
|
|
@@ -236,7 +257,7 @@ const deleteDemand = (row) => {
|
|
|
delUserDemand(row.ID).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
ElMessage.success(res.msg)
|
|
|
- customerData.getProgressList(customerData.customerId)
|
|
|
+ customerData.getDemandList(customerData.customerId)
|
|
|
}
|
|
|
})
|
|
|
})
|