123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- <template>
- <div class="subPage">
- <div class="system-table-search">
- <div class="flex-h">
- <div class="flex-item flex-h">
- <el-button size="mini" type="success" @click="addCard">新增课程体验卡</el-button>
- </div>
- <ul>
- <li>
-
- <el-select v-model="CaseId" placeholder="请选择案场">
- <el-option
- v-for="item in cases"
- :key="item.CaseId"
- :label="item.CaseName"
- :value="item.CaseId">
- </el-option>
- </el-select>
- </li>
- </ul>
- <el-button
- size="mini"
- type="primary" @click="search">搜索</el-button>
- </div>
- <div class="moreFilter"></div>
- </div>
- <div class="system-table-box">
- <el-table
- :data="cardList.list"
- stripe
- style="width: 100%">
- <el-table-column
- prop="CardName"
- label="卡名称">
- </el-table-column>
-
-
- <el-table-column
- prop="Price"
- label="卡价格">
- </el-table-column>
- <el-table-column
- prop="StartDate"
- label="有效期"
- width="150">
- <template slot-scope="scope">
- <span style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.StartDate, 'yyyy-MM-dd')}}</span>
- <span style="width:100%;display:block;text-align:center;white-space: nowrap;">至</span>
- <span style="width:100%;display:block;text-align:center;white-space: nowrap;">{{toolClass.dateFormat(scope.row.EndDate, 'yyyy-MM-dd')}}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="SendType"
- label="发放类型">
- <template slot-scope="scope">
- <span>{{SendType(scope.row.SendType)}}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="TotalCount"
- label="总数量">
- </el-table-column>
-
-
- <el-table-column
- prop="Status"
- label="状态">
- <template slot-scope="scope">
- {{scope.row.Status == 1 ? '正常' : '已过期'}}
- </template>
- </el-table-column>
- <el-table-column label="操作" fixed='right' width="350">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="warning"
- @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
- <el-button
- size="mini"
- type="danger"
- @click="sendCard(scope.$index, scope.row)">赠送客户</el-button>
- <el-button
- size="mini"
- type="success"
- v-if="scope.row.SendType === 'channel'"
- v-clipboard:copy="clientUrl + '/user.html#/receiveChannelShared/' + scope.row.CardId + '/card/receive'"
- v-clipboard:success="onCopy"
- v-clipboard:error="onError"
- >点击复制链接</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <el-pagination
- @current-change="handleCurrentChange"
- :current-page.sync="postData.page"
- :page-size="postData.pagesize"
- layout="prev, pager, next, jumper"
- :total="total">
- </el-pagination>
- <el-dialog
- title="选择赠送客户"
- :visible.sync="centerDialogVisible"
- width="800px"
- center>
- <div>
- <ul class="dialogSearchList flex-h" style="margin-bottom:10px;">
- <li class="flex-item">
- <el-input
- placeholder="请输入用户名"
- v-model="dialogPostData.username"
- clearable>
- </el-input>
- </li>
- <li class="flex-item">
- <el-input
- placeholder="请输入手机号"
- v-model="dialogPostData.phone"
- clearable>
- </el-input>
- </li>
- <li class="flex-item">
- <el-input
- placeholder="请输入推荐人"
- v-model="dialogPostData.recommendname"
- clearable>
- </el-input>
- </li>
- <li>
- <el-button type="primary" @click="dialogSearch">搜索</el-button>
- </li>
- </ul>
- <ul class="dialogSearchList flex-h">
- <li class="flex-item">
- <el-date-picker
- v-model="dialogPostData.begindate"
- type="date"
- placeholder="选择起始日期">
- </el-date-picker>
- <el-date-picker
- v-model="dialogPostData.enddate"
- type="date"
- placeholder="选择截止日期">
- </el-date-picker>
- </li>
- </ul>
- </div>
- <div>
- <el-table
- ref="multipleTable"
- :data="customers.list"
- tooltip-effect="dark"
- style="width: 100%"
- @selection-change="handleSelectionChange">
- <el-table-column
- type="selection">
- </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="CreatDate"
- label="创建时间">
- <template slot-scope="scope">
- <span>{{toolClass.dateFormat(scope.row.CreateDate, 'yyyy-MM-dd')}}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="RecommendName"
- label="推荐人">
- </el-table-column>
- </el-table>
- </div>
- <div>
- <el-pagination
- @current-change="handleCurrentChangeDialog"
- :current-page.sync="dialogPostData.page"
- :page-size="dialogPostData.pagesize"
- layout="prev, pager, next, jumper"
- :total="dialogTotal">
- </el-pagination>
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="closeDialog">取 消</el-button>
- <el-button type="primary" @click="toSendCard">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog
- title="手动复制"
- :visible.sync="copyDialogVisible"
- width="300px"
- center>
- <div>
- <el-input
- placeholder="请输入内容"
- v-model="currentCopyUrl"
- clearable>
- </el-input>
-
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button type="primary" @click="copyDialogVisible = false">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
-
- <script>
- import Clipboard from 'clipboard'
- import { mapState, createNamespacedHelpers } from 'vuex'
- const { mapState: mapCardState, mapActions: mapCardActions } = createNamespacedHelpers('card')
- const { mapState: mapCustomerState, mapActions: mapCustomerActions } = createNamespacedHelpers('customer')
-
- export default {
- name: '',
- data () {
- return {
- currentCopyUrl: '',
- copyDialogVisible: false,
- selectCustomer: [],
- dialogTotal: 0,
- dialogPostData: {
- username: '',
- phone: '',
- recommendname: '',
- begindate: '',
- enddate: '',
- page: 1,
- pagesize: 10,
- },
- customerList: [],
- centerDialogVisible: false,
- total: 0,
- postData: {
- caseid: '',
- page: 1,
- pagesize: 10,
- },
- }
- },
- mounted () {
- this.$nextTick(function () {
- this.getList()
- })
- },
- computed: {
- ...mapCardState({
- cardList: x => x.cardList,
- }),
- ...mapState({
- clientUrl: x => x.app.clientUrl,
- cases: x => x.app.cases.list,
- defaultCaseId: x => x.app.cases.default
- }),
- ...mapCustomerState({
- customers: x => x.customers,
- }),
- CaseId: {
- get () {
- return this.postData.caseid || this.defaultCaseId
- },
- set (val) {
- this.postData.caseid = val
- }
- }
- },
- methods: {
- ...mapCardActions([
- 'GetCardList',
- 'giveCard',
- ]),
- ...mapCustomerActions([
- 'GetCustomerList',
- 'SetCustomerListNull',
- ]),
- SendType (type) {
- if (type === 'channel') {
- return '渠道'
- }
- if (type === 'case') {
- return '案场'
- }
- if (type === 'system') {
- return '系统'
- }
- },
- toSendHistory () {
- this.$router.push({ name: 'givingRecords' })
- },
- dialogSearch () {
- this.GetCustomerList(this.dialogPostData)
- },
- handleCurrentChangeDialog (val) {
- this.dialogPostData.page = val
- this.GetCustomerList(this.dialogPostData)
- },
- handleSelectionChange (val) {
-
- this.selectCustomer = val
- },
- toSendCard () {
- if (this.selectCustomer.length) {
- this.selectCustomer = this.selectCustomer.map(x => x.CustomerId).join(',')
- this.giveCard({
- id: this.currentCardId,
- users: this.selectCustomer,
- }).then(res => {
- this.$message({
- type: 'success',
- message: '赠送成功!'
- })
- this.centerDialogVisible = false
- this.selectCustomer = []
- if (this.customers.list.length) {
- this.customers.list = []
- }
- this.getList()
- })
- } else {
- this.$message({
- type: 'error',
- message: '请先选择需要赠送的客户!'
- })
- }
- },
- closeDialog () {
- this.centerDialogVisible = false
- if (this.customers.list.length) {
- this.customers.list = []
- }
- },
- sendCard (index, row) {
- this.currentCardId = row.CardId
- this.centerDialogVisible = true
- },
- search () {
- this.postData.page = 1
- this.currentList = []
- this.getList()
- },
- getList () {
- this.GetCardList({
- ...this.postData,
- caseid: this.CaseId || this.defaultCaseId
- }).then((res) => {
- this.total = res.pagenum
-
- })
- },
- handleCurrentChange (val) {
- this.getList()
- },
- handleEdit (index, row) {
- this.$router.push({ name: 'editCard', query: { id: row.CardId } })
- },
-
-
-
-
- toCopy (index, row) {
- console.log(1)
- var clipboard = new Clipboard(this.$refs['copy' + index])
- clipboard.on('success', e => {
- console.log('复制成功')
- clipboard.destroy()
- })
- clipboard.on('error', e => {
- console.log('该浏览器不支持自动复制')
- clipboard.destroy()
- })
- },
- addCard () {
- this.$router.push({ name: 'editCard', query: {} })
- },
- onCopy () {
- this.$message({
- type: 'success',
- message: '复制成功!'
- })
- },
- onError () {
- this.$message({
- type: 'error',
- message: '复制失败!'
- })
- },
- }
- }
- </script>
-
-
- <style lang="scss" scoped>
- @import "page.scss";
- .dialogSearchList {
- align-items: center;
- > li {
- font-size: 0;
- margin-left: 10px;
- &:first-child {
- margin-left: 0;
- }
- > *:nth-child(2) {
- margin-left: 10px;
- }
- }
- }
- .copyBtn{
- line-height: 29px;
- border-radius: 3px;
- color: #fff;
- background: #67c23a;
- display: inline-block;
- padding: 0 15px;
- margin-left: 10px;
- }
- </style>
|