You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
3.4 KiB
147 lines
3.4 KiB
<template>
|
|
<div>
|
|
<div>
|
|
<div ref="lxHeader">
|
|
<lx-header icon="md-apps" style="margin-bottom: 10px; border: 0px; margin-top: 15px" text="产品管理">
|
|
<div slot="content"></div>
|
|
<slot>
|
|
<div>
|
|
<Input placeholder="关键字搜索" style="width: 200px; margin-right: 10px"/>
|
|
<Button style="margin-left: 10px" type="primary" @click="select.page = 1,getList()">查询</Button>
|
|
<Button style="margin-left: 10px" type="primary"
|
|
@click="$refs['addProduct'].type = 'add',$refs['addProduct'].isShow = true">新建产品
|
|
</Button>
|
|
</div>
|
|
</slot>
|
|
</lx-header>
|
|
</div>
|
|
</div>
|
|
|
|
<xy-table
|
|
:total="total"
|
|
:list="list"
|
|
:table-item="table"
|
|
@delete="destroy"
|
|
@editor="editor"
|
|
@pageSizeChange="e => select.page_size = e"
|
|
@pageIndexChange="e => {select.page = e;getList()}"></xy-table>
|
|
|
|
<add-product ref="addProduct" :product-type="productType"></add-product>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {getList,destroy} from '@/api/product'
|
|
import {getparameter} from '@/api/system/dictionary'
|
|
import {getList as getTypes} from '@/api/productType'
|
|
|
|
import addProduct from "@/views/product/productComponent/addProduct";
|
|
|
|
export default {
|
|
components: {
|
|
addProduct
|
|
},
|
|
data() {
|
|
return {
|
|
select:{
|
|
page:1,
|
|
page_size:10
|
|
},
|
|
productType: [],
|
|
|
|
total:0,
|
|
list: [],
|
|
table: [
|
|
{
|
|
prop:'name',
|
|
label:'名称',
|
|
width:200,
|
|
fixed:'left',
|
|
align:'left'
|
|
},
|
|
{
|
|
prop:'product_type.name',
|
|
label:'业务板块',
|
|
width: 160
|
|
},
|
|
{
|
|
prop:'cycle',
|
|
label:'服务周期',
|
|
width: 160
|
|
},
|
|
{
|
|
prop:'purchase_price',
|
|
label:'采购单价',
|
|
align:'right',
|
|
width: 200,
|
|
formatter:(cell,data,value)=>{
|
|
if(value){
|
|
return value
|
|
}else{
|
|
return '可变'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
prop:'nurse_price',
|
|
label:'护工结算单价',
|
|
align:'right',
|
|
width:200,
|
|
formatter:(cell,data,value)=>{
|
|
if(value){
|
|
return value
|
|
}else{
|
|
return '可变'
|
|
}
|
|
}
|
|
},
|
|
{
|
|
prop:'time_lenth',
|
|
label:'单次时长',
|
|
width: 160,
|
|
formatter:(cell,data,value)=>{
|
|
if(value){
|
|
return value
|
|
}else{
|
|
return '可变'
|
|
}
|
|
}
|
|
},
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
async getList() {
|
|
const res = await getList(this.select)
|
|
this.list = res.data
|
|
this.total = res.total
|
|
console.log(this.list)
|
|
},
|
|
async getProductType() {
|
|
const res = await getTypes({page_size: 999},false)
|
|
this.productType = res.data
|
|
},
|
|
|
|
editor(row){
|
|
this.$refs['addProduct'].type = 'editor'
|
|
this.$refs['addProduct'].id = row.id
|
|
this.$refs['addProduct'].isShow = true
|
|
},
|
|
destroy(row){
|
|
destroy(row.id).then(res => {
|
|
this.$successMessage('destroy','订单')
|
|
this.getList()
|
|
})
|
|
}
|
|
},
|
|
mounted() {
|
|
this.getList()
|
|
this.getProductType()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|