Blame view

src/components/admin/WriteAdvertMachine.vue 1.32 KB
5c5dc3cd   wuxw   开发完成营销广告功能
1
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
  <template>
    <el-dialog
      :title="$t('advertManage.machine.title')"
      :visible.sync="visible"
      width="50%"
      @close="handleClose">
      <el-form label-width="120px">
        <el-form-item :label="$t('advertManage.machine.machineCode')">
          <el-input 
            v-model="machineCode" 
            :placeholder="$t('advertManage.machine.machineCodePlaceholder')" />
        </el-form-item>
      </el-form>
      <span slot="footer" class="dialog-footer">
        <el-button @click="visible = false">{{ $t('common.cancel') }}</el-button>
        <el-button type="primary" @click="handleView">{{ $t('advertManage.machine.view') }}</el-button>
      </span>
    </el-dialog>
  </template>
  
  <script>
  export default {
    name: 'WriteAdvertMachine',
    data() {
      return {
        visible: false,
        machineCode: ''
      }
    },
    methods: {
      open() {
        this.visible = true
        this.machineCode = ''
      },
      handleClose() {
        this.machineCode = ''
      },
      handleView() {
        if (!this.machineCode) {
          this.$message.error(this.$t('advertManage.validate.machineCodeRequired'))
          return
        }
        this.$router.push({
          path: '/advertVedio',
          query: {
            machineCode: this.machineCode,
            communityId: this.$store.getters.communityId
          }
        })
        this.visible = false
      }
    }
  }
  </script>