Commit b2ad6a51 by Joey

feat(@gms/gms-plugin-billexpand): 审批意见最大长度

parent b2bc6f6f
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div class="suggestion-wrapper"> <div class="suggestion-wrapper">
<div class="label">{{this.define.title}}</div> <div class="label">{{this.define.title}}</div>
<div class="input-wrapper"> <div class="input-wrapper">
<Input v-model="value" type="textarea" :placeholder="define.config.placeholder" /> <Input v-model="value" type="textarea" :placeholder="define.config.placeholder" :maxlength="120" />
<div class="suggestion-button-wrapper"> <div class="suggestion-button-wrapper">
<ConfirmPopover <ConfirmPopover
v-for="suggestion in suggestionOption" v-for="suggestion in suggestionOption"
...@@ -84,6 +84,7 @@ ...@@ -84,6 +84,7 @@
:ref="'input-' + row.code" :ref="'input-' + row.code"
@on-blur="handleInputBlur(row)" @on-blur="handleInputBlur(row)"
type="textarea" type="textarea"
:maxlength="120"
/> />
</template> </template>
<template slot-scope="{ row, index }" slot="action"> <template slot-scope="{ row, index }" slot="action">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment