1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <div>
- <basicLayout
- ref="basicLayout"
- :oldFormPath="{
- add:'HManagement/accountManage/modules'
- }"
- tableName="accountTable"
- idName="userid"
- :apiId="{query:20221031141102,del:20221031141202}"
- :options="options"
- :detailPath="{
- path:'/account_details'
- }">
- <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">
- </template>
- </basicLayout>
- </div>
- </template>
- <script>
- /**
- * @basicLayout 提供this.$ref['basicLayout'].listData()方法查询列表信息
- * @param {string} formPath 新建,编辑组件所在文件夹名称,以后所有列表新增修改文件统一放入Form文件夹下面,并创建与开发应用相同的名称的子文件夹
- * @param {string} tableName 开发端配置的表格名称
- * @param {String} idName 数据主id名称
- * @param {object} apiId:{query:查询的接口id,del:删除的接口id}
- * @param {Array} options:{label:描述,value:值}
- */
- export default {
- data () {
- return {
- options:[]
-
- }
- },
- methods:{
- }
- }
- </script>
- <style>
- </style>
|