94 lines
2.5 KiB
Vue
94 lines
2.5 KiB
Vue
<!-- by 7527_18920 -->
|
|
<template>
|
|
<a-row :gutter="24">
|
|
<a-col :md="24">
|
|
<a-card :style="cardStyle" :bordered="false">
|
|
<!-- table区域-begin -->
|
|
<div>
|
|
<a-table
|
|
ref="table"
|
|
size="middle"
|
|
bordered
|
|
rowKey="id"
|
|
:columns="columns"
|
|
:components="drag(columns)"
|
|
:dataSource="dataSource"
|
|
:pagination="ipagination"
|
|
:loading="loading"
|
|
@change="handleTableChange">
|
|
<span slot="action" slot-scope="text, record">
|
|
<a @click="handleEdit(record)">编辑</a>
|
|
</span>
|
|
</a-table>
|
|
</div>
|
|
<!-- table区域-end -->
|
|
<!-- 表单区域 -->
|
|
<material-attribute-modal ref="modalForm" @ok="modalFormOk"></material-attribute-modal>
|
|
</a-card>
|
|
</a-col>
|
|
</a-row>
|
|
</template>
|
|
<script>
|
|
import MaterialAttributeModal from './modules/MaterialAttributeModal'
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
import JDate from '@/components/jeecg/JDate'
|
|
import tableDragResizeMixin from '@/mixins/tableDragResizeMixin'
|
|
|
|
export default {
|
|
name: "MaterialAttributeList",
|
|
mixins:[JeecgListMixin,tableDragResizeMixin],
|
|
components: {
|
|
MaterialAttributeModal,
|
|
JDate
|
|
},
|
|
data () {
|
|
return {
|
|
labelCol: {
|
|
span: 5
|
|
},
|
|
wrapperCol: {
|
|
span: 18,
|
|
offset: 1
|
|
},
|
|
// 查询条件
|
|
queryParam: {attributeField:''},
|
|
// 表头
|
|
columns: [
|
|
{
|
|
title: '#',
|
|
dataIndex: '',
|
|
key:'rowIndex',
|
|
width:40,
|
|
align:"center",
|
|
customRender:function (t,r,index) {
|
|
return parseInt(index)+1;
|
|
}
|
|
},
|
|
{title: '属性名', dataIndex: 'attributeName', width: 100},
|
|
{title: '属性值(用竖线隔开)', dataIndex: 'attributeValue', width: 400},
|
|
{
|
|
title: '操作',
|
|
dataIndex: 'action',
|
|
width: 100,
|
|
align:"center",
|
|
scopedSlots: { customRender: 'action' },
|
|
}
|
|
],
|
|
url: {
|
|
list: "/materialAttribute/list",
|
|
delete: "/materialAttribute/delete",
|
|
deleteBatch: "/materialAttribute/deleteBatch"
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
@import '~@assets/less/common.less'
|
|
</style> |