邮件记录详情,创建时间显示不正确

编辑参数键名,键不能修改,修改时只读,新增时正常
租户套餐显示备注及搜索条件显示(同vue2)
This commit is contained in:
gexinzhineng/gxzn27
2023-03-28 13:41:56 +08:00
parent 944015484a
commit 90959702ee
7 changed files with 269 additions and 325 deletions

View File

@@ -12,9 +12,11 @@
<div ref="editor" v-if="dialogVisible1">
<XTextButton style="float: right" :title="t('common.copy')" @click="copy(formValue)" />
<el-scrollbar height="580">
<pre>
{{ formValue }}
</pre>
<div v-highlight>
<code class="hljs">
{{ formValue }}
</code>
</div>
</el-scrollbar>
</div>
</Dialog>

View File

@@ -146,8 +146,8 @@
style="width: 100%"
>
<el-option
v-for="dict in getDictOptions(DICT_TYPE.BPM_MODEL_CATEGORY)"
:key="dict.value"
v-for="(dict, index) in getDictOptions(DICT_TYPE.BPM_MODEL_CATEGORY)"
:key="index"
:label="dict.label"
:value="dict.value"
/>
@@ -434,9 +434,9 @@ const handleUpdate = async (rowId: number) => {
// 设置数据
saveForm.value = await ModelApi.getModelApi(rowId)
if (saveForm.value.category == null) {
saveForm.value.category = 1
saveForm.value.category = '1'
} else {
saveForm.value.category = Number(saveForm.value.category)
saveForm.value.category = saveForm.value.category
}
}