|
@@ -0,0 +1,30 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <basicLayout ref="quotedPriceList" formPath="QuotedPrice" tableName="quotedPriceTable" idName="sa_quotedpriceid" :apiId="{query:20221020165103,del:20221020165503}" :options="options">
|
|
|
+ <div slot="custom"></div>
|
|
|
+ <template v-slot:tbList="scope">
|
|
|
+ <div>
|
|
|
+ {{scope.data.column.data[[scope.data.column.columnname]]}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-slot:tbOpreation="scope">
|
|
|
+ <el-button size="mini" type="text" @click="$router.push({path:'/quotedPriceDetail',query:{id:scope.data.data.sa_quotedpriceid,data:scope.data.data,rowindex:scope.data.data.rowindex}})">详情</el-button>
|
|
|
+ </template>
|
|
|
+ </basicLayout>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: "index",
|
|
|
+ data(){
|
|
|
+ return {
|
|
|
+ options:[]
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+
|
|
|
+</style>
|