96 lines
2.4 KiB
Vue
96 lines
2.4 KiB
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<el-form ref="queryForm" :model="searchForm" label-width="0" inline>
|
||
|
|
<el-form-item>
|
||
|
|
<el-input
|
||
|
|
v-model="searchForm.name"
|
||
|
|
placeholder="请输入名称"
|
||
|
|
clearable
|
||
|
|
@keyup.enter="handleQuery"
|
||
|
|
/>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item>
|
||
|
|
<el-button @click="handleQuery">搜索</el-button>
|
||
|
|
<el-button @click="resetQuery">重置</el-button>
|
||
|
|
<el-button type="primary" @click="openForm('create', null)">新增</el-button>
|
||
|
|
</el-form-item>
|
||
|
|
</el-form>
|
||
|
|
<el-table v-loading="loading" :data="tableList">
|
||
|
|
<el-table-column prop="name" label="供应商名称" />
|
||
|
|
<el-table-column prop="orderNum" label="排序" width="100px" />
|
||
|
|
<el-table-column prop="remark" label="备注" />
|
||
|
|
<el-table-column label="创建时间" prop="createTime" width="180px" />
|
||
|
|
<el-table-column label="创建人" prop="createUser" width="150px" />
|
||
|
|
<el-table-column label="操作">
|
||
|
|
<template #default="scope">
|
||
|
|
<el-button type="primary" text @click="openForm('update', scope.row)">修改</el-button>
|
||
|
|
<el-button type="danger" text @click="handleDelete(scope.row)">删除</el-button>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
</el-table>
|
||
|
|
<Pagination
|
||
|
|
v-model:limit="searchForm.pageSize"
|
||
|
|
v-model:page="searchForm.pageNum"
|
||
|
|
:total="total"
|
||
|
|
@pagination="handleQuery"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<DialogSupplier ref="brandDialog" @success="handleQuery" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup name="SupplierSet">
|
||
|
|
import DialogSupplier from './DialogSupplier.vue'
|
||
|
|
|
||
|
|
const searchForm = ref({
|
||
|
|
pageNum: 1,
|
||
|
|
pageSize: 20
|
||
|
|
})
|
||
|
|
|
||
|
|
const total = ref(0)
|
||
|
|
const brandDialog = ref()
|
||
|
|
const tableList = ref([])
|
||
|
|
const loading = ref(false)
|
||
|
|
|
||
|
|
function handleQuery() {
|
||
|
|
searchForm.value.pageNum = 1
|
||
|
|
getList()
|
||
|
|
}
|
||
|
|
function resetQuery() {
|
||
|
|
searchForm.value = {
|
||
|
|
name: '',
|
||
|
|
pageSize: 20,
|
||
|
|
pageNum: 1
|
||
|
|
}
|
||
|
|
getList()
|
||
|
|
}
|
||
|
|
|
||
|
|
function getList() {
|
||
|
|
tableList.value = [
|
||
|
|
{
|
||
|
|
id: 1,
|
||
|
|
name: '测试'
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
function openForm(type, info) {
|
||
|
|
brandDialog.value.open(type, info)
|
||
|
|
}
|
||
|
|
|
||
|
|
async function handleDelete(row) {
|
||
|
|
try {
|
||
|
|
console.log(row)
|
||
|
|
// 删除的二次确认
|
||
|
|
await message.delConfirm()
|
||
|
|
// 发起删除
|
||
|
|
// await UserApi.deleteUser(row.id)
|
||
|
|
message.success(t('common.delSuccess'))
|
||
|
|
// 刷新列表
|
||
|
|
await getList()
|
||
|
|
} catch {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped></style>
|