103 lines
2.7 KiB
Vue
103 lines
2.7 KiB
Vue
<template>
|
||
<el-form
|
||
ref="formRef"
|
||
:model="formData"
|
||
:rules="formRules"
|
||
v-loading="formLoading"
|
||
label-width="0px"
|
||
:inline-message="true"
|
||
>
|
||
<el-table :data="formData" class="-mt-10px">
|
||
<el-table-column label="序号" type="index" width="100" />
|
||
<el-table-column label="时间" min-width="150">
|
||
<template #default="{ row, $index }">
|
||
<el-form-item :prop="`${$index}.implDate`" :rules="formRules.implDate" class="mb-0px!">
|
||
<el-date-picker
|
||
v-model="row.implDate"
|
||
type="date"
|
||
value-format="x"
|
||
placeholder="选择时间"
|
||
/>
|
||
</el-form-item>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="实施内容" min-width="400">
|
||
<template #default="{ row, $index }">
|
||
<el-form-item :prop="`${$index}.implContent`" :rules="formRules.implContent" class="mb-0px!">
|
||
<Editor v-model="row.implContent" height="150px" />
|
||
</el-form-item>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column align="center" fixed="right" label="操作" width="60">
|
||
<template #default="{ $index }">
|
||
<el-button @click="handleDelete($index)" link>—</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</el-form>
|
||
<el-row justify="center" class="mt-3">
|
||
<el-button @click="handleAdd" round>+ 添加合同实施计划</el-button>
|
||
</el-row>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import { MainApi } from '@/api/contract/contract'
|
||
|
||
const props = defineProps<{
|
||
contractId: undefined // 合同ID(主表的关联字段)
|
||
}>()
|
||
const formLoading = ref(false) // 表单的加载中
|
||
const formData = ref([])
|
||
const formRules = reactive({
|
||
})
|
||
const formRef = ref() // 表单 Ref
|
||
|
||
/** 监听主表的关联字段的变化,加载对应的子表数据 */
|
||
watch(
|
||
() => props.contractId,
|
||
async (val) => {
|
||
// 1. 重置表单
|
||
formData.value = []
|
||
// 2. val 非空,则加载数据
|
||
if (!val) {
|
||
return;
|
||
}
|
||
try {
|
||
formLoading.value = true
|
||
formData.value = await MainApi.getPlanListByContractId(val)
|
||
} finally {
|
||
formLoading.value = false
|
||
}
|
||
},
|
||
{ immediate: true }
|
||
)
|
||
|
||
/** 新增按钮操作 */
|
||
const handleAdd = () => {
|
||
const row = {
|
||
id: undefined,
|
||
contractId: undefined,
|
||
implDate: undefined,
|
||
implContent: undefined,
|
||
}
|
||
row.contractId = props.contractId
|
||
formData.value.push(row)
|
||
}
|
||
|
||
/** 删除按钮操作 */
|
||
const handleDelete = (index) => {
|
||
formData.value.splice(index, 1)
|
||
}
|
||
|
||
/** 表单校验 */
|
||
const validate = () => {
|
||
return formRef.value.validate()
|
||
}
|
||
|
||
/** 表单值 */
|
||
const getData = () => {
|
||
return formData.value
|
||
}
|
||
|
||
defineExpose({ validate, getData })
|
||
</script>
|