123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <template>
- <view class="content">
- <view class="one">
- <uni-forms ref="valiForm" :rules="rules" :modelValue="form" labelWidth="80px">
- <uni-forms-item label="姓名" required name="name">
- <uni-easyinput v-model="form.name" placeholder="请输入姓名" />
- </uni-forms-item>
- <uni-forms-item label="性别" required name="gender">
- <uni-data-checkbox v-model="form.gender" :localdata="genderList" />
- </uni-forms-item>
- <uni-forms-item label="联系电话" required name="tel">
- <uni-easyinput v-model="form.tel" placeholder="请输入联系电话" />
- </uni-forms-item>
- <uni-forms-item label="角色" required name="role">
- <uni-data-select v-model="form.role" :localdata="roleList" @change="rolechange"></uni-data-select>
- </uni-forms-item>
- <uni-forms-item v-if="disabledOne" label="所属街道" required name="street">
- <uni-data-select v-model="form.street" :localdata="streetList" @change="streetchange">
- </uni-data-select>
- </uni-forms-item>
- <uni-forms-item v-if="disabledTwo" label="所属社区">
- <uni-data-select v-model="form.community" :localdata="commList" @change="commchange">
- </uni-data-select>
- </uni-forms-item>
- </uni-forms>
- <button class="button" type="primary" @click="submit('valiForm')">修改</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- disabledOne: true,
- disabledTwo: true,
- id:'',
- form: {},
- // 校验规则
- rules: {
- name: {
- rules: [{
- required: true,
- errorMessage: '姓名不能为空'
- }]
- },
- tel: {
- rules: [{
- required: true,
- errorMessage: '联系电话不能为空'
- }, {
- format: 'number',
- errorMessage: '联系电话只能输入数字'
- }]
- },
- gender: {
- rules: [{
- required: true,
- errorMessage: '性别不能为空'
- }]
- },
- role: {
- rules: [{
- required: true,
- errorMessage: '角色不能为空'
- }]
- },
- },
- // 字典表
- roleList: [],
- genderList: [],
- streetList: [],
- commList: []
- }
- },
- async onLoad() {
- const that = this;
- await that.searchToken();
- await that.searchOther();
- },
- methods: {
- async searchToken() {
- const that = this;
- uni.getStorage({
- key: 'token',
- success: function(res) {
- that.$set(that, `id`, res.data._id);
- that.$set(that, `form`, res.data);
- that.streetchange(res.data.street)
- if (res.data.role == 'cs') {
- that.$set(that, `disabledOne`, false);
- that.$set(that, `disabledTwo`, false);
- } else if (res.data.role == 'sqry') {
- that.$set(that, `disabledOne`, true);
- that.$set(that, `disabledTwo`, true);
- } else {
- that.$set(that, `disabledOne`, true);
- that.$set(that, `disabledTwo`, false);
- }
- },
- fail: function(err) {
- uni.showToast({
- title: err.errmsg,
- icon: 'error',
- duration: 2000
- });
- }
- })
- },
- // 角色选择
- rolechange(role) {
- const that = this;
- if (role == 'cs') {
- that.$set(that, `disabledOne`, false);
- that.$set(that, `disabledTwo`, false);
- } else if (role == 'sqry') {
- that.$set(that, `disabledOne`, true);
- that.$set(that, `disabledTwo`, true);
- } else {
- that.$set(that, `disabledOne`, true);
- that.$set(that, `disabledTwo`, false);
- }
- },
- // 所属街道选择
- async streetchange(belong) {
- const that = this;
- that.$set(that.form, `street`, belong);
- //所属社区
- const res = await that.$api('/Office', 'GET', {
- belong,
- type: '1',
- is_use: '0'
- })
- if (res.errcode == '0') {
- let commList = []
- for (let val of res.data) {
- commList.push({
- text: val.name,
- value: val._id
- })
- }
- that.$set(that, `commList`, commList);
- }
- },
- // 所属社区
- commchange(community) {
- const that = this;
- that.$set(that.form, `community`, community);
- },
- // 修改
- submit(ref) {
- const that = this;
- that.$refs[ref].validate().then(async params => {
- that.form.status = '0'
- delete that.form._id;
- delete that.form.iat;
- delete that.form.exp;
- const res = await that.$api(`/User/${that.id}`, 'POST', that.form);
- if (res.errcode == '0') {
- uni.showToast({
- title: '修改信息成功',
- icon: 'none'
- })
- that.toExit()
- } else {
- uni.showToast({
- title: res.errmsg,
- icon: 'none'
- })
- }
- }).catch(err => {
- console.log('err', err);
- })
- },
- // 退出登录
- toExit() {
- uni.removeStorage({
- key: 'token',
- success: function(res) {
- let url = `/pages/index/index`;
- uni.reLaunch({
- url
- })
- }
- });
- },
- async searchOther() {
- const that = this;
- let res;
- //性别
- res = await that.$api('/DictData', 'GET', {
- type: 'gender',
- is_use: '0'
- })
- if (res.errcode == '0') {
- let genderList = []
- for (let val of res.data) {
- genderList.push({
- text: val.label,
- value: val.value
- })
- }
- that.$set(that, `genderList`, genderList);
- }
- //角色
- res = await that.$api('/Role', 'GET', {
- is_use: '0'
- })
- if (res.errcode == '0') {
- let roleList = []
- for (let val of res.data) {
- roleList.push({
- text: val.name,
- value: val.code
- })
- }
- that.$set(that, `roleList`, roleList);
- }
- //所属街道
- res = await that.$api('/Office', 'GET', {
- type: '0',
- is_use: '0'
- })
- if (res.errcode == '0') {
- let streetList = []
- for (let val of res.data) {
- streetList.push({
- text: val.name,
- value: val._id
- })
- }
- that.$set(that, `streetList`, streetList);
- }
- },
- }
- }
- </script>
- <style lang="scss">
- .content {
- display: flex;
- flex-direction: column;
- .one {
- padding: 3vw;
- .button {
- margin: 2vw 0 0 0;
- background-color: var(--f3CColor);
- color: var(--mainColor);
- font-size: var(--font14Size);
- }
- }
- }
- </style>
|