添加虚拟清单列表页

This commit is contained in:
qq787203167
2022-04-02 14:35:57 +08:00
parent 1fd0df30de
commit 7db180d72a
4 changed files with 362 additions and 2 deletions
+7
View File
@@ -89,4 +89,11 @@
/**隐藏样式-modal确定按钮 */
.jee-hidden {
display: none
}
.box-input .ant-select-selection {
height: 38px !important;
}
.box-input .ant-select-selection__rendered {
line-height: 38px;
}
+6 -1
View File
@@ -574,5 +574,10 @@ module.exports = {
selectSplitListDisplay:'Please select whether to split the document list for display',
selectDisplayList:'please select whether to display in list',
documentSplitDisplay:'document splitting module display',
VirtualListName:'Virtual list name',
listStatus:'List status',
creater:'creater',
withdraw:'withdraw',
maintenanceList:'Maintenance list',
instructionForUse:'instruction for use'
}
+6 -1
View File
@@ -578,5 +578,10 @@ module.exports = {
selectSplitListDisplay:'请选择是否文档拆分列表展示',
selectDisplayList:'请选择是否列表展示',
documentSplitDisplay:'文档拆分模块展示',
VirtualListName:'虚拟清单名称',
listStatus:'清单状态',
creater:'创建人',
withdraw:'撤回',
maintenanceList:'维护清单',
instructionForUse:'使用说明'
}
@@ -0,0 +1,343 @@
<template>
<a-card :bordered="false">
<div class="table-page-search-wrapper">
<a-row :gutter="24">
<a-col :md="6" :sm="8">
<div class="box-title-text">
<div class="title-text" :title="$t('VirtualListName')">
<span>{{$t('VirtualListName')}}</span>
</div>
<a-input class="box-input" :placeholder="$t('PleaseEnter')+$t('VirtualListName')"
v-model="queryParam.db_field_name"></a-input>
</div>
</a-col>
<a-col :md="6" :sm="8">
<div class="box-title-text">
<div class="title-text" :title="$t('listStatus')">
<span>{{$t('listStatus')}}</span>
</div>
<j-dict-select-tag class="box-input" v-model="queryParam.db_field_name"
:placeholder="$t('PleaseSelect')+$t('listStatus')"
:type="'select'"
:triggerChange="false" :dictCode="''"/>
</div>
</a-col>
<span style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
<a-col :md="6" :sm="24">
<a-button class="box-button" type="primary" @click="searchQuery">{{$t('query')}}</a-button>
<a-button class="box-button" style="margin-left: 8px" @click="searchReset">{{$t('reset')}}</a-button>
</a-col>
</span>
</a-row>
</div>
<div class="table-operator">
<div @click="handleAdd" class="operator-text" v-has="'document:getInfoById'">
<a-icon type="plus"/>
{{$t('add')}}
</div>
<div @click="handleDel" class="operator-text" v-has="'document:deleteBatch'">
<a-icon type="delete"/>
{{$t('BatchDelete')}}
</div>
</div>
<div>
<a-table
ref="table"
size="middle"
:loading="loading"
:pagination="false"
:scroll="{x: true}"
rowKey="id"
:data-source="dataSource"
:row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
:columns="columns"
>
<span slot="VirtualListName" slot-scope="text,record">
<a @click="VirtualListNameClick(record)">{{text}}</a>
</span>
<span slot="operation" slot-scope="text,record">
<a class="text-operation" @click="edit(record)">{{$t('edit')}}</a>
<a class="text-operation" @click="withdraw(record)">{{$t('withdraw')}}</a>
<a class="text-operation" @click="maintenanceList(record)">{{$t('maintenanceList')}}</a>
<a class="text-operation" @click="subscribe(record)">
{{!record.subscribeFlag || record.subscribeFlag == 0 ? $t('subscribe') :$t('CancelSubscribe')}}
</a>
<a class="text-operation" @click="deleteLib(record)">{{$t('deleteLib')}}</a>
</span>
</a-table>
</div>
<div class="page">
<a-pagination
:show-total="total => $t('total')+` ${total} `+$t('strip')"
show-quick-jumper
show-size-changer
:page-size.sync="pageSize"
:total="total"
@change="pageOnChange"
@showSizeChange="SizeChange"
/>
</div>
<a-drawer
:title="title"
:maskClosable="false"
:width="600"
placement="right"
:closable="true"
@close="handleCancel"
:visible="visible"
style="height: 100%;overflow: auto;padding-bottom: 53px;">
<a-spin :spinning="confirmLoading">
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
<a-row :gutter="24">
<a-col :span="24">
<div class="box-title-text-add">
<div class="title-text-add">
<span class="Required">*</span>
<span class="title-text-text" :title="$t('VirtualListName')">{{$t('VirtualListName')}}</span>
</div>
<a-form-model-item class="itemModel" prop="VirtualListName">
<a-input class="box-input-add"
v-model="formInline.VirtualListName"
:placeholder="$t('PleaseEnter')+$t('instructionForUse')"/>
</a-form-model-item>
</div>
</a-col>
<a-col :span="24">
<div class="box-title-text-add">
<div class="title-text-add">
<span class="title-text-text" :title="$t('instructionForUse')">{{$t('instructionForUse')}}</span>
</div>
<a-form-model-item class="itemModel" prop="instructionForUse">
<a-textarea
:placeholder="$t('PleaseEnter')+$t('instructionForUse')"
v-model="formInline.instructionForUse" :rows="4"/>
</a-form-model-item>
</div>
</a-col>
</a-row>
</a-form-model>
</a-spin>
<div class="drawer-bootom-button">
<a-button style="margin-right: .8rem" @click="handleCancel">{{$t('cancel')}}</a-button>
<a-button @click="handleSubmit" type="primary" :loading="confirmLoading">{{$t('submit')}}</a-button>
</div>
</a-drawer>
</a-card>
</template>
<script>
import { getAction, postAction, downloadFile } from '@/api/manage'
export default {
name: 'index',
data() {
return {
loading: false,
selectedRowKeys: [],
formInline: {},
rules: {},
visible: false,
dataSource: [],
confirmLoading: false,
url: {},
total: 0,
pageSize: 10,
pageNo: 1,
title: '新增',
columns: [
{
title: this.$t('VirtualListName'),
align: 'center',
dataIndex: 'VirtualListName',
scopedSlots: { customRender: 'VirtualListName' }
},
{
title: this.$t('listStatus'),
align: 'center',
dataIndex: 'listStatus'
},
{
title: this.$t('creater'),
align: 'center',
dataIndex: 'creater'
},
{
title: this.$t('operation'),
align: 'center',
fixed: 'right',
width: 200,
scopedSlots: { customRender: 'operation' }
}
],
queryParam: {}
}
},
mounted() {
},
methods: {
onSelectChange(value) {
this.selectedRowKeys = value
},
//添加
handleAdd() {
this.title = '新增'
this.formInline = {}
this.visible = true
},
//批量删除
handleDel() {
},
//编辑
edit(item) {
this.title = '编辑'
this.formInline = item
this.visible = true
},
//撤回
withdraw() {
},
//维护清单
maintenanceList() {
},
//订阅
subscribe() {
},
//删除
deleteLib(item) {
},
//虚拟清单名称事件
VirtualListNameClick(item) {
},
searchQuery() {
this.pageNo = 1
},
searchReset() {
this.pageNo = 1
},
pageOnChange(page, pageSize) {
this.pageNo = page
},
SizeChange(page, pageSize) {
this.pageNo = 1
this.pageSize = pageSize
},
handleCancel() {
this.visible = false
},
handleSubmit() {
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
.box-title-text {
line-height: 1.4;
display: flex;
align-items: center;
margin-bottom: 10px;
}
.title-text {
width: 20%;
min-width: 110px;
color: #000F16;
display: inline-block;
font-weight: 500;
font-size: 14px;
margin-right: 16px;
margin-top: 3px;
text-align: right;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.box-input {
display: inline-block;
width: 70%;
height: 38px;
margin-top: 2px;
}
.box-button {
height: 38px;
/*margin-top: 2px;*/
}
.text-operation {
margin-right: 8px;
}
.page {
text-align: right;
margin-top: 20px;
}
.box-title-text-add {
line-height: 1.4;
display: flex;
}
.title-text-add {
width: 114px;
text-align: right;
display: inline-block;
font-weight: 500;
font-size: 14px;
margin-right: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
height: 42px;
line-height: 42px;
margin-top: 3px;
}
.box-input-add {
display: inline-block;
height: 38px;
width: 100%;
}
.itemModel {
width: calc(100% - 130px);
display: inline-block;
margin-top: 2px;
}
.Required {
color: red;
margin-right: 4px;
}
.title-text-text {
margin-top: 9px;
}
.formAdd {
margin-bottom: 40px;
}
.drawer-bootom-button {
position: absolute;
bottom: 0;
width: 100%;
border-top: 1px solid #e8e8e8;
padding: 10px 16px;
text-align: right;
left: 0;
background: #fff;
border-radius: 0 0 2px 2px;
}
</style>