|
@@ -1023,8 +1023,31 @@
|
|
|
<!-- 节点划分 -->
|
|
|
<divisionDialog v-model="divisionDialogShow" :classify-type="classifyType" />
|
|
|
<!-- 节点命名配置 -->
|
|
|
- <hc-dialog v-model="nodeNameDialogShow" title="节点命名配置" widths="800px">
|
|
|
- 固定高度弹窗
|
|
|
+ <hc-dialog v-model="nodeNameDialogShow" title="文件题名(全局)" widths="800px">
|
|
|
+ <div class="mb-4 text-orange">
|
|
|
+ <span
|
|
|
+ class="mr-4"
|
|
|
+ >提示:修改文件题名后,点击【<HcIcon name="refresh" />】按钮查看修改后的名称。修改保存后,需重新保存资料才能生效。</span>
|
|
|
+ </div>
|
|
|
+ <el-select
|
|
|
+ v-model="titleSetValue"
|
|
|
+ multiple
|
|
|
+ placeholder="请选择"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in titleOptions"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+
|
|
|
+ <div class="align-items-center flex items-center justify-center">
|
|
|
+ <el-input v-model="inputVal" class="mt-4 w-full" />
|
|
|
+ <el-link class="ml-1 mt-5">
|
|
|
+ <HcIcon name="refresh" class="text-2xl" />
|
|
|
+ </el-link>
|
|
|
+ </div>
|
|
|
</hc-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -2605,6 +2628,9 @@ const nodeNameDialogShow = ref(false)
|
|
|
const editNamingConfigClick = ()=>{
|
|
|
nodeNameDialogShow.value = true
|
|
|
}
|
|
|
+const titleSetValue = ref('')
|
|
|
+const titleOptions = ref([])
|
|
|
+const inputVal = ref('')
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|