|
@@ -99,15 +99,15 @@
|
|
|
/>
|
|
|
</template>
|
|
|
<el-col v-else :span="12"/>
|
|
|
- <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}">
|
|
|
+ <el-col :span="12">
|
|
|
+ <div class="__cus-title_1">数据条件</div>
|
|
|
+ <CusTable
|
|
|
+ :data="state.conditionTable.data"
|
|
|
+ :table-head="isIndexCpt ? state.conditionTable.tableHead : state.conditionTable.tableHead.filter(v => v.value != 'condition')"
|
|
|
+ :no-page="true"
|
|
|
+ >
|
|
|
+ <template #indexParam-column-value="{scope}">
|
|
|
+ <template v-if="isIndexCpt">
|
|
|
<CusFormColumn
|
|
|
class="__cus-table-form-column"
|
|
|
required
|
|
@@ -119,31 +119,44 @@
|
|
|
value-key="fieldKey"
|
|
|
/>
|
|
|
</template>
|
|
|
- <template #condition-column-value="{scope}">
|
|
|
+ <template v-else>
|
|
|
<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"
|
|
|
+ v-model:param="scope.row.indexParam"
|
|
|
link="select"
|
|
|
- :options="transfer.conditionOptions.filter(v => state.conditionTable.data.every(s => s.themeParam !== v)).map(v => ({dictLabel: v, dictValue: v}))"
|
|
|
- @change="handleChangeCondition"
|
|
|
+ :options="state.requestOptions"
|
|
|
/>
|
|
|
</template>
|
|
|
- <template #do-column-value="{scope}">
|
|
|
- <CusButton type="table-del" @click="state.conditionTable.data.splice(scope.$index, 1)"/>
|
|
|
- </template>
|
|
|
- </CusTable>
|
|
|
- </el-col>
|
|
|
+ </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.map(v => ({dictLabel: v, dictValue: v}))"
|
|
|
+ @change="handleChangeCondition"
|
|
|
+ />
|
|
|
+<!-- :options="transfer.conditionOptions.filter(v => state.conditionTable.data.every(s => s.themeParam !== v)).map(v => ({dictLabel: v, dictValue: v}))"-->
|
|
|
+ </template>
|
|
|
+ <template #do-column-value="{scope}">
|
|
|
+ <CusButton type="table-del" @click="state.conditionTable.data.splice(scope.$index, 1)"/>
|
|
|
+ </template>
|
|
|
+ </CusTable>
|
|
|
+ </el-col>
|
|
|
+ <template v-if="isIndexCpt">
|
|
|
<el-col :span="12" style="padding-left: 20px">
|
|
|
<div class="__cus-title_1">数据排序</div>
|
|
|
<CusTable
|
|
@@ -232,7 +245,8 @@ const state: any = reactive({
|
|
|
{value: "do", label: "操作", width: 100, fixed: 'right'},
|
|
|
]
|
|
|
},
|
|
|
- textOptions: []
|
|
|
+ textOptions: [],
|
|
|
+ requestOptions: []
|
|
|
})
|
|
|
const ref_form = ref()
|
|
|
const isIndexCpt = computed(() => {
|
|
@@ -301,58 +315,80 @@ const initDetail = () => {
|
|
|
state.loading = false
|
|
|
})
|
|
|
}
|
|
|
+const extractVariableNames = (str) => {
|
|
|
+ // 定义正则表达式匹配 $['变量名']
|
|
|
+ const regex = /\$\['(.*?)'\]/g;
|
|
|
+ let matches: any = [];
|
|
|
+ let match;
|
|
|
+ // 使用正则表达式的 exec 方法遍历所有匹配项
|
|
|
+ while ((match = regex.exec(str)) !== null) {
|
|
|
+ // 提取变量名并添加到数组中
|
|
|
+ matches.push(match[1]);
|
|
|
+ }
|
|
|
+ return matches;
|
|
|
+}
|
|
|
const initText = (id) => {
|
|
|
state.textOptions = []
|
|
|
- sysIndexFieldList(proxy.$util.formatGetParam({
|
|
|
- indexId: id,
|
|
|
- type: props.transfer.type
|
|
|
- })).then(res => {
|
|
|
- state.textOptions = res.data
|
|
|
- state.loading = false
|
|
|
- })
|
|
|
- // if (isIndexCpt.value) {
|
|
|
- // sysIndexFieldList(proxy.$util.formatGetParam({
|
|
|
- // indexId: id,
|
|
|
- // type: 'inner_index'
|
|
|
- // })).then(res => {
|
|
|
- // state.textOptions = res.data
|
|
|
- // state.loading = false
|
|
|
- // })
|
|
|
- // } else {
|
|
|
- // outsideServiceFindById(id).then(res => {
|
|
|
- // const arr: any = []
|
|
|
- // const d = res.data
|
|
|
- // if (d.responseBody) {
|
|
|
- // try {
|
|
|
- // const p = JSON.parse(d.responseBody)
|
|
|
- // if (p.type == 1) {
|
|
|
- // p.json.data.forEach(v => {
|
|
|
- // arr.push({
|
|
|
- // fieldName: v.label,
|
|
|
- // fieldKey: v.key,
|
|
|
- // })
|
|
|
- // })
|
|
|
- // } else if (p.type == 2) {
|
|
|
- // p.text.data.forEach(v => {
|
|
|
- // arr.push({
|
|
|
- // fieldName: v.label,
|
|
|
- // fieldKey: v.key,
|
|
|
- // })
|
|
|
- // })
|
|
|
- // } else if (p.type == 3) {
|
|
|
- // p.other.data.forEach(v => {
|
|
|
- // arr.push({
|
|
|
- // fieldName: v.label,
|
|
|
- // fieldKey: v.key,
|
|
|
- // })
|
|
|
- // })
|
|
|
- // }
|
|
|
- // } catch (e) {}
|
|
|
- // }
|
|
|
- // state.textOptions = arr
|
|
|
- // state.loading = false
|
|
|
- // })
|
|
|
- // }
|
|
|
+ state.requestOptions = []
|
|
|
+ if (isIndexCpt.value) {
|
|
|
+ sysIndexFieldList(proxy.$util.formatGetParam({
|
|
|
+ indexId: id,
|
|
|
+ type: props.transfer.type
|
|
|
+ })).then(res => {
|
|
|
+ state.textOptions = res.data
|
|
|
+ state.loading = false
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ Promise.all([
|
|
|
+ sysIndexFieldList(proxy.$util.formatGetParam({
|
|
|
+ indexId: id,
|
|
|
+ type: props.transfer.type
|
|
|
+ })),
|
|
|
+ outsideServiceFindById(id)
|
|
|
+ ]).then(([textRes, serviceRes]) => {
|
|
|
+ state.textOptions = textRes.data
|
|
|
+ const map = new Map()
|
|
|
+ const d = serviceRes.data
|
|
|
+ if (d.requestParams) {
|
|
|
+ try {
|
|
|
+ const p = JSON.parse(d.requestParams)
|
|
|
+ p?.forEach(v => {
|
|
|
+ if (v.type == 1 || v.type == 3) {
|
|
|
+ extractVariableNames(v.value)?.forEach(v => {
|
|
|
+ map.set(v, v)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } catch (e) {}
|
|
|
+ }
|
|
|
+ if (d.requestHeaders) {
|
|
|
+ try {
|
|
|
+ const p = JSON.parse(d.requestHeaders)
|
|
|
+ p?.forEach(v => {
|
|
|
+ if (v.type == 1 || v.type == 3) {
|
|
|
+ extractVariableNames(v.value)?.forEach(v => {
|
|
|
+ map.set(v, v)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } catch (e) {}
|
|
|
+ }
|
|
|
+ if (d.requestBody) {
|
|
|
+ try {
|
|
|
+ const p = JSON.parse(d.requestBody)
|
|
|
+ p?.data?.forEach(v => {
|
|
|
+ if (v.type == 1 || v.type == 3) {
|
|
|
+ extractVariableNames(v.value)?.forEach(v => {
|
|
|
+ map.set(v, v)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } catch (e) {}
|
|
|
+ }
|
|
|
+ state.requestOptions = Array.from(map.keys()).map(v => ({dictLabel: v, dictValue: v}))
|
|
|
+ state.loading = false
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
const handleChangeCondition = (val) => {
|
|
|
if (val) {
|