njzscloud-dispose-web/src/pages/mfg/craft/Craft.vue

225 lines
5.9 KiB
Vue

<template>
<Page>
<ElForm v-show="showSearchForm" inline @submit.prevent="paging">
<ElFormItem label="编码">
<ElInput
v-model="searchForm.sn"
placeholder="编码"/>
</ElFormItem>
<ElFormItem label="终产品">
<ElInput
v-model="searchForm.goodsId"
placeholder="终产品"/>
</ElFormItem>
<ElFormItem label="工艺名称">
<ElInput
v-model="searchForm.craftName"
placeholder="工艺名称"/>
</ElFormItem>
<ElFormItem label="工艺版本号">
<ElInput
v-model="searchForm.craftVer"
placeholder="工艺版本号"/>
</ElFormItem>
<ElFormItem label="是否可用">
<ElCheckbox v-model="searchForm.canuse"/>
</ElFormItem>
<ElFormItem>
<ElButton :icon="elIcons.Search" :loading="searching" native-type="submit" type="primary">搜索</ElButton>
<ElButton :icon="elIcons.Refresh" :loading="searching" @click="reset">重置</ElButton>
</ElFormItem>
</ElForm>
<div class="tool-bar">
<ElButton :icon="elIcons.Plus" type="primary" @click="addHandler">新建</ElButton>
<ElButton :icon="elIcons.Filter" type="default" @click="showSearchForm = !showSearchForm"/>
</div>
<ElTable v-loading="searching" :data="tableData"
cell-class-name="table-cell"
class="table-list"
empty-text="暂无数据"
header-row-class-name="table-header"
row-key="id">
<ElTableColumn label="编码" prop="sn"/>
<ElTableColumn label="产品名称" prop="goodsName"/>
<ElTableColumn label="产品编码" prop="goodsSn"/>
<ElTableColumn label="工艺名称" prop="craftName"/>
<ElTableColumn label="工艺版本号" prop="craftVer"/>
<ElTableColumn label="工艺类型" prop="craftCategoryTxt"/>
<ElTableColumn label="是否可用" prop="canuse">
<template #default="{row}">
<ElSwitch v-model="row.canuse" :disabled="row.id == '1'" @change="disabledCraftHandler($event,row.id)"/>
</template>
</ElTableColumn>
<ElTableColumn label="备注" prop="memo"/>
<ElTableColumn label="操作" width="180">
<template #default="scope">
<div class="action-btn">
<!-- <ElPopconfirm
confirm-button-text="是"
cancel-button-text="否"
confirm-button-type="danger"
cancel-button-type="primary"
placement="top"
title="是否删除当前数据?"
width="180"
@confirm="delHandler(scope)">
<template #reference>
<ElButton text type="danger" :loading="deling"></ElButton>
</template>
</ElPopconfirm> -->
<!-- <ElButton text type="primary" @click="modifyHandler(scope)"></ElButton> -->
<ElButton text type="primary" @click="modifyHandler(scope)"></ElButton>
</div>
</template>
</ElTableColumn>
</ElTable>
<ElPagination
v-model:current-page="searchForm.current"
v-model:page-size="searchForm.size"
:hide-on-single-page="false"
:page-sizes="[10, 20, 50, 100, 500]"
:teleported="false"
:total="totalCount"
layout="->, sizes, total, prev, pager, next"
@change="paging"/>
<CraftForm ref="craftForm" @edit-succ="paging"/>
</Page>
</template>
<script lang="ts" setup>
import CraftApi from '@/pages/mfg/craft/craft-api.ts'
import CraftForm from '@/pages/mfg/craft/CraftForm.vue'
import Page from '@/components/page/Page.vue'
import { elIcons } from '@/common/element/element.ts'
import Utils from '@/common/utils'
import { ElMessage } from 'element-plus'
const totalCount = ref(0)
const tableData = Utils.resetAble(reactive<CraftTypes.SearchCraftResult[]>([]))
const searchForm = Utils.resetAble(reactive<CraftTypes.SearchCraftParam>({
current: 1,
size: 20,
}))
const searching = ref(false)
const deling = ref(false)
const showSearchForm = ref(true)
const craftFormIns = useTemplateRef<InstanceType<typeof CraftForm>>('craftForm')
function showDialog(data?: CraftTypes.SearchCraftResult) {
craftFormIns.value?.open(data)
}
/*
function delHandler({row}: { row: CraftTypes.SearchCraftResult }) {
deling.value = true
CraftApi.del([ row.id! ])
.then(() => {
ElMessage.success('删除成功')
paging()
})
.finally(() => {
deling.value = false
})
}
*/
function modifyHandler({row}: { row: CraftTypes.SearchCraftResult }) {
showDialog(row)
}
function addHandler() {
showDialog()
}
function reset() {
searchForm.$reset()
paging()
}
function paging() {
searching.value = true
CraftApi.paging(searchForm)
.then(res => {
totalCount.value = res.data?.total ?? 0
tableData.$reset(res.data?.records ?? [])
})
.finally(() => {
searching.value = false
})
}
function disabledCraftHandler(val: string | number | boolean, id: string) {
searching.value = true
CraftApi.disable(id, val as boolean)
.then(() => {
ElMessage.success(val ? '禁用成功' : '启用成功')
paging()
})
}
onMounted(() => {
paging()
})
</script>
<style lang="stylus" scoped>
.table-list {
flex 1;
margin 0 0 20px 0
width 100%
:deep(.table-header) {
color #454C59
th {
background-color #EDF1F7
font-weight 500
position relative
& > div {
display flex
gap 5px
align-items center
}
&:not(:first-child) > div::before {
position: absolute;
top: 50%;
left: 1px;
width: 1px;
background-color: #D3D7DE;
transform: translateY(-50%);
content: "";
height 50%
}
}
}
:deep(.table-cell) {
color #2F3540
}
.action-btn {
width 100%
display flex
flex-wrap wrap
& > button {
margin 0
}
}
}
.tool-bar {
display flex
justify-content space-between
margin 0 0 20px 0
}
</style>