20 changed files with 1783 additions and 1550 deletions
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,440 @@ |
|||
<template> |
|||
<div> |
|||
<div> |
|||
<div> |
|||
<el-form ref="ref_form" |
|||
:inline="true" |
|||
:model="formData" |
|||
:rules="dataRule" |
|||
:disabled="formType === 'detail'" |
|||
class="form"> |
|||
|
|||
<el-form-item label="分队名称" |
|||
label-width="150px" |
|||
prop="teamName"> |
|||
<el-input v-model="formData.teamName" |
|||
class="item_width_1" |
|||
clearable |
|||
placeholder="请输入分队名称"> |
|||
</el-input> |
|||
</el-form-item> |
|||
|
|||
<el-form-item label="负责区域" |
|||
prop="gridIdArray" |
|||
label-width="150px" |
|||
style="display: block"> |
|||
<el-select class="item_width_1" |
|||
v-model="formData.gridIdArray" |
|||
placeholder="全部" |
|||
multiple |
|||
clearable> |
|||
<el-option v-for="item in gridList" |
|||
:key="item.value" |
|||
:label="item.label" |
|||
:value="item.value"> |
|||
</el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
|
|||
<el-form-item label="负责场所类型" |
|||
prop="ninePlacsArray" |
|||
label-width="150px" |
|||
style="display: block"> |
|||
<el-checkbox-group class="item_width_1" |
|||
style="display:flex;flex-wrap:wrap" |
|||
v-model="formData.ninePlacsArray"> |
|||
<el-checkbox v-for="item in placeTypeList" |
|||
:key="item.value" |
|||
:label="item.value">{{item.label}}</el-checkbox> |
|||
|
|||
</el-checkbox-group> |
|||
|
|||
</el-form-item> |
|||
|
|||
<el-form-item label="巡查计划" |
|||
prop="plan" |
|||
label-width="150px" |
|||
style="display: block"> |
|||
<el-input class="item_width_1" |
|||
type="textarea" |
|||
maxlength="500" |
|||
show-word-limit |
|||
:rows="3" |
|||
placeholder="请输入备注,不超过500字" |
|||
v-model="formData.plan"></el-input> |
|||
</el-form-item> |
|||
|
|||
<el-form-item label="创建时间" |
|||
style="display: block" |
|||
prop="time" |
|||
label-width="150px"> |
|||
<el-date-picker v-model="formData.time" |
|||
value-format="yyyyMMdd" |
|||
type="date" |
|||
placeholder="选择日期"> |
|||
</el-date-picker> |
|||
</el-form-item> |
|||
|
|||
<el-form-item label="负责人" |
|||
label-width="150px" |
|||
prop="personInCharge"> |
|||
<el-input v-model="formData.personInCharge" |
|||
class="item_width_1" |
|||
clearable |
|||
placeholder="请输入负责人姓名"> |
|||
</el-input> |
|||
|
|||
</el-form-item> |
|||
<el-form-item label="联系电话" |
|||
label-width="150px" |
|||
prop="mobile"> |
|||
<el-input v-model="formData.mobile" |
|||
class="item_width_1" |
|||
type='number' |
|||
clearable |
|||
placeholder="请输入电话"> |
|||
</el-input> |
|||
|
|||
</el-form-item> |
|||
|
|||
<el-form-item label="成员" |
|||
label-width="150px" |
|||
prop="member"> |
|||
<el-button v-if="formType != 'detail'" |
|||
type="primary" |
|||
:disabled="btnDisable" |
|||
size="mini" |
|||
icon="el-icon-plus" |
|||
@click="handleAddPerson"></el-button> |
|||
<div v-for="(item,index) in memberList" |
|||
:key="index" |
|||
class="div_person_list"> |
|||
<span style="font-weight: bold">姓名</span> |
|||
<el-input v-if="item.isEdit" |
|||
v-model="item.name" |
|||
class="item_width_3" |
|||
clearable |
|||
placeholder="请输入电话"> |
|||
</el-input> |
|||
<span class="item_width_span_3" |
|||
v-if="!item.isEdit">{{item.name}}</span> |
|||
|
|||
<span style="font-weight: bold;margin-left:20px">联系电话</span> |
|||
<el-input v-if="item.isEdit" |
|||
v-model="item.mobile" |
|||
class="item_width_4" |
|||
clearable |
|||
placeholder="请输入电话"> |
|||
</el-input> |
|||
<span class="item_width_span_4" |
|||
v-if="!item.isEdit">{{item.mobile}}</span> |
|||
|
|||
<el-button style="margin-left:30px" |
|||
type="red" |
|||
size="mini" |
|||
@click="handleDelPerson(index)">删除</el-button> |
|||
</div> |
|||
|
|||
</el-form-item> |
|||
</el-form> |
|||
</div> |
|||
|
|||
</div> |
|||
<div class="div_btn"> |
|||
<el-button @click="handleCancle">取 消</el-button> |
|||
<el-button v-if="formType != 'detail'" |
|||
type="primary" |
|||
:disabled="btnDisable" |
|||
@click="handleComfirm">确 定</el-button> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { mapGetters } from 'vuex' |
|||
import { Loading } from 'element-ui' // 引入Loading服务 |
|||
import { requestPost } from '@/js/dai/request' |
|||
|
|||
|
|||
let loading // 加载动画 |
|||
export default { |
|||
data () { |
|||
return { |
|||
formType: 'add', //表单操作类型 add新增,edit编辑,detail详情 |
|||
|
|||
btnDisable: false, |
|||
|
|||
teamId: '', |
|||
formData: { |
|||
agencyId: '',//组织Id |
|||
teamName: '',//分队名称 |
|||
gridIds: '',//负责区域,多个值逗号分隔 |
|||
gridIdArray: [], |
|||
ninePlacsVals: '',//负责场所类型,多个值逗号分隔 |
|||
ninePlacsArray: [], |
|||
plan: '',//巡查计划 |
|||
time: '',//时间 |
|||
personInCharge: '',//负责人 |
|||
mobile: '',//联系电话 |
|||
memberList: ''//成员信息集合 |
|||
}, |
|||
|
|||
memberList: [ |
|||
{ |
|||
name: '成吉思汗', |
|||
mobile: '19999999999', |
|||
isEdit: false, |
|||
}, |
|||
{ |
|||
name: '成吉思汗', |
|||
mobile: '17465666567', |
|||
isEdit: true, |
|||
} |
|||
], |
|||
|
|||
} |
|||
}, |
|||
components: {}, |
|||
mounted () { |
|||
|
|||
}, |
|||
|
|||
methods: { |
|||
|
|||
async initForm (type, teamId, agencyId) { |
|||
this.$refs.ref_form.resetFields(); |
|||
this.formData.agencyId = agencyId |
|||
this.formType = type |
|||
if (teamId) { |
|||
this.teamId = teamId |
|||
this.formData.teamId = teamId |
|||
await this.loadFormData() |
|||
} |
|||
|
|||
}, |
|||
|
|||
//加载组织 |
|||
async loadFormData () { |
|||
// const url = '/gov/org/placepatrolteam/detail' |
|||
const url = 'http://yapi.elinkservice.cn/mock/245/gov/org/placepatrolteam/detail' |
|||
let params = { |
|||
placePatrolTeamId: this.teamId |
|||
} |
|||
|
|||
const { data, code, msg } = await requestPost(url, params) |
|||
|
|||
if (code === 0) { |
|||
this.formData = data |
|||
|
|||
} else { |
|||
this.$message.error(msg) |
|||
} |
|||
}, |
|||
|
|||
|
|||
|
|||
async handleComfirm () { |
|||
|
|||
this.btnDisable = true |
|||
setTimeout(() => { |
|||
this.btnDisable = false |
|||
}, 10000) |
|||
this.$refs['ref_form'].validate((valid, messageObj) => { |
|||
if (!valid) { |
|||
app.util.validateRule(messageObj) |
|||
this.btnDisable = false |
|||
} else { |
|||
this.addTeam() |
|||
} |
|||
|
|||
}) |
|||
|
|||
|
|||
}, |
|||
handleAddPerson () { |
|||
let obj = { |
|||
name: '', |
|||
mobile: '', |
|||
isEdit: true |
|||
} |
|||
|
|||
this.memberList.push(obj) |
|||
}, |
|||
handleDelPerson (index) { |
|||
this.memberList.splice(index, 1) |
|||
}, |
|||
async addTeam () { |
|||
// const regPhone = /^1(3|4|5|6|7|8|9)\d{9}$/; //手机号码 |
|||
// if (regPhone.test(this.formData.mobile) === false) { |
|||
// this.btnDisable = false |
|||
// this.$message({ |
|||
// type: 'warning', |
|||
// message: '请输入正确的手机号码' |
|||
// }) |
|||
// return false; |
|||
// } |
|||
if (this.formData.gridIdArray.length > 0) { |
|||
this.formData.gridIds = this.formData.gridIdArray.join(',') |
|||
} else { |
|||
return false |
|||
} |
|||
if (this.formData.ninePlacsArray.length > 0) { |
|||
this.formData.ninePlacsVals = this.formData.ninePlacsArray.join(',') |
|||
} else { |
|||
return false |
|||
} |
|||
|
|||
let url = '' |
|||
|
|||
if (this.formType === 'edit') { |
|||
// url = '/gov/org/placeorg/edit' |
|||
url = 'http://yapi.elinkservice.cn/mock/245/gov/org/placeorg/edit' |
|||
|
|||
} else { |
|||
// url = "/gov/org/placepatrolteam/add" |
|||
url = "http://yapi.elinkservice.cn/mock/245/gov/org/placepatrolteam/add" |
|||
} |
|||
|
|||
const { data, code, msg } = await requestPost(url, this.formData) |
|||
|
|||
if (code === 0) { |
|||
this.$message({ |
|||
type: 'success', |
|||
message: '操作成功' |
|||
}) |
|||
this.resetData() |
|||
this.$emit('dialogOk') |
|||
this.btnDisable = false |
|||
} else { |
|||
this.btnDisable = false |
|||
this.$message.error(msg) |
|||
} |
|||
|
|||
}, |
|||
|
|||
handleCancle () { |
|||
|
|||
this.resetData() |
|||
this.$emit('dialogCancle') |
|||
|
|||
}, |
|||
|
|||
resetData () { |
|||
this.teamId = '' |
|||
this.formData = { |
|||
agencyId: '',//组织Id |
|||
teamName: '',//分队名称 |
|||
gridIds: '',//负责区域,多个值逗号分隔 |
|||
gridIdArray: [], |
|||
ninePlacsVals: '',//负责场所类型,多个值逗号分隔 |
|||
ninePlacsArray: [], |
|||
plan: '',//巡查计划 |
|||
time: '',//时间 |
|||
personInCharge: '',//负责人 |
|||
mobile: '',//联系电话 |
|||
member: '1'//成员信息集合 |
|||
} |
|||
}, |
|||
// 开启加载动画 |
|||
startLoading () { |
|||
loading = Loading.service({ |
|||
lock: true, // 是否锁定 |
|||
text: '正在加载……', // 加载中需要显示的文字 |
|||
background: 'rgba(0,0,0,.7)' // 背景颜色 |
|||
}) |
|||
}, |
|||
// 结束加载动画 |
|||
endLoading () { |
|||
// clearTimeout(timer); |
|||
if (loading) { |
|||
loading.close() |
|||
} |
|||
} |
|||
}, |
|||
computed: { |
|||
dataRule () { |
|||
return { |
|||
teamName: [ |
|||
{ required: true, message: '分队名称不能为空', trigger: 'blur' } |
|||
], |
|||
gridIdArray: [ |
|||
{ required: true, message: '负责区域不能为空', trigger: 'blur' }, |
|||
], |
|||
ninePlacsArray: [ |
|||
{ required: true, message: '场所类型不能为空', trigger: 'blur' } |
|||
], |
|||
|
|||
plan: [ |
|||
{ required: true, message: '巡查计划 不能为空', trigger: 'blur' } |
|||
], |
|||
personInCharge: [ |
|||
{ required: true, message: '负责人不能为空', trigger: 'blur' } |
|||
], |
|||
mobile: [ |
|||
{ required: true, message: '联系电话不能为空', trigger: 'blur' } |
|||
], |
|||
member: [ |
|||
{ required: true, message: '成员不能为空', trigger: 'blur' } |
|||
] |
|||
} |
|||
}, |
|||
|
|||
}, |
|||
props: { |
|||
gridList: { |
|||
type: Array, |
|||
default: [] |
|||
}, |
|||
|
|||
placeTypeList: { |
|||
type: Array, |
|||
default: [] |
|||
}, |
|||
} |
|||
} |
|||
</script> |
|||
<style lang="scss" scoped> |
|||
@import "@/assets/scss/buttonstyle.scss"; |
|||
.item_width_1 { |
|||
width: 500px; |
|||
} |
|||
.item_width_2 { |
|||
width: 400px; |
|||
} |
|||
.item_width_3 { |
|||
margin-left: 10px; |
|||
width: 120px; |
|||
} |
|||
.item_width_4 { |
|||
margin-left: 10px; |
|||
width: 150px; |
|||
} |
|||
.item_width_span_3 { |
|||
margin-left: 10px; |
|||
width: 120px; |
|||
} |
|||
.item_width_span_4 { |
|||
margin-left: 10px; |
|||
width: 150px; |
|||
} |
|||
|
|||
.div_btn { |
|||
display: flex; |
|||
justify-content: flex-end; |
|||
} |
|||
|
|||
.form { |
|||
margin-top: 30px; |
|||
} |
|||
.div_person_list { |
|||
margin-top: 10px; |
|||
width: 500px; |
|||
display: flex; |
|||
} |
|||
</style> |
|||
|
|||
<style lang=scss> |
|||
.el-dialog__body { |
|||
padding: 0 10px 20px !important; |
|||
} |
|||
</style> |
|||
@ -0,0 +1,551 @@ |
|||
<template> |
|||
<div> |
|||
<div class="resi-container"> |
|||
<el-card class="resi-card"> |
|||
<el-row class="resi-row-box" :class="openSearch && 'resi-row-more'"> |
|||
<el-row class="resi-row" :gutter="20"> |
|||
<el-col :span="8"> |
|||
<div class="resi-cell"> |
|||
<div class="resi-cell-label">组织名称</div> |
|||
<div class="resi-cell-value" :class="'resi-cell-value-radio'"> |
|||
<el-input |
|||
v-model="fmData.societyName" |
|||
class="resi-cell-input" |
|||
size="small" |
|||
clearable |
|||
placeholder="请输入" |
|||
> |
|||
</el-input> |
|||
</div> |
|||
</div> |
|||
</el-col> |
|||
|
|||
<el-col :span="8"> |
|||
<div class="resi-cell"> |
|||
<div class="resi-cell-label">负责人</div> |
|||
<div class="resi-cell-value" :class="'resi-cell-value-radio'"> |
|||
<el-input |
|||
v-model="fmData.personInCharge" |
|||
class="resi-cell-input" |
|||
size="small" |
|||
clearable |
|||
placeholder="请输入" |
|||
> |
|||
</el-input> |
|||
</div> |
|||
</div> |
|||
</el-col> |
|||
|
|||
<el-col :span="8"> |
|||
<div class="resi-cell"> |
|||
<div class="resi-cell-label">联系电话</div> |
|||
<div class="resi-cell-value" :class="'resi-cell-value-radio'"> |
|||
<el-input |
|||
v-model="fmData.mobile" |
|||
class="resi-cell-input" |
|||
size="small" |
|||
clearable |
|||
placeholder="请输入" |
|||
> |
|||
</el-input> |
|||
</div> |
|||
</div> |
|||
</el-col> |
|||
</el-row> |
|||
<el-row> |
|||
<el-col :span="24"> |
|||
<div class="resi-cell"> |
|||
<div class="resi-cell-label">服务时间</div> |
|||
<div class="resi-cell-value" :class="'resi-cell-value-radio'"> |
|||
<el-date-picker |
|||
v-model="fmData.serviceTime" |
|||
type="daterange" |
|||
range-separator="至" |
|||
start-placeholder="开始日期" |
|||
end-placeholder="结束日期" |
|||
value-format="yyyy-MM-dd" |
|||
> |
|||
</el-date-picker> |
|||
</div> |
|||
</div> |
|||
</el-col> |
|||
</el-row> |
|||
</el-row> |
|||
<el-row class="resi-search"> |
|||
<el-col :span="24"> |
|||
<el-button type="primary" size="small" @click="handleSearch" |
|||
>查询</el-button |
|||
> |
|||
</el-col> |
|||
</el-row> |
|||
</el-card> |
|||
</div> |
|||
|
|||
<el-card class="resi-card-table"> |
|||
<div class="resi-row-btn"> |
|||
<el-button type="success" size="small" @click="handleAdd" |
|||
>新增</el-button |
|||
> |
|||
<el-button @click="handleRu" type="warning" size="small" |
|||
>excel导入</el-button |
|||
> |
|||
<el-button @click="handleChu" type="danger" size="small" |
|||
>excel导出</el-button |
|||
> |
|||
</div> |
|||
<el-table |
|||
:data="tableData" |
|||
border |
|||
style="width: 100%" |
|||
class="resi-table" |
|||
:max-height="maxTableHeight" |
|||
> |
|||
<el-table-column label="序号" type="index" align="center" width="50" /> |
|||
<el-table-column prop="societyName" label="社会组织名称"> |
|||
</el-table-column> |
|||
<el-table-column prop="serviceMatters" label="服务事项"> |
|||
</el-table-column> |
|||
<el-table-column prop="personInCharge" label="负责人"> |
|||
</el-table-column> |
|||
<el-table-column prop="mobile" label="负责人电话"> </el-table-column> |
|||
<el-table-column prop="serviceTime" label="服务时间"> </el-table-column> |
|||
<el-table-column fixed="right" label="操作" align="center" width="120"> |
|||
<template slot-scope="scope"> |
|||
<el-button |
|||
@click="handleWatch(scope.row, scope.$index)" |
|||
type="text" |
|||
size="small" |
|||
>查看</el-button |
|||
> |
|||
|
|||
<el-button |
|||
@click="handleEdit(scope.row)" |
|||
type="text" |
|||
size="small" |
|||
style="margin-right: 10px; color: #00a7a9" |
|||
>编辑</el-button |
|||
> |
|||
|
|||
<el-popconfirm |
|||
title="删除之后无法回复,确认删除?" |
|||
@onConfirm="handleDel(scope.row, scope.$index)" |
|||
@confirm="handleDel(scope.row, scope.$index)" |
|||
> |
|||
<el-button |
|||
slot="reference" |
|||
type="text" |
|||
size="small" |
|||
style="color: #d51010" |
|||
>删除</el-button |
|||
> |
|||
</el-popconfirm> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<div> |
|||
<el-pagination |
|||
@size-change="handleSizeChange" |
|||
@current-change="handleCurrentChange" |
|||
:current-page.sync="pageNo" |
|||
:page-sizes="[20, 50, 100, 200]" |
|||
:page-size="parseInt(pageSize)" |
|||
layout="sizes, prev, pager, next" |
|||
:total="total" |
|||
> |
|||
</el-pagination> |
|||
</div> |
|||
</el-card> |
|||
|
|||
<!-- 修改弹出框 --> |
|||
<el-dialog |
|||
:visible.sync="formShow" |
|||
:close-on-click-modal="false" |
|||
:close-on-press-escape="false" |
|||
:title="formTitle" |
|||
width="850px" |
|||
top="5vh" |
|||
@closed="handleClose" |
|||
> |
|||
<edit-form |
|||
ref="ref_form" |
|||
@dialogCancle="handleClose" |
|||
@dialogOk="handleEditSuccess" |
|||
></edit-form> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { requestPost } from "@/js/dai/request"; |
|||
import nextTick from "dai-js/tools/nextTick"; |
|||
import { mapGetters } from "vuex"; |
|||
import editForm from "./cpts/edit"; |
|||
|
|||
export default { |
|||
components: { editForm }, |
|||
data() { |
|||
return { |
|||
openSearch: false, |
|||
|
|||
formShow: false, |
|||
formTitle: "", |
|||
formShow: false, |
|||
|
|||
pageNo: 1, |
|||
pageSize: window.localStorage.getItem("pageSize") || 20, |
|||
total: 1, |
|||
|
|||
tableData: [ |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
{ |
|||
societyName: "亿联科技", |
|||
personInCharge: "嘻嘻", |
|||
serviceMatters: "1111111111111", |
|||
mobile: "13512345678", |
|||
serviceTime: "2001-1-1至2022-2-2", |
|||
}, |
|||
], |
|||
|
|||
fmData: { |
|||
societyName: "", |
|||
personInCharge: "", |
|||
mobile: "", |
|||
serviceStartTime: "", |
|||
serviceEndTime: "", |
|||
serviceTime: "", |
|||
}, |
|||
}; |
|||
}, |
|||
computed: { |
|||
maxTableHeight() { |
|||
return this.clientHeight - 450; |
|||
}, |
|||
...mapGetters(["clientHeight"]), |
|||
}, |
|||
watch: { |
|||
"fmData.serviceTime": function (val) { |
|||
if (Array.isArray(val) && val.length == 2) { |
|||
this.fmData.serviceStartTime = val[0]; |
|||
this.fmData.serviceEndTime = val[1]; |
|||
} |
|||
}, |
|||
}, |
|||
mounted() { |
|||
this.getTableData(); |
|||
}, |
|||
methods: { |
|||
handleSizeChange(val) { |
|||
console.log(`每页 ${val} 条`); |
|||
this.pageSize = val; |
|||
window.localStorage.setItem("pageSize", val); |
|||
this.getTableData(); |
|||
}, |
|||
handleCurrentChange(val) { |
|||
console.log(`当前页: ${val}`); |
|||
this.pageNo = val; |
|||
this.getTableData(); |
|||
}, |
|||
|
|||
handleClose() { |
|||
this.formShow = false; |
|||
}, |
|||
handleSearch(val) { |
|||
console.log(this.fmData); |
|||
this.pageNo = 1; |
|||
this.getTableData(); |
|||
}, |
|||
|
|||
handleAdd() { |
|||
this.formShow = true; |
|||
}, |
|||
handleRu() {}, |
|||
handleChu() {}, |
|||
handleWatch(rowData, rowIndex) { |
|||
console.log(rowData, rowIndex); |
|||
this.formShow = true; |
|||
}, |
|||
handleEdit(rowData, rowIndex) { |
|||
this.formShow = true; |
|||
}, |
|||
handleEditSuccess() { |
|||
this.handleClose(); |
|||
this.getTableData(); |
|||
}, |
|||
|
|||
async handleDel(rowData, rowIndex) { |
|||
console.log(rowData, rowIndex); |
|||
const url = "/heart/societyorg/del"; |
|||
const { tableData } = this; |
|||
|
|||
const { data, code, msg } = await requestPost(url, { |
|||
societyId: tableData[rowIndex].societyId, |
|||
}); |
|||
|
|||
if (code === 0) { |
|||
this.$message.success("删除成功!"); |
|||
this.getTableData(); |
|||
} else { |
|||
this.$message.success("操作失败!"); |
|||
} |
|||
}, |
|||
|
|||
async getTableData() { |
|||
const url = "/heart/societyorg/getlist"; |
|||
const { pageSize, pageNo, fmData } = this; |
|||
const { data, code, msg } = await requestPost(url, { |
|||
pageSize, |
|||
pageNo, |
|||
...fmData, |
|||
}); |
|||
if (code === 0) { |
|||
console.log("列表请求成功!!!!!!!!!!!!!!"); |
|||
this.total = data.total; |
|||
this.tableData = data.list.map((item) => { |
|||
item.serviceTime = item.serviceStartTime + "至" + item.serviceEndTime; |
|||
return item; |
|||
}); |
|||
} else { |
|||
} |
|||
}, |
|||
}, |
|||
}; |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.tabs-other-info { |
|||
.el-tabs__item { |
|||
// width: 50px; |
|||
height: 20px; |
|||
box-sizing: border-box; |
|||
margin-right: 7px; |
|||
padding: 0 10px !important; |
|||
font-size: 8px; |
|||
font-weight: 500; |
|||
color: #666666; |
|||
line-height: 20px; |
|||
background: #ebecf1; |
|||
border-radius: 2px; |
|||
} |
|||
.el-tabs__nav-wrap::after, |
|||
.el-tabs__active-bar { |
|||
display: none; |
|||
} |
|||
.el-tabs__nav-next, |
|||
.el-tabs__nav-prev { |
|||
line-height: 20px; |
|||
} |
|||
} |
|||
|
|||
.resi-card-table { |
|||
margin-top: 20px; |
|||
} |
|||
.resi-row-btn { |
|||
margin-bottom: 13px; |
|||
} |
|||
.resi-other { |
|||
width: 100%; |
|||
display: flex; |
|||
.resi-other-title { |
|||
width: 100px; |
|||
box-sizing: border-box; |
|||
margin-bottom: 10px; |
|||
// padding: 6px 12px 0 0; |
|||
font-size: 16px; |
|||
font-weight: 500; |
|||
color: #333; |
|||
text-align: center; |
|||
} |
|||
.tabs-other-info { |
|||
// padding-left: 60px; |
|||
} |
|||
} |
|||
|
|||
.resi-btns { |
|||
margin-top: 20px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.resi-container .resi-card { |
|||
position: relative; |
|||
overflow: visible; |
|||
} |
|||
.resi-down { |
|||
position: absolute; |
|||
left: 50%; |
|||
bottom: -10px; |
|||
display: flex; |
|||
justify-content: center; |
|||
align-items: center; |
|||
width: 46px; |
|||
height: 12px; |
|||
box-sizing: border-box; |
|||
margin-left: -23rpx; |
|||
cursor: pointer; |
|||
background: #ffffff; |
|||
border-radius: 0 0 10px 10px; |
|||
img { |
|||
display: block; |
|||
} |
|||
} |
|||
.resi-row-box { |
|||
height: 104px; |
|||
overflow: hidden; |
|||
transition: height 0.5s; |
|||
} |
|||
.resi-row-more { |
|||
height: max-content; |
|||
transition: height 0.5s; |
|||
} |
|||
.resi-row { |
|||
margin-bottom: 20px; |
|||
} |
|||
.resi-search { |
|||
.el-col { |
|||
text-align: right; |
|||
} |
|||
} |
|||
.resi-cell { |
|||
display: flex; |
|||
align-items: center; |
|||
.resi-cell-label { |
|||
width: 70px; |
|||
box-sizing: border-box; |
|||
margin-right: 15px; |
|||
text-align: right; |
|||
// line-height: 32; |
|||
} |
|||
.resi-cell-value-radio { |
|||
display: flex; |
|||
align-items: center; |
|||
min-height: 32px; |
|||
} |
|||
.resi-cell-input { |
|||
width: 180px; |
|||
} |
|||
.resi-cell-select { |
|||
width: 180px; |
|||
box-sizing: border-box; |
|||
margin-right: 10px; |
|||
&-middle { |
|||
width: 130px; |
|||
} |
|||
&-small { |
|||
width: 88px; |
|||
} |
|||
} |
|||
.resi-cell-select:last-child { |
|||
margin-right: 0; |
|||
} |
|||
} |
|||
</style> |
|||
Loading…
Reference in new issue