新增数据,开始安全巡检模块
This commit is contained in:
@@ -15,15 +15,6 @@
|
||||
<el-option v-for="item in com_review" :key="item.value" :label="item.label" :value="item.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="提交日期" prop="date">
|
||||
<el-date-picker
|
||||
v-model="queryParams.date"
|
||||
type="date"
|
||||
placeholder="开始日期~结束日期"
|
||||
:disabled-date="disabledDate"
|
||||
:shortcuts="shortcuts"
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
@@ -78,7 +69,7 @@
|
||||
<el-table-column label="操作" align="center" min-width="120" fixed="right" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
v-if="scope.row.status === '0'"
|
||||
v-if="scope.row.status !== '1'"
|
||||
link
|
||||
type="primary"
|
||||
icon="Edit"
|
||||
@@ -114,7 +105,32 @@ import { getHousePathById } from '@/utils/house';
|
||||
import { useHouseStore } from '@/store/modules/house';
|
||||
|
||||
const houseStore = useHouseStore();
|
||||
const { currentVilageInfo } = storeToRefs(houseStore);
|
||||
const currentVilageInfo = ref({
|
||||
'villageId': null,
|
||||
'villageName': '',
|
||||
'villageCode': '',
|
||||
'city': '',
|
||||
'address': '',
|
||||
'completDate': '',
|
||||
'houseUse': 0,
|
||||
'villageArea': null,
|
||||
'parkingSpaceCount': null,
|
||||
'villageImageUrl': '',
|
||||
'status': '0',
|
||||
'remark': '',
|
||||
'manageName': '',
|
||||
'managePhone': '',
|
||||
'manageQq': '',
|
||||
'manageVx': '',
|
||||
'manageEmail': ''
|
||||
});
|
||||
|
||||
function init() {
|
||||
houseStore.getviliageinfo(localStorage.getItem('villageid')).then((res) => {
|
||||
currentVilageInfo.value = res;
|
||||
});
|
||||
}
|
||||
init();
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { com_resident_relationship } = toRefs<any>(proxy?.useDict('com_resident_relationship'));
|
||||
@@ -153,7 +169,6 @@ const data = reactive<PageData<ResidentForm, ResidentQuery>>({
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
villageId: Number(localStorage.getItem('villageid')),
|
||||
date: '',
|
||||
type: null,
|
||||
status: null,
|
||||
|
||||
Reference in New Issue
Block a user