|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <div class="app-container">
- <!--工具栏-->
- <div class="head-container">
- <div v-if="crud.props.searchToggle">
- <!-- 搜索 -->
- <el-input v-model="query.blurry" clearable placeholder="输入搜索内容" style="width: 200px" class="filter-item" @keyup.enter.native="crud.toQuery" />
- <date-range-picker v-model="query.deployDate" class="date-item" />
- <rrOperation />
- </div>
- <crudOperation :permission="permission" />
- </div>
- <!--表格渲染-->
- <el-table ref="table" v-loading="crud.loading" :data="crud.data" style="width: 100%" @selection-change="crud.selectionChangeHandler">
- <el-table-column type="selection" width="55" />
- <el-table-column prop="appName" label="应用名称" />
- <el-table-column prop="ip" label="部署IP" />
- <el-table-column prop="deployUser" label="部署人员" />
- <el-table-column prop="deployDate" label="部署时间" />
- <el-table-column v-if="checkPer(['admin','deployHistory:del'])" label="操作" width="100px" align="center">
- <template slot-scope="scope">
- <el-popover
- :ref="scope.row.id"
- v-permission="['admin','deployHistory:del']"
- placement="top"
- width="180"
- >
- <p>确定删除本条数据吗?</p>
- <div style="text-align: right; margin: 0">
- <el-button size="mini" type="text" @click="$refs[scope.row.id].doClose()">取消</el-button>
- <el-button :loading="delLoading" type="primary" size="mini" @click="delMethod(scope.row.id)">确定</el-button>
- </div>
- <el-button slot="reference" type="danger" icon="el-icon-delete" size="mini" />
- </el-popover>
- </template>
- </el-table-column>
- </el-table>
- <!--分页组件-->
- <pagination />
- </div>
- </template>
-
- <script>
- import { del } from '@/api/mnt/deployHistory'
- import CRUD, { presenter, header } from '@crud/crud'
- import rrOperation from '@crud/RR.operation'
- import crudOperation from '@crud/CRUD.operation'
- import pagination from '@crud/Pagination'
- import DateRangePicker from '@/components/DateRangePicker'
-
- export default {
- name: 'DeployHistory',
- components: { pagination, crudOperation, rrOperation, DateRangePicker },
- cruds() {
- return CRUD({ title: '部署历史', url: 'api/deployHistory', crudMethod: { del }})
- },
- mixins: [presenter(), header()],
- data() {
- return {
- delLoading: false,
- permission: {
- del: ['admin', 'deployHistory:del']
- }
- }
- },
- created() {
- this.crud.optShow = {
- add: false,
- edit: false,
- del: true,
- download: true
- }
- },
- methods: {
- delMethod(id) {
- this.delLoading = true
- del([id]).then(() => {
- this.delLoading = false
- this.$refs[id].doClose()
- this.crud.dleChangePage(1)
- this.crud.delSuccessNotify()
- this.crud.toQuery()
- }).catch(() => {
- this.delLoading = false
- this.$refs[id].doClose()
- })
- }
- }
- }
- </script>
-
- <style scoped>
- </style>
|