123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <div class="padding-20">
- <div class="search-box">
- <el-form
- ref="form"
- :inline="true"
- :model="searchForm"
- clearable
- class="mt-10">
- <el-form-item label="vr名称:">
- <el-input v-model="searchForm.vr_name" placeholder="请输入vr名称" clearable></el-input>
- </el-form-item>
- <el-form-item label="状态:">
- <el-select
- v-model="searchForm.status"
- filterable
- clearable
- placeholder="请选择状态">
- <el-option
- v-for="item in arrLunboStatus"
- :key="item.value"
- :label="item.name"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="创建时间:">
- <el-date-picker
- :editable="false"
- v-model="time"
- @change="timearr => {timearr ? (searchForm.start_time = timearr[0] + ' 00:00:00', searchForm.end_time = timearr[1] + ' 23:59:59') : searchForm.start_time = searchForm.end_time = undefined}"
- type="daterange"
- value-format="yyyy-MM-dd"
- start-placeholder="开始时间"
- end-placeholder="结束时间"
- ></el-date-picker>
- </el-form-item>
- <el-form-item class="ml-10">
- <el-button icon="el-icon-search" type="primary" @click="searchSubmit">查询</el-button>
- </el-form-item>
- <el-form-item class="ml-10">
- <el-button icon="el-icon-plus"
- type="primary"
- @click="add">新增
- </el-button>
- </el-form-item>
- </el-form>
- </div>
- <el-table
- :data="tableData"
- stripe
- v-loading="tableLoading"
- fit
- class="marginT-10 order-table"
- :max-height="vheight">
- <el-table-column label="名称" prop="vr_name" show-overflow-tooltip></el-table-column>
- <el-table-column label="介绍" prop="vr_introduce" show-overflow-tooltip min-width="140"></el-table-column>
- <el-table-column label="地址" prop="vr_url" show-overflow-tooltip min-width="140"></el-table-column>
- <el-table-column label="vr封面" prop="vr_img_url" min-width="100">
- <template slot-scope="scope">
- <el-image
- style="display:block;width: 80px; height: 80px;font-size: 0;"
- :src="scope.row.vr_img_url"
- :preview-src-list="[scope.row.vr_img_url]">
- </el-image>
- </template>
- </el-table-column>
- <el-table-column label="状态" prop="status">
- <template slot-scope="scope">
- <p>{{ getText(arrLunboStatus, scope.row.status) }}</p>
- </template>
- </el-table-column>
- <el-table-column label="是否置顶" prop="top">
- <template slot-scope="scope">
- <p>{{ getText(arrProductIsRecommend, scope.row.top) }}</p>
- </template>
- </el-table-column>
- <el-table-column label="创建时间" prop="created_at" min-width="160"></el-table-column>
- <el-table-column label="更新时间" prop="updated_at" min-width="160"></el-table-column>
- <el-table-column label="操作" width="160">
- <template slot-scope="scope">
- <el-button type="text" @click="edit(scope.row)">编辑</el-button>
- <el-button type="text" @click="del(scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- class="marginT-20"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :hide-on-single-page="true"
- :current-page="page"
- :page-size="page_size"
- :page-sizes="[10, 20, 100, 200, 300, 400]"
- background
- layout="total, sizes, prev, pager, next, jumper"
- :total="totalCount"/>
- <detail v-if="detailsDialog.show"
- v-model="detailsDialog.show"
- :exData="detailsDialog.exData"
- @success="init"></detail>
- </div>
- </template>
- <script>
- import page from '@/mixin/page'
- import detail from './details'
- export default {
- mixins: [page],
- components: {
- detail
- },
- data() {
- return {
- detailsDialog: {
- show: false,
- exData: {}
- },
- time: [],
- searchForm: {},
- tableData: [],
- tableUrl: '/api/admin/vr/list'
- }
- },
- computed: {
- arrLunboStatus() {
- return this.$store.state.common.arrLunboStatus
- },
- arrProductIsRecommend() {
- return this.$store.state.common.arrProductIsRecommend
- }
- },
- methods: {
- add() {
- this.detailsDialog.exData = {}
- this.detailsDialog.show = true
- },
- edit(row) {
- this.detailsDialog.exData = row
- this.detailsDialog.show = true
- },
- del(row) {
- this.$confirm('确定要删除吗', '确认', {
- type: 'warning'
- }).then(async () => {
- const data = await this.$fetch('/api/admin/vr/delete', { id: row.id })
- if (data.code === 200) {
- this.$message.success('删除成功')
- this.init()
- }
- }).catch(() => {
- })
- },
- getText(arr, value) {
- const temp = arr.filter(item => item.value === value)
- if (temp.length > 0) {
- return temp[0].name
- }
- return ''
- }
- },
- mounted() {
- this.init()
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|