|
|
|
@ -50,7 +50,10 @@
|
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" @click="AddInfo" |
|
|
|
|
><el-icon><Plus /></el-icon>导出</el-button |
|
|
|
|
><el-icon><Download /></el-icon>导出</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" @click="lyadded" |
|
|
|
|
><el-icon><Plus /></el-icon>新增</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
@ -78,9 +81,7 @@
|
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
|
|
|
|
|
<el-text size="small" @click="EditTemplate">编 辑</el-text> |
|
|
|
|
|
|
|
|
|
<el-text size="small" @click="EditTemplate(slotProps.scope.row)">编 辑</el-text> |
|
|
|
|
</template> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
@ -334,9 +335,12 @@ const MyWarehouseList = () => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 页面初始化方法 |
|
|
|
|
const EditTemplate = () => { |
|
|
|
|
const EditTemplate = (row) => { |
|
|
|
|
$router.push({ |
|
|
|
|
path: '/cost/Deliverycostmanagement/WarehouseTemplateHome', |
|
|
|
|
query:{ |
|
|
|
|
id:row.id |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
const PageOnload = () => { |
|
|
|
@ -347,6 +351,11 @@ const PageOnload = () => {
|
|
|
|
|
|
|
|
|
|
//页面初始化方法 |
|
|
|
|
PageOnload(); |
|
|
|
|
const lyadded=()=>{ |
|
|
|
|
$router.push({ |
|
|
|
|
path: '/cost/Deliverycostmanagement/WarehouseTemplateHome', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|