Browse Source

并卷规则字段增加

duy 2 months ago
parent
commit
f53dc56b08
1 changed files with 29 additions and 0 deletions
  1. 29 0
      src/views/archives/rolling/bookmark.vue

+ 29 - 0
src/views/archives/rolling/bookmark.vue

@@ -62,6 +62,22 @@
                             <el-input v-model="formInline.value.archiveNameSuffix" placeholder="请输入" />
                         </el-form-item>
                     </el-col>
+                    <el-col :span="12">
+                        <el-form-item label="并卷规则">
+                            <el-select
+                                v-model="formInline.value.archiveAutoType" 
+                                placeholder="请选择"
+                                style="width:400px;"
+                            >
+                                <el-option
+                                    v-for="item in ruleTypeList"
+                                    :key="item.value"
+                                    :label="item.label"
+                                    :value="item.value"
+                                />
+                            </el-select>
+                        </el-form-item>
+                    </el-col>
                 </el-row>
             </el-form>
         </hc-new-card>
@@ -157,6 +173,19 @@ const coilsize = ref([
     { label: '40mm', value: '40' },
     { label: '50mm', value: '50' },
 ])
+const ruleTypeList = ref([
+{
+        label: '单独组卷',
+        value: 1,
+      }, {
+        label: '分类并卷',
+        value: 2,
+      },
+      {
+        label: '最高组卷',
+        value: 3,
+      },
+])
 const onSubmit = () => {
     console.log('submit!')
 }//新增