|
@@ -174,6 +174,18 @@
|
|
|
></Option>
|
|
|
</Select>
|
|
|
</FormItem>
|
|
|
+ <FormItem label="自查卷发卷频率:">
|
|
|
+ <InputNumber
|
|
|
+ v-model="modalForm.selfCheckFrequency"
|
|
|
+ :disabled="!modalFormCanEdit"
|
|
|
+ :min="2"
|
|
|
+ :max="100000"
|
|
|
+ :precision="0"
|
|
|
+ :active-change="false"
|
|
|
+ placeholder="输入数值"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </FormItem>
|
|
|
</Form>
|
|
|
<div class="rule-part-footer">
|
|
|
<Button
|
|
@@ -352,6 +364,18 @@
|
|
|
></Option>
|
|
|
</Select>
|
|
|
</FormItem>
|
|
|
+ <FormItem label="自查卷发卷频率:">
|
|
|
+ <InputNumber
|
|
|
+ v-model="modalForm.selfCheckFrequency"
|
|
|
+ :disabled="!modalFormRoughCanEdit"
|
|
|
+ :min="2"
|
|
|
+ :max="100000"
|
|
|
+ :precision="0"
|
|
|
+ :active-change="false"
|
|
|
+ placeholder="输入数值"
|
|
|
+ clearable
|
|
|
+ />
|
|
|
+ </FormItem>
|
|
|
</Form>
|
|
|
<div class="rule-part-footer">
|
|
|
<Button
|
|
@@ -390,7 +414,8 @@ const initModalForm = {
|
|
|
propDenominator: 1,
|
|
|
showStandardPaperManage: 1,
|
|
|
clearData: 0,
|
|
|
- removeHighAndLow: 0
|
|
|
+ removeHighAndLow: 0,
|
|
|
+ selfCheckFrequency: 200
|
|
|
};
|
|
|
|
|
|
export default {
|