修改设置日期函数

This commit is contained in:
GGJ
2024-12-02 13:33:44 +08:00
parent 6a57c4a573
commit 834fc6895a
16 changed files with 179 additions and 237 deletions

View File

@@ -213,7 +213,7 @@ const treeData = ref()
const loadData = () => {
initDetpStataionTree({ orgId: dictData.state.area[0].id }).then(res => {
treeList.value = res.data
initDetpStataionTree({ orgId: 'a3069759b0b6072c99cf9a7af6c162e9' }).then(res => {
initDetpStataionTree({ orgId: '02d1b4e1680413eb72f3fa63d46c496c' }).then(res => {
treeListCgy.value = res.data
setTimeout(() => {
changeArea()

View File

@@ -7,6 +7,12 @@
:value="item.id"></el-option>
</el-select>
</el-form-item>
<el-form-item label="是否解决">
<el-select v-model="tableStore.table.params.dealState" clearable placeholder="请选择是否解决">
<el-option label="未解决" value="0"></el-option>
<el-option label="已解决" value="1"></el-option>
</el-select>
</el-form-item>
</template>
<template #operation>
<el-button icon="el-icon-Delete" type="primary" @click="deleteEven">删除</el-button>
@@ -452,6 +458,7 @@ const cancelLeave = async (row: any) => {
tableStore.index()
}
tableStore.table.params.status = ''
tableStore.table.params.dealState = ''
provide('tableStore', tableStore)