bug819: 图层上架:上架时,先提示接口异常,再提示上架成功,在我的申请界面,申请单号为空
This commit is contained in:
parent
012d562013
commit
9040f4fa5b
|
@ -86,6 +86,7 @@
|
|||
<template v-if="attr.type == 'input2'">
|
||||
<a-input
|
||||
disabled
|
||||
:maxLength="1000"
|
||||
v-model:value="val[attr.field]"
|
||||
:placeholder="'请填写' + attr.name"
|
||||
/>
|
||||
|
@ -144,6 +145,7 @@
|
|||
/>
|
||||
<template v-if="val.type == 'input2'">
|
||||
<a-input
|
||||
:maxLength="1000"
|
||||
v-model:value="val.note1"
|
||||
:placeholder="'请填写' + val.name"
|
||||
/>
|
||||
|
@ -228,6 +230,7 @@
|
|||
{{ item.name }}
|
||||
</div>
|
||||
<a-input
|
||||
:maxLength="1000"
|
||||
v-if="item.type == 'input' && item.name.indexOf('名称') == -1"
|
||||
v-model:value="item.note1"
|
||||
:placeholder="'请输入' + item.name"
|
||||
|
@ -250,6 +253,7 @@
|
|||
/>
|
||||
<a-input
|
||||
v-else-if="item.type == 'AbilityType'"
|
||||
:maxLength="1000"
|
||||
v-model:value="item.note1"
|
||||
:placeholder="'请输入' + item.name"
|
||||
:disabled="true"
|
||||
|
@ -257,6 +261,7 @@
|
|||
<a-input
|
||||
v-else-if="item.type == 'ComponentType'"
|
||||
v-model:value="item.note1"
|
||||
:maxLength="1000"
|
||||
:placeholder="'请输入' + item.name"
|
||||
:disabled="true"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue