|
@@ -40,11 +40,11 @@
|
|
<CusFormColumn
|
|
<CusFormColumn
|
|
:span="12"
|
|
:span="12"
|
|
label="主显字段"
|
|
label="主显字段"
|
|
- v-model:param="state.form.mainFieldId"
|
|
|
|
|
|
+ v-model:param="state.form.mainField"
|
|
link="select"
|
|
link="select"
|
|
:options="state.textOptions"
|
|
:options="state.textOptions"
|
|
label-key="fieldNameCn"
|
|
label-key="fieldNameCn"
|
|
- value-key="id"
|
|
|
|
|
|
+ value-key="fieldNameEn"
|
|
/>
|
|
/>
|
|
<CusFormColumn
|
|
<CusFormColumn
|
|
:span="12"
|
|
:span="12"
|
|
@@ -99,87 +99,89 @@
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
<el-col v-else :span="12"/>
|
|
<el-col v-else :span="12"/>
|
|
- <el-col :span="12">
|
|
|
|
- <div class="__cus-title_1">数据条件</div>
|
|
|
|
- <CusTable
|
|
|
|
- :data="state.conditionTable.data"
|
|
|
|
- :table-head="state.conditionTable.tableHead"
|
|
|
|
- :no-page="true"
|
|
|
|
- >
|
|
|
|
- <template #indexParam-column-value="{scope}">
|
|
|
|
- <CusFormColumn
|
|
|
|
- class="__cus-table-form-column"
|
|
|
|
- required
|
|
|
|
- :span="24"
|
|
|
|
- v-model:param="scope.row.indexParam"
|
|
|
|
- link="select"
|
|
|
|
- :options="state.textOptions"
|
|
|
|
- label-key="fieldNameCn"
|
|
|
|
- value-key="fieldNameEn"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
- <template #condition-column-value="{scope}">
|
|
|
|
- <CusFormColumn
|
|
|
|
- class="__cus-table-form-column"
|
|
|
|
- required
|
|
|
|
- :span="24"
|
|
|
|
- v-model:param="scope.row.condition"
|
|
|
|
- link="select"
|
|
|
|
- :options="DictionaryStore.conditionTypeList"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
- <template #do-header-value="{scope}">
|
|
|
|
- <CusFormColumn
|
|
|
|
- class="__cus-table-form-column"
|
|
|
|
- :span="24"
|
|
|
|
- v-model:param="state.conditionTable.selectValue"
|
|
|
|
- link="select"
|
|
|
|
- :options="transfer.conditionOptions.filter(v => state.conditionTable.data.every(s => s.themeParam !== v)).map(v => ({dictLabel: v, dictValue: v}))"
|
|
|
|
- @change="handleChangeCondition"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
- <template #do-column-value="{scope}">
|
|
|
|
- <CusButton type="table-del" @click="state.conditionTable.data.splice(scope.$index, 1)"/>
|
|
|
|
- </template>
|
|
|
|
- </CusTable>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="12" style="padding-left: 20px">
|
|
|
|
- <div class="__cus-title_1">数据排序</div>
|
|
|
|
- <CusTable
|
|
|
|
- :data="state.sortTable.data"
|
|
|
|
- :table-head="state.sortTable.tableHead"
|
|
|
|
- :no-page="true"
|
|
|
|
- >
|
|
|
|
- <template #sortParam-column-value="{scope}">
|
|
|
|
- <CusFormColumn
|
|
|
|
- class="__cus-table-form-column"
|
|
|
|
- required
|
|
|
|
- :span="24"
|
|
|
|
- v-model:param="scope.row.sortParam"
|
|
|
|
- link="select"
|
|
|
|
- :options="state.textOptions"
|
|
|
|
- label-key="fieldNameCn"
|
|
|
|
- value-key="fieldNameEn"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
- <template #sortType-column-value="{scope}">
|
|
|
|
- <CusFormColumn
|
|
|
|
- class="__cus-table-form-column"
|
|
|
|
- required
|
|
|
|
- :span="24"
|
|
|
|
- v-model:param="scope.row.sortType"
|
|
|
|
- link="select"
|
|
|
|
- :options="DictionaryStore.sortTypeList"
|
|
|
|
- />
|
|
|
|
- </template>
|
|
|
|
- <template #do-header-value="{scope}">
|
|
|
|
- <CusButton title="新增" @click="state.sortTable.data.push({sortParam: '', sortType: ''})"/>
|
|
|
|
- </template>
|
|
|
|
- <template #do-column-value="{scope}">
|
|
|
|
- <CusButton type="table-del" @click="state.sortTable.data.splice(scope.$index, 1)"/>
|
|
|
|
- </template>
|
|
|
|
- </CusTable>
|
|
|
|
- </el-col>
|
|
|
|
|
|
+ <template v-if="isIndexCpt">
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <div class="__cus-title_1">数据条件</div>
|
|
|
|
+ <CusTable
|
|
|
|
+ :data="state.conditionTable.data"
|
|
|
|
+ :table-head="state.conditionTable.tableHead"
|
|
|
|
+ :no-page="true"
|
|
|
|
+ >
|
|
|
|
+ <template #indexParam-column-value="{scope}">
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ class="__cus-table-form-column"
|
|
|
|
+ required
|
|
|
|
+ :span="24"
|
|
|
|
+ v-model:param="scope.row.indexParam"
|
|
|
|
+ link="select"
|
|
|
|
+ :options="state.textOptions"
|
|
|
|
+ label-key="fieldNameCn"
|
|
|
|
+ value-key="fieldNameEn"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ <template #condition-column-value="{scope}">
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ class="__cus-table-form-column"
|
|
|
|
+ required
|
|
|
|
+ :span="24"
|
|
|
|
+ v-model:param="scope.row.condition"
|
|
|
|
+ link="select"
|
|
|
|
+ :options="DictionaryStore.conditionTypeList"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ <template #do-header-value="{scope}">
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ class="__cus-table-form-column"
|
|
|
|
+ :span="24"
|
|
|
|
+ v-model:param="state.conditionTable.selectValue"
|
|
|
|
+ link="select"
|
|
|
|
+ :options="transfer.conditionOptions.filter(v => state.conditionTable.data.every(s => s.themeParam !== v)).map(v => ({dictLabel: v, dictValue: v}))"
|
|
|
|
+ @change="handleChangeCondition"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ <template #do-column-value="{scope}">
|
|
|
|
+ <CusButton type="table-del" @click="state.conditionTable.data.splice(scope.$index, 1)"/>
|
|
|
|
+ </template>
|
|
|
|
+ </CusTable>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="12" style="padding-left: 20px">
|
|
|
|
+ <div class="__cus-title_1">数据排序</div>
|
|
|
|
+ <CusTable
|
|
|
|
+ :data="state.sortTable.data"
|
|
|
|
+ :table-head="state.sortTable.tableHead"
|
|
|
|
+ :no-page="true"
|
|
|
|
+ >
|
|
|
|
+ <template #sortParam-column-value="{scope}">
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ class="__cus-table-form-column"
|
|
|
|
+ required
|
|
|
|
+ :span="24"
|
|
|
|
+ v-model:param="scope.row.sortParam"
|
|
|
|
+ link="select"
|
|
|
|
+ :options="state.textOptions"
|
|
|
|
+ label-key="fieldNameCn"
|
|
|
|
+ value-key="fieldNameEn"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ <template #sortType-column-value="{scope}">
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ class="__cus-table-form-column"
|
|
|
|
+ required
|
|
|
|
+ :span="24"
|
|
|
|
+ v-model:param="scope.row.sortType"
|
|
|
|
+ link="select"
|
|
|
|
+ :options="DictionaryStore.sortTypeList"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ <template #do-header-value="{scope}">
|
|
|
|
+ <CusButton title="新增" @click="state.sortTable.data.push({sortParam: '', sortType: ''})"/>
|
|
|
|
+ </template>
|
|
|
|
+ <template #do-column-value="{scope}">
|
|
|
|
+ <CusButton type="table-del" @click="state.sortTable.data.splice(scope.$index, 1)"/>
|
|
|
|
+ </template>
|
|
|
|
+ </CusTable>
|
|
|
|
+ </el-col>
|
|
|
|
+ </template>
|
|
</CusForm>
|
|
</CusForm>
|
|
</div>
|
|
</div>
|
|
</CusDialog>
|
|
</CusDialog>
|
|
@@ -260,6 +262,7 @@ const onSubmit = () => {
|
|
if (props.transfer.mode === 'add') {
|
|
if (props.transfer.mode === 'add') {
|
|
params.themeId = props.transfer.themeId
|
|
params.themeId = props.transfer.themeId
|
|
params.indexId = props.transfer.indexId
|
|
params.indexId = props.transfer.indexId
|
|
|
|
+ params.type = isIndexCpt.value ? 'inner_index' : 'outside_service'
|
|
sysThemeIndexAdd(params).then(res => {
|
|
sysThemeIndexAdd(params).then(res => {
|
|
ElMessage.success('新增成功!')
|
|
ElMessage.success('新增成功!')
|
|
emit('update:show', false)
|
|
emit('update:show', false)
|
|
@@ -299,6 +302,7 @@ const initDetail = () => {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
const initText = (id) => {
|
|
const initText = (id) => {
|
|
|
|
+ state.textOptions = []
|
|
if (isIndexCpt.value) {
|
|
if (isIndexCpt.value) {
|
|
sysIndexFieldList(proxy.$util.formatGetParam({
|
|
sysIndexFieldList(proxy.$util.formatGetParam({
|
|
indexId: id
|
|
indexId: id
|
|
@@ -307,39 +311,37 @@ const initText = (id) => {
|
|
state.loading = false
|
|
state.loading = false
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
- outsideServiceFindById(props.transfer.id).then(res => {
|
|
|
|
- state.form = res.data
|
|
|
|
- if (state.form.requestParams) {
|
|
|
|
- try {
|
|
|
|
- const p = JSON.parse(state.form.requestParams)
|
|
|
|
- state.params.requestParams.data = p || []
|
|
|
|
- } catch (e) {}
|
|
|
|
- }
|
|
|
|
- if (state.form.requestHeaders) {
|
|
|
|
- try {
|
|
|
|
- const p = JSON.parse(state.form.requestHeaders)
|
|
|
|
- state.params.requestHeaders.data = p || []
|
|
|
|
- } catch (e) {}
|
|
|
|
- }
|
|
|
|
- if (state.form.requestBody) {
|
|
|
|
- try {
|
|
|
|
- const p = JSON.parse(state.form.requestBody)
|
|
|
|
- state.params.requestBody.type = p.type
|
|
|
|
- state.params.requestBody.str = p.str
|
|
|
|
- state.params.requestBody.data = p.data || []
|
|
|
|
- } catch (e) {}
|
|
|
|
- }
|
|
|
|
- if (state.form.responseBody) {
|
|
|
|
|
|
+ outsideServiceFindById(id).then(res => {
|
|
|
|
+ const arr: any = []
|
|
|
|
+ const d = res.data
|
|
|
|
+ if (d.responseBody) {
|
|
try {
|
|
try {
|
|
- const p = JSON.parse(state.form.responseBody)
|
|
|
|
- state.params.responseBody.type = p.type
|
|
|
|
- state.params.responseBody.json.pathForm = p.json.pathForm
|
|
|
|
- state.params.responseBody.json.data = p.json.data || []
|
|
|
|
- state.params.responseBody.text.data = p.text.data || []
|
|
|
|
- state.params.responseBody.other.plug = p.other.plug
|
|
|
|
- state.params.responseBody.other.data = p.other.data || []
|
|
|
|
|
|
+ const p = JSON.parse(d.responseBody)
|
|
|
|
+ if (p.type == 1) {
|
|
|
|
+ p.json.data.forEach(v => {
|
|
|
|
+ arr.push({
|
|
|
|
+ fieldNameCn: v.label,
|
|
|
|
+ fieldNameEn: v.key,
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ } else if (p.type == 2) {
|
|
|
|
+ p.text.data.forEach(v => {
|
|
|
|
+ arr.push({
|
|
|
|
+ fieldNameCn: v.label,
|
|
|
|
+ fieldNameEn: v.key,
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ } else if (p.type == 3) {
|
|
|
|
+ p.other.data.forEach(v => {
|
|
|
|
+ arr.push({
|
|
|
|
+ fieldNameCn: v.label,
|
|
|
|
+ fieldNameEn: v.key,
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ }
|
|
} catch (e) {}
|
|
} catch (e) {}
|
|
}
|
|
}
|
|
|
|
+ state.textOptions = arr
|
|
state.loading = false
|
|
state.loading = false
|
|
})
|
|
})
|
|
}
|
|
}
|