123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <template>
- <div class="subPage">
- <div class="list flex-h">
- <div class="flex-item">
- <div style="text-align:right;margin: 20px 0 0;border:none;">
- <el-button
- size="mini"
- type="warning"
- @click="reback">返回</el-button>
- </div>
- <div>
- <el-table
- :data="info"
- stripe
- style="width: 100%">
- <el-table-column
- prop="CaseName"
- label="所在案场">
- </el-table-column>
- <el-table-column
- prop="PrizeName"
- label="奖品名称">
- </el-table-column>
- <el-table-column
- prop="Name"
- label="姓名">
- </el-table-column>
- <el-table-column
- prop="CustomerName"
- label="微信昵称">
- </el-table-column>
- <el-table-column
- prop="Phone"
- label="手机号">
- </el-table-column>
- <el-table-column
- prop="ActivitName"
- label="活动名称">
- </el-table-column>
- <el-table-column
- prop="CreateDate"
- label="获取时间"
- width="140px">
- <template slot-scope="scope">
- {{scope.row.CreateDate === '0001-01-01T00:00:00Z' ? '-' : toolClass.dateFormat(scope.row.CreateDate)}}
- </template>
- </el-table-column>
- <el-table-column
- prop="Status"
- label="状态">
- <template slot-scope="scope">
- {{scope.row.Status === 0 ? '未核销' : '已核销'}}
- </template>
- </el-table-column>
- <el-table-column
- label="操作">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="success"
- v-if="scope.row.Status === 0"
- @click="check(scope.row)">核销</el-button>
- <span v-else>已核销</span>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <span class="noData" v-if="!info.length && ajaxOff">查不到当前信息,请核对二维码或详情</span>
- </div>
- </div>
- </div>
- </template>
-
- <script>
- import { createNamespacedHelpers } from 'vuex'
-
- const { mapActions: mapVerifActions } = createNamespacedHelpers('verification')
-
- export default {
- name: '',
- data () {
- return {
- ajaxOff: false,
- info: [],
- }
- },
- mounted () {
- this.$nextTick(function () {
- this.drawVerifyList({
- id: this.$route.query.code
- }).then((res) => {
- // console.log(JSON.stringify(res))
- if (res !== null) {
- this.info.push(res)
- }
- this.ajaxOff = true
- })
- })
- },
- computed: {
- },
- methods: {
- ...mapVerifActions([
- 'drawVerify',
- 'drawVerifyList',
- ]),
- check (item) { // 核销
- this.$confirm('确认核销此卡?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.drawVerify({
- id: this.$route.query.code
- }).then((res) => {
- this.$message({
- type: 'success',
- message: '操作成功!'
- })
- this.$router.push({ name: 'drawVerification' })
- })
- })
- },
- getList () {
- // 1
- },
- afterCheck () {
- this.$message({
- type: 'success',
- message: '操作成功!'
- })
- this.getList()
- },
- reback () { // 返回
- this.$router.push({ name: 'drawVerification' })
- },
- }
- }
- </script>
-
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style lang="scss" scoped>
- .subPage {
- .list {
- > div {
- margin: 0 20px;
- > div {
- width: 100%;
- position: relative;
- overflow: hidden;
- box-sizing: border-box;
- border: 1px solid #eee;
- border-bottom: none;
- margin-top: 20px;
- }
- }
- }
- .noData {
- width: 100%;
- display: block;
- line-height: 40px;
- font-size: 30px;
- color: #ccc;
- text-align: center;
- margin: 40px auto 0;
- }
- }
- </style>
|