| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443 |
- <template>
- <wrapper
- fill
- margin
- padding
- background
- >
- <c-table
- :curr="options"
- @pagination="getList"
- >
- <template #header>
- <div class="l-flex__auto c-sibling-item">
- <button
- class="o-button"
- @click="onAdd"
- >
- <i class="o-button__icon el-icon-circle-plus-outline" />
- 新增
- </button>
- </div>
- <el-select
- v-model="options.params.resolutionRatio"
- class="l-flex__none c-sibling-item o-select"
- placeholder="请选择分辨率"
- :loading="fetching"
- @change="search"
- @visible-change="getRatios"
- >
- <el-option
- v-for="item in resolutionRatios"
- :key="item.label"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- <el-select
- v-model="options.params.status"
- class="l-flex__none c-sibling-item o-select"
- placeholder="请选择状态"
- @change="search"
- >
- <el-option
- v-for="item in statusOptions"
- :key="item.label"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- <search-input
- v-model.trim="options.params.name"
- class="l-flex__none c-sibling-item"
- placeholder="名称"
- @search="search"
- />
- <button
- class="l-flex__none c-sibling-item o-button"
- @click="search"
- >
- 搜索
- </button>
- </template>
- <el-table-column
- prop="name"
- label="名称"
- align="center"
- show-overflow-tooltip
- />
- <el-table-column
- prop="resolutionRatio"
- label="分辨率"
- align="center"
- show-overflow-tooltip
- />
- <el-table-column
- label="审核状态"
- align="center"
- min-width="100"
- >
- <template v-slot="scope">
- <el-tag
- v-if="scope.row.status === 1"
- class="o-tag u-readonly"
- type="warning"
- size="medium"
- >
- 未审核
- </el-tag>
- <el-tag
- v-else-if="scope.row.status === 2"
- class="o-tag u-readonly"
- type="success"
- size="medium"
- >
- 已审核
- </el-tag>
- <el-tag
- v-else
- class="o-tag u-readonly"
- size="medium"
- >
- 待提交
- </el-tag>
- </template>
- </el-table-column>
- <el-table-column
- prop="createTime"
- label="创建时间"
- align="center"
- show-overflow-tooltip
- />
- <el-table-column
- label="操作"
- align="center"
- width="180"
- >
- <template v-slot="scope">
- <template v-if="scope.row.status === 0">
- <div
- class="c-table__btn u-pointer"
- @click="onDesign(scope.row.id)"
- >
- 编辑
- </div>
- <div
- class="c-table__btn u-pointer"
- @click="onSubmit(scope.row)"
- >
- 提交
- </div>
- </template>
- <template v-else>
- <div
- class="c-table__btn u-pointer"
- @click="onView(scope.row.id)"
- >
- 预览
- </div>
- <div
- class="c-table__btn u-pointer"
- @click="onCopy(scope.row)"
- >
- 复制
- </div>
- </template>
- <permission
- :skip="scope.row.status === 0"
- :access="Access.DELETE_FORCE"
- >
- <div
- class="c-table__btn u-pointer"
- @click="onDel(scope.row)"
- >
- 删除
- </div>
- </permission>
- </template>
- </el-table-column>
- </c-table>
- <el-dialog
- title="新增"
- :visible.sync="adding"
- custom-class="c-dialog"
- :close-on-click-modal="false"
- >
- <div class="c-form">
- <div class="c-form__section">
- <span class="c-form__label">名称:</span>
- <el-input
- v-model.trim="schedule.name"
- class="c-form__item"
- placeholder="请输入名称"
- maxlength="50"
- show-word-limit
- />
- </div>
- <div class="c-form__section">
- <span class="c-form__label">分辨率:</span>
- <el-select
- v-model="schedule.resolutionRatio"
- class="c-form__item"
- placeholder="请选择"
- popper-class="o-select-option"
- :loading="fetching"
- >
- <el-option
- v-for="ratio in ratios"
- :key="ratio.value"
- :label="ratio.label"
- :value="ratio.value"
- />
- </el-select>
- </div>
- </div>
- <template #footer>
- <button
- class="o-button"
- @click="add"
- >
- 确定
- </button>
- <button
- class="o-button cancel"
- @click="onCloseAddDialog"
- >
- 取消
- </button>
- </template>
- </el-dialog>
- <el-dialog
- :visible.sync="isPreviewing"
- custom-class="c-preview schedule"
- :before-close="onCloseScheduleDialog"
- >
- <schedule
- v-if="scheduleId"
- class="l-flex__auto has-padding"
- :schedule="scheduleId"
- />
- </el-dialog>
- <el-dialog
- title="复制"
- :visible.sync="copying"
- custom-class="c-dialog mini"
- :close-on-click-modal="false"
- :before-close="onCloseCopyDialog"
- >
- <div class="c-form">
- <div class="c-form__section">
- <span class="c-form__label auto">名称:</span>
- <el-input
- v-model.trim="copySchedule.name"
- class="c-form__item"
- placeholder="请输入名称"
- maxlength="50"
- show-word-limit
- />
- </div>
- </div>
- <template #footer>
- <button
- class="o-button"
- @click="copy"
- >
- 确定
- </button>
- <button
- class="o-button cancel"
- @click="onCloseCopyDialog"
- >
- 取消
- </button>
- </template>
- </el-dialog>
- </wrapper>
- </template>
- <script>
- import { getRatios } from '@/api/device'
- import {
- getSchedules,
- addSchedule,
- deleteSchedule,
- submitSchedule,
- copySchedule
- } from '@/api/calendar'
- import { State } from '@/constant'
- import { createListOptions } from '@/utils'
- export default {
- name: 'ScheduleList',
- data () {
- return {
- statusOptions: [
- { value: void 0, label: '全部状态' },
- { value: State.READY, label: '待提交' },
- { value: State.SUBMITTED, label: '未审核' },
- { value: State.RESOLVED, label: '已审核' }
- ],
- options: createListOptions({
- type: this.$route.meta.info.type,
- status: void 0,
- resolutionRatio: void 0,
- name: ''
- }),
- adding: false,
- schedule: {},
- scheduleId: null,
- fetching: false,
- ratios: [],
- isPreviewing: false,
- copying: false,
- copySchedule: {
- id: null,
- name: ''
- }
- }
- },
- computed: {
- resolutionRatios () {
- return [{ value: void 0, label: '全部分辨率' }].concat(this.ratios.map(({ value }) => {
- return { value, label: value }
- }))
- }
- },
- created () {
- this.getList()
- },
- activated () {
- if (this.$route.params.refresh) {
- const status = this.options.params.status
- if (status !== void 0) {
- this.options.params.status = void 0
- }
- this.search()
- }
- },
- methods: {
- search () {
- const options = this.options
- options.list = []
- options.totalCount = 0
- options.params.pageNum = 1
- this.getList()
- },
- getList () {
- const options = this.options
- if (!options.loading) {
- options.error = false
- options.loading = true
- getSchedules(options.params).then(({ data, totalCount }) => {
- options.list = data
- options.totalCount = totalCount
- }, () => {
- options.error = true
- options.list = []
- }).finally(() => {
- options.loading = false
- })
- }
- },
- getRatios () {
- if (!this.fetching && this.ratios.length === 0) {
- this.fetching = true
- getRatios().then(ratios => {
- this.ratios = ratios
- }).finally(() => {
- this.fetching = false
- })
- }
- },
- onAdd () {
- this.schedule = {
- type: this.$route.meta.info.type,
- name: '',
- resolutionRatio: ''
- }
- this.adding = true
- this.getRatios()
- },
- onCloseAddDialog () {
- this.adding = false
- },
- add () {
- if (!this.schedule.name) {
- this.$message({
- type: 'warning',
- message: '名称不能为空'
- })
- return
- }
- if (!this.schedule.resolutionRatio) {
- this.$message({
- type: 'warning',
- message: '请选择分辨率'
- })
- return
- }
- addSchedule(this.schedule).then(({ data: id }) => {
- this.onCloseAddDialog()
- const params = this.options.params
- if (params.status && params.status !== State.READY) {
- params.status = void 0
- }
- if (params.name && !(new RegExp(params.name).test(this.schedule.name))) {
- params.name = ''
- }
- this.search()
- this.onDesign(id)
- })
- },
- onView (id) {
- this.scheduleId = id
- this.isPreviewing = true
- },
- onCloseScheduleDialog () {
- this.scheduleId = null
- this.isPreviewing = false
- },
- onDesign (id) {
- this.$router.push({
- name: this.$route.meta.info.design,
- params: { id: `${id}` }
- })
- },
- onSubmit (item) {
- submitSchedule(item).then(() => {
- this.search()
- })
- },
- onDel (item) {
- deleteSchedule(item).then(() => {
- const options = this.options
- if (options.list.length === 1 && options.params.pageNum > 1) {
- options.params.pageNum -= 1
- }
- this.getList()
- })
- },
- onCopy ({ id, name }) {
- this.copySchedule = { id, name }
- this.copying = true
- },
- copy () {
- const { id, name } = this.copySchedule
- copySchedule({ id }, name).then(() => {
- this.onCloseCopyDialog()
- const params = this.options.params
- if (params.status !== void 0 && params.status !== State.READY) {
- params.status = void 0
- }
- if (params.name && !(new RegExp(params.name).test(name))) {
- params.name = ''
- }
- this.search()
- })
- },
- onCloseCopyDialog () {
- this.copying = false
- }
- }
- }
- </script>
|