2024-04-28 16:20:45 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<!-- 搜索工作栏 -->
|
2024-05-31 17:38:17 +08:00
|
|
|
<Search :schema="allSchemas.searchSchema" labelWidth="0">
|
|
|
|
|
<template #actionMore>
|
|
|
|
|
<el-button @click="getTableList" v-hasPermi="['clue:order:search']"> 搜索 </el-button>
|
|
|
|
|
<el-button @click="resetQuery" v-hasPermi="['clue:order:reset']"> 重置 </el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</Search>
|
2024-04-28 16:20:45 +08:00
|
|
|
<!-- 列表 -->
|
|
|
|
|
<SSTable
|
|
|
|
|
class="mt-20px"
|
|
|
|
|
v-model:tableObject="tableObject"
|
|
|
|
|
:tableColumns="allSchemas.tableColumns"
|
|
|
|
|
@get-list="getTableList"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-for="item in allSchemas.tableColumns"
|
|
|
|
|
:key="item.field"
|
|
|
|
|
:prop="item.field"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
min-width="120px"
|
|
|
|
|
/>
|
2024-05-31 17:38:17 +08:00
|
|
|
<el-table-column label="操作" width="200px" fixed="right">
|
2024-04-28 16:20:45 +08:00
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
class="mr-10px"
|
|
|
|
|
link
|
|
|
|
|
style="padding: 0; margin-left: 0"
|
2024-05-31 17:38:17 +08:00
|
|
|
v-hasPermi="['clue:order:after-sale']"
|
2024-04-28 16:20:45 +08:00
|
|
|
@click="sellAfter(scope.row)"
|
|
|
|
|
>
|
2024-05-31 17:38:17 +08:00
|
|
|
售后
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
class="mr-10px"
|
|
|
|
|
link
|
|
|
|
|
style="padding: 0; margin-left: 0"
|
|
|
|
|
v-hasPermi="['clue:order:after-sale-audit']"
|
|
|
|
|
>
|
|
|
|
|
售后审核
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
class="mr-10px"
|
|
|
|
|
link
|
|
|
|
|
style="padding: 0; margin-left: 0"
|
|
|
|
|
v-hasPermi="['clue:order:send']"
|
2024-04-28 16:20:45 +08:00
|
|
|
>
|
2024-05-31 17:38:17 +08:00
|
|
|
发货(进销存)
|
|
|
|
|
</el-button>
|
2024-04-28 16:20:45 +08:00
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
class="mr-10px"
|
|
|
|
|
link
|
|
|
|
|
style="padding: 0; margin-left: 0"
|
2024-05-31 17:38:17 +08:00
|
|
|
v-hasPermi="['clue:order:return']"
|
2024-04-28 16:20:45 +08:00
|
|
|
@click="feeBack(scope.row)"
|
|
|
|
|
>
|
2024-05-31 17:38:17 +08:00
|
|
|
回款
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
class="mr-10px"
|
|
|
|
|
link
|
|
|
|
|
style="padding: 0; margin-left: 0"
|
|
|
|
|
v-hasPermi="['clue:order:return-audit']"
|
2024-04-28 16:20:45 +08:00
|
|
|
>
|
2024-05-31 17:38:17 +08:00
|
|
|
回款确认
|
|
|
|
|
</el-button>
|
2024-04-28 16:20:45 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</SSTable>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="ClueOrder">
|
|
|
|
|
import { allSchemas } from './order.data'
|
|
|
|
|
|
|
|
|
|
const tableObject = ref({
|
|
|
|
|
tableList: [{ name: '测试', contact: '18888888888' }],
|
|
|
|
|
loading: false,
|
|
|
|
|
total: 1,
|
|
|
|
|
pageSize: 20,
|
|
|
|
|
currentPage: 1
|
|
|
|
|
})
|
|
|
|
|
|
2024-05-31 17:38:17 +08:00
|
|
|
function resetQuery() {
|
2024-04-28 16:20:45 +08:00
|
|
|
// 方法体
|
|
|
|
|
}
|
|
|
|
|
// 查询
|
|
|
|
|
function getTableList() {
|
|
|
|
|
// 方法体
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 售后
|
|
|
|
|
function sellAfter() {
|
|
|
|
|
// 方法体
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|