123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610 |
- <template>
- <view style="position: relative;">
- <navInfo :title="'编辑人员'"></navInfo>
- <view class="bgTopImg" style="height:200rpx;">
- <image slot="right" class="bgTopImg"></image>
- </view>
- <div class="cardBox">
- <uni-card v-for="item in tableList" style="border: 2rpx solid #4DB1B6;">
- <div style="display: flex;justify-content: space-between;align-items: center;">
- <div>
- <text>姓名:{{item.empName}}</text><br>
- <text>电话:{{ item.mobile }}</text><br>
- <text>身份证号:{{item.idcardno}}</text><br>
- <text>职务:{{getDuty(item.empType)}}</text>
- </div>
- <div style="display: flex;justify-content: space-around;align-items: center;">
- <button @click="delUser(item)" class="editBtn" style="background-color: red;">删除</button>
- <button @click="editUser(item)" class="editBtn">编辑</button>
- </div>
- </div>
- </uni-card>
- </div>
- <!-- 新增的人员表单项 -->
- <div v-for="(person, index) in membersList" :key="index"
- style="border-bottom: 1px solid black;margin-top: 100rpx;">
- <u--form ref="forms">
- <u-form-item class="typeStyle" :prop="'name' + (index + 1)">
- <p style="width: 150rpx;margin-left: 20rpx;">姓名</p>
- <u-input v-model="person.name" id="nameId" @change="nameBlur" :placeholder="'请输入姓名'" />
- <span class="erroring" v-if="nameRules">请输入名称</span>
- </u-form-item>
- <u-form-item class="typeStyle" :prop="'age' + (index + 1)">
- <p style="width: 150rpx;margin-left: 20rpx;">身份证号</p>
- <u-input @change="userBlur" v-model="person.userNum" :placeholder="'请输入身份证号'" />
- <span class="erroring" v-if="userRules">身份证号有误</span>
- </u-form-item>
- <!-- 其他人员信息字段 -->
- <u-form-item class="typeStyle" :prop="'age' + (index + 1)">
- <p style="width: 150rpx;margin-left: 20rpx;">电话号</p>
- <u-input v-model="person.phone" @change="phoneBlur" :placeholder="'请输入电话号'" />
- <span class="erroring" v-if="phoneRules">电话号有误</span>
- </u-form-item>
- <!-- <u-form-item class="typeStyle" :prop="'age' + (index + 1)">
- <p style="width: 150rpx;margin-left: 20rpx;">人员类型</p>
- <u-input v-model="person.worker" :placeholder="'请输入人员类型'" />
- </u-form-item> -->
- <u-form-item class="antherStyle">
- <p style="width: 150rpx;">人员类型</p>
- <uni-data-select v-model="person.power" :localdata="selectType" @change="change"></uni-data-select>
- <!-- <uni-data-select v-model="person.worker" :localdata="range" @change="change"></uni-data-select> -->
- </u-form-item>
- <u-form-item>
- <u-button type="primary" @click="addSure" class="antherBtn">提交</u-button>
- <u-button type="primary" @click="cleanList" class="antherBtn">取消</u-button>
- </u-form-item>
- </u--form>
- </div>
- <div>
- <u-popup :show="showModal" mode="center" @close="closeModal" :round="10">
- <view class="modalBox">
- <u--form labelPosition="left" :model="formbox" ref="uForm" style="width: 100%;">
- <u-form-item style="width: 400rpx;" label="姓名" prop="formbox.fname" borderBottom ref="item1">
- <u--input class="insides" v-model="formbox.fname" border="none"></u--input>
- </u-form-item>
- <u-form-item style="width: 350rpx;" label="电话号" prop="formbox.fphone" borderBottom ref="item1">
- <u--input class="insides" v-model="formbox.fphone" border="none"></u--input>
- </u-form-item>
- <u-form-item style="width: 490rpx;" label="人员类型" prop="formbox.fpower" borderBottom ref="item1">
- <uni-data-select v-model="formbox.fpower" :localdata="selectType"
- @change="change1"></uni-data-select>
- </u-form-item>
- <u-form-item style="width: 350rpx;" label="身份证号" prop="userInfo.fuserNum" borderBottom
- ref="item1">
- <u--input class="insides" v-model="formbox.fuserNum" border="none"></u--input>
- </u-form-item>
- <!-- <u-form-item style="width: 350rpx;" label="人员类型" prop="userInfo.fworker" borderBottom
- ref="item1">
- <u--input class="insides" v-model="formbox.fworker" border="none"></u--input>
- </u-form-item> -->
- </u--form>
- <div class="useBox">
- <button class="antherBtn" @click="makeSureEdit">确认修改</button>
-
- <button class="antherBtn" @click="showModal = false">取消</button>
- </div>
- </view>
- </u-popup>
- </div>
- <div>
- <u-popup :show="showDel" title="确认删除?" mode="center">
- <div style="width: 400rpx;height: 200rpx;margin: 20rpx 20rpx;">
- <p style="font-size: 35rpx;color: black;">是否删除该数据项?</p>
- <p style="font-size: 20rpx;color: gray;">确认删除?</p>
- <div style="display: flex;justify-content: space-around;align-items: center;margin-top: 40rpx;">
- <button class="antherBtn" @click="makeSureDel" style="background-color: red;">确认</button>
- <button class="antherBtn" @click="showDel = false">取消</button>
- </div>
- </div>
- </u-popup>
- </div>
- <div>
- <u-modal :show="show123" @confirm="confirm" @cancel="cancel" @close="close" asyncClose closeOnClickOverlay
- showCancelButton confirmColor="red" title="是否删除该数据项" content="确认删除?" ref="uModal"></u-modal>
- </div>
- <button @click="addNewPeople" class="circleBtn">+</button>
- </view>
- </template>
- <script>
- import {
- creatFirePeople,
- delFirePeople,
- outexcel,
- getMesbyid,
- getfirelist,
- getfirepage,
- editFirePeople,
- getuserfireid
- } from "../../../../api/peoplefire/index.js"
- import {
- getDict
- } from "../../../../api/dictName/index.js"
- import config from '@/config'
- const baseUrlImg = config.baseUrlImg
- import navInfo from '@/pagesA/components/my-nav/nav'
- export default {
- components: {
- navInfo
- },
- data() {
- return {
- membersList: [], //添加的人员数组
- resultId: '',
- value: 0,
- range: [{
- value: '2',
- text: "站长"
- },
- {
- value: '1',
- text: "值班人员"
- },
- {
- value: '0',
- text: "普通人员"
- },
- ],
- range1: [{
- value: '2',
- text: "负责人"
- },
- {
- value: '1',
- text: "值班人员"
- },
- {
- value: '0',
- text: "普通人员"
- },
- ],
- tomole: "添加人员",
- tableList: [], //显示的人员数组
- userId: '', //用户id
- smallFireId: '',
- fireStationId: 0, //消防站id
- showModal: false, //模态框开关
- formbox: {
- fname: '',
- fphone: '',
- fworker: '',
- fuserNum: '',
- },
- editPeopleId: '', //需要修改人员的id
- nameRules: false, //对name的正则验证
- userRules: false, //对身份证的正则验证
- phoneRules: false, //对电话的正则验证
- showDel: false,
- delId: '',
- show123: false,
- selectType: [], //选项
- }
- },
- methods: {
- getTypePeople() {
- getDict({
- pageNo: 1,
- pageSize: 10,
- dictType: "micro_emp_type"
- }).then(res => {
- this.selectType = res.data.list.map(item => {
- return {
- value: item.value,
- text: item.label
- }
- })
- })
- },
- addNewPeople() {
- const MAX_LENGTH = 1; // 假设你想限制数组最大长度为6
- if (this.membersList.length < MAX_LENGTH) {
- const newPerson = {
- name: '',
- userNum: '',
- phone: '',
- worker: '',
- // 其他字段
- };
- this.membersList.push(newPerson);
- } else {
- // 达到最大数量,给出提示或执行其他操作
- uni.showToast({
- title: '只支持一位添加',
- icon: 'none', // 图标类型,可选值:'success', 'loading', 'none'
- duration: 2000, // 持续时间,单位为毫秒,默认值为 1500
- mask: false, // 是否显示透明蒙层,防止触摸穿透,默认值为 false
- success() {
- // console.log('toast消息提示显示成功');
- },
- fail(err) {
- // console.error('toast消息提示显示失败', err);
- }
- });
- }
- },
- addSure() {
- if (this.$route.query.addId) {
- if (!this.userRules && !this.phoneRules && !this.nameRules) {
- console.log(this.membersList[0].worker,'988');
- creatFirePeople({
- empName: this.membersList[0].name,
- empType: this.membersList[0].worker,
- idcardno: this.membersList[0].userNum,
- microstationid: this.fireStationId - 0,
- mobile: this.membersList[0].phone,
- }).then(res => {
- if (res.data) {
- this.getAllFire()
- uni.showToast({
- title: '添加成功',
- icon: 'success', // 图标类型,可选值:'success', 'loading', 'none'
- duration: 2000, // 持续时间,单位为毫秒,默认值为 1500
- mask: false, // 是否显示透明蒙层,防止触摸穿透,默认值为 false
- success() {
- // console.log('toast消息提示显示成功');
- },
- fail(err) {
- // console.error('toast消息提示显示失败', err);
- }
- });
- this.membersList = []
- }
- })
- } else {
- uni.showToast({
- title: '请检查表单项',
- icon: 'none', // 图标类型,可选值:'success', 'loading', 'none'
- duration: 2000, // 持续时间,单位为毫秒,默认值为 1500
- mask: false, // 是否显示透明蒙层,防止触摸穿透,默认值为 false
- success() {
- // console.log('toast消息提示显示成功');
- },
- fail(err) {
- // console.error('toast消息提示显示失败', err);
- }
- });
- }
- } else {
- localStorage.setItem("empList", JSON.stringify(this.membersList))
- uni.navigateBack({
- delta: 1
- })
- }
- },
- change(e) {
- this.membersList[0].worker = e
- // console.log("e:", e);
- },
- change1(e) {
- this.membersList[0].worker = e
- // console.log("e1:", e);
- },
- getbackid() {
- let x = localStorage.getItem('getUserInfo_key')
- x = JSON.parse(x)
- this.userId = x.data.userInfo.id
- getuserfireid({
- userId: this.userId
- }).then(res => {
- // console.log(res, 'userfire');
- })
- // console.log(x.data.userInfo.id, 'xxx');
- },
- getAllFire() {
- let num = 0
- if (this.$route.query.addId === '1') {
- num = '1'
- getfirepage({
- pageNo: 1,
- pageSize: 10,
- microstationid: this.fireStationId,
- empType: num
- }).then(res => {
- // console.log(res, '888');
- this.tableList = res.data.list
- })
- } else if (this.$route.query.addId === '2') {
- num = '2'
- getfirepage({
- pageNo: 1,
- pageSize: 10,
- microstationid: this.fireStationId,
- empType: num
- }).then(res => {
- // console.log(res, '888');
- this.tableList = res.data.list
- })
- } else if (this.$route.query.addId === '0') {
- num = '0'
- getfirepage({
- pageNo: 1,
- pageSize: 10,
- microstationid: this.fireStationId,
- empType: num
- }).then(res => {
- // console.log(res, '888');
- this.tableList = res.data.list
- })
- }
- },
- delUser(row) {
- this.show123 = true
- this.delId = row.id
- },
- makeSureDel() {
- },
- confirm() {
- delFirePeople(this.delId).then(res => {
- if (res.data) {
- uni.showToast({
- title: '删除成功',
- icon: 'success', // 图标类型,可选值:'success', 'loading', 'none'
- duration: 2000, // 持续时间,单位为毫秒,默认值为 1500
- mask: false, // 是否显示透明蒙层,防止触摸穿透,默认值为 false
- success() {
- // console.log('toast消息提示显示成功');
- },
- fail(err) {
- // console.error('toast消息提示显示失败', err);
- }
- });
- this.getAllFire()
- this.show123 = false
- }
- })
- },
- cancel() {
- this.show123 = false
- },
- close() {
- this.show123 = false
- },
- editUser(row) {
- this.editPeopleId = row.id
- getMesbyid({
- id: row.id
- }).then(res => {
- if (res.data) {
- this.formbox.fname = res.data.empName
- this.formbox.fphone = res.data.mobile
- this.formbox.fpower = res.data.empType
- // this.formbox.fworker = res.data.empType
- this.formbox.fuserNum = res.data.idcardno
- this.showModal = true
- }
- })
- },
- closeModal() {
- this.showModal = false
- },
- makeSureEdit() {
- editFirePeople({
- duty: this.formbox.fpower,
- empName: this.formbox.fname,
- // empType: this.formbox.fworker,
- id: this.editPeopleId,
- idcardno: this.formbox.fuserNum,
- microstationid: this.fireStationId - 0,
- mobile: this.formbox.fphone,
- }).then(res => {
- if (res.data) {
- this.showModal = false
- this.getAllFire()
- uni.showToast({
- title: '编辑成功',
- icon: 'success', // 图标类型,可选值:'success', 'loading', 'none'
- duration: 2000, // 持续时间,单位为毫秒,默认值为 1500
- mask: false, // 是否显示透明蒙层,防止触摸穿透,默认值为 false
- success() {
- // console.log('toast消息提示显示成功');
- },
- fail(err) {
- // console.error('toast消息提示显示失败', err);
- }
- });
- }
- // console.log(res, 'edit');
- })
- },
- // 对表单内name的正则判断
- nameBlur() {
- // console.log(this.membersList[0].name);
- if (this.membersList[0].name === '') {
- this.nameRules = true
- } else {
- this.nameRules = false
- }
- },
- userBlur() {
- const regex = /^[1-9]\d{5}(18|19|20)\d{2}(0[1-9]|1[0-2])(0[1-9]|[1-2]\d|3[0-1])\d{3}[\dxX]$/;
- if (regex.test(this.membersList[0].userNum)) {
- this.userRules = false
- } else {
- this.userRules = true
- }
- },
- phoneBlur() {
- const regex = /^1[3-9]\d{9}$/;
- if (regex.test(this.membersList[0].phone)) {
- this.phoneRules = false
- } else {
- this.phoneRules = true
- }
- },
- cleanList() {
- this.membersList = []
- let list = localStorage.getItem("empList")
- list = JSON.parse(list)
- if (list) {
- localStorage.removeItem('empList')
- }
- },
- // 读取本地缓存
- getGround() {
- let list = localStorage.getItem("empList")
- list = JSON.parse(list)
- if (list) {
- this.membersList = list
- } else {
- this.membersList = []
- }
- }
- },
- onLoad(options) {
- let ids = localStorage.getItem("fireId")
- if (ids) {
- this.fireStationId = ids
- }
- },
- onShow() {
- this.getTypePeople()
- this.getGround()
- if (this.$route.query.addId) {
- this.getAllFire()
- this.getbackid()
- // console.log(options, 'options')
- this.resultId = this.$route.query.addId
- if (this.resultId === '2') {
- this.tomole = '添加负责人'
- } else if (this.resultId === '1') {
- this.tomole = '添加值班人'
- } else {
- this.tomole = '添加人员信息'
- }
- // console.log(this.$route.query, 'query'); // 输出传递的参数值
- } else {
- return
- }
- },
- computed: {
- getDuty() {
- return (num) => {
- if (num === '1') {
- return '值班人';
- } else if (num === '2') {
- return '站长';
- } else {
- return '普通人员';
- }
- };
- }
- }
- }
- </script>
- <style>
- /deep/ .typeStyle {
- width: 650rpx !important;
- }
- /deep/ .antherStyle {
- width: 630rpx;
- height: 100rpx;
- margin-left: 20rpx;
- }
- /deep/ .antherBtn {
- width: 200rpx;
- height: 50rpx;
- margin-bottom: 30rpx;
- background-color: #4DB1B6;
- color: white;
- text-align: center;
- line-height: 50rpx;
- font-size: 30rpx;
- border-radius: 20rpx;
- }
- .tableBox {
- width: 90%;
- height: auto;
- margin: 20rpx auto;
- margin-left: 40rpx;
- /* background-color: aqua; */
- }
- .custom-table {
- border-collapse: collapse;
- /* 合并边框 */
- }
- .custom-table th,
- .custom-table td {
- /* width: 39.5%; */
- border: 1px solid #4DB1B6;
- /* 添加边框样式 */
- padding: 8px;
- /* 设置单元格内边距 */
- }
- .aTd {
- /* width: 60%; */
- }
- .editBtn {
- width: 100rpx;
- height: 60rpx;
- background-color: #4DB1B6;
- color: white;
- text-align: center;
- line-height: 60rpx;
- border-radius: 10rpx;
- font-size: 20rpx;
- margin-bottom: 10rpx;
- margin-right: 10rpx;
- }
- .modalBox {
- width: 700rpx;
- height: 880rpx;
- }
- .insides {
- width: 400rpx;
- height: 100rpx;
- border: 1px solid #4DB1B6;
- }
- .useBox {
- display: flex;
- justify-content: space-around;
- align-items: center;
- margin-top: 20rpx;
- }
- .erroring {
- color: red;
- font-size: 20rpx;
- }
- .circleBtn {
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- font-size: 90rpx;
- text-align: center;
- line-height: 100rpx;
- color: white;
- background-color: #4EB0B5;
- position: absolute;
- top: 1300rpx;
- left: 590rpx;
- }
- .cardBox {
- width: 650rpx;
- margin: 30rpx auto;
- border-radius: 30rpx;
- }
- .u-form-item__body__left {
- width: 100rpx;
- }
- </style>
|