sc
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
:disabled="!row.editable"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in props.userOptions"
|
||||
v-for="item in props.allUserOptions"
|
||||
:key="item.id"
|
||||
:label="item.nickname"
|
||||
:value="item.id"
|
||||
@@ -88,7 +88,7 @@
|
||||
<div class="w-100px">线索位置:</div>
|
||||
<el-input v-model="address" disabled placeholder="请输入线索位置" clearable />
|
||||
</div>
|
||||
<el-checkbox v-model="showSchool" :label="true" @change="handleShowSchool">
|
||||
<el-checkbox v-model="showSchool" :label="true" :value="true" @change="handleShowSchool">
|
||||
展示场地
|
||||
</el-checkbox>
|
||||
</div>
|
||||
|
||||
@@ -165,7 +165,12 @@
|
||||
/>
|
||||
</template>
|
||||
<template v-else-if="fieldItem.component == 'Radio'">
|
||||
<el-radio v-for="item in fieldItem.options" :key="item.id" :label="item.id">
|
||||
<el-radio
|
||||
v-for="item in fieldItem.options"
|
||||
:key="item.id"
|
||||
:label="item.id"
|
||||
:value="item.id"
|
||||
>
|
||||
{{ item.name }}
|
||||
</el-radio>
|
||||
</template>
|
||||
|
||||
@@ -86,7 +86,7 @@
|
||||
<el-tab-pane label="详细信息" name="infoDetail">
|
||||
<Descriptions :data="info" :schema="showSchema" :columns="2" />
|
||||
<div v-if="appStore.getAppInfo?.instanceType == 1">
|
||||
<el-checkbox v-model="showSchool" :label="true" @change="handleShowSchool">
|
||||
<el-checkbox v-model="showSchool" :label="true" :value="true" @change="handleShowSchool">
|
||||
展示场地
|
||||
</el-checkbox>
|
||||
<div id="dialogMap" class="mt-20px" style="height: 400px; width: 100%"></div>
|
||||
|
||||
@@ -67,6 +67,7 @@
|
||||
class="mt-20px"
|
||||
v-model:tableObject="tableObject"
|
||||
:tableColumns="allSchemas.tableColumns"
|
||||
rowkey="clueId"
|
||||
@get-list="getTableList"
|
||||
@get-checked-columns="getCheckedColumns"
|
||||
@selection-change="handleSelectionChange"
|
||||
|
||||
Reference in New Issue
Block a user