|
|
@@ -0,0 +1,50 @@
|
|
|
+<template>
|
|
|
+ <basicLayout
|
|
|
+ style="padding-top:0 !important"
|
|
|
+ ref="basicLayout"
|
|
|
+ tableName="servicAppointTable"
|
|
|
+ idName="sa_endcustserviceorderid"
|
|
|
+ :apiId="{query:20240902102903,del:''}"
|
|
|
+ :isExport="false"
|
|
|
+ :autoQuery="false"
|
|
|
+ >
|
|
|
+ <template #custom >
|
|
|
+ <div class="mt-10">
|
|
|
+ <label class="search__label">状态:</label>
|
|
|
+ <el-select class="inline-24" v-model="status" placeholder="请选择类型" @change="selectChange" size="small" clearable>
|
|
|
+ <el-option label="新建" value="新建"></el-option>
|
|
|
+ <el-option label="发布" value="发布"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-slot:tbList="scope">
|
|
|
+ <div>
|
|
|
+ {{scope.data.column.data[[scope.data.column.columnname]]?scope.data.column.data[[scope.data.column.columnname]]:'--'}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </basicLayout>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: "index",
|
|
|
+ data(){
|
|
|
+ return {
|
|
|
+ siteid:JSON.parse(sessionStorage.getItem('active_account')).siteid
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.listData()
|
|
|
+ },
|
|
|
+ methods:{
|
|
|
+ listData(){
|
|
|
+ this.$refs.basicLayout.param.content.siteid = this.siteid
|
|
|
+ this.$refs.basicLayout.listData(this.$refs.basicLayout.param.content.pageNumner = 1)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+
|
|
|
+</style>
|