Blame view

src/components/community/ChooseInitializeCommunity.vue 1.7 KB
b25b036d   wuxw   v1.9 优化日期
1
  <template>
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
    <el-dialog
      :title="$t('chooseinitializeCommunity.dialog.title')"
      :visible.sync="visible"
      width="50%"
      :before-close="handleClose"
    >
      <div class="modal-body">
        <li style="color: red;">
          {{ $t('chooseinitializeCommunity.dialog.warning') }},
          {{ $t('chooseinitializeCommunity.dialog.communityInfo', {
            name: communityInfo.name,
            id: communityInfo.communityId
          }) }}
        </li>
        <br />
        <el-input
          v-model="devPassword"
          :placeholder="$t('chooseinitializeCommunity.dialog.passwordPlaceholder')"
          type="password"
          show-password
        />
      </div>
      <span slot="footer" class="dialog-footer">
        <el-button @click="handleClose">
          {{ $t('chooseinitializeCommunity.button.cancel') }}
        </el-button>
        <el-button type="primary" @click="handleConfirm">
          {{ $t('chooseinitializeCommunity.button.confirm') }}
        </el-button>
      </span>
    </el-dialog>
  </template>
  
  <script>
  export default {
    name: 'ChooseInitializeCommunity',
    props: {
      visible: {
        type: Boolean,
        default: false
      },
      communityInfo: {
        type: Object,
        default: () => ({})
      }
    },
    data() {
      return {
        devPassword: ''
      }
    },
    methods: {
      handleClose() {
        this.devPassword = ''
        this.$emit('update:visible', false)
      },
      handleConfirm() {
        if (!this.devPassword) {
          this.$message.warning(this.$t('chooseinitializeCommunity.validation.passwordRequired'))
          return
        }
        
        this.$emit('confirm', {
          communityId: this.communityInfo.communityId,
          devPassword: this.devPassword
        })
        this.handleClose()
      }
    }
  }
  </script>