企微配置

This commit is contained in:
liuye
2022-09-01 15:58:10 +08:00
parent 71bebd8048
commit 9f8f035b83

View File

@@ -20,7 +20,7 @@
<ai-table :tableData="tableData" :colConfigs="colConfigs" :total="page.total" :current.sync="page.current"
:size.sync="page.size" @getList="getList" class="ai-table">
<el-table-column label="banner封面" align="left" width="150" slot="imgUrl">
<el-table-column label="banner封面" align="left" width="150" slot="banner">
<template slot-scope="{ row }">
<img :src="row.banner" alt="" class="banner-img" />
</template>
@@ -74,7 +74,7 @@
<el-input placeholder="请输入应用名称" :maxlength="10" show-word-limit v-model="miniAppInfo.title"></el-input>
</el-form-item>
<el-form-item label="页面路径" prop="accessPath">
<el-input placeholder="请输入页面路径" :maxlength="30" show-word-limit v-model="miniAppInfo.accessPath"></el-input>
<el-input placeholder="请输入页面路径" :maxlength="50" show-word-limit v-model="miniAppInfo.accessPath"></el-input>
</el-form-item>
</el-form>
</ai-dialog>
@@ -114,7 +114,8 @@ export default {
},
colConfigs: [
{prop: 'banner', label: 'banner封面', slot: 'banner'},
{prop: 'title', label: '主页名称', width: 200},
{prop: 'title', label: '主页名称', width: 150},
{prop: 'id', label: '配置id', width: 300},
{prop: 'appNames', label: '应用列表'},
{slot: 'option', label: '操作', width: 200},
],