更新对接

This commit is contained in:
24kycj
2024-11-25 22:09:56 +08:00
parent 8eb94d7c5d
commit 93212a8e96
4 changed files with 206 additions and 43 deletions
+27 -3
View File
@@ -23,9 +23,9 @@
</div>
</div>
<div class="flex_box work_top_item">
<div class="work_top_label">拷贝类型</div>
<div class="work_top_label">刻录类型</div>
<div class="work_top_val">
<el-select v-model="form.copy" placeholder="请选择">
<el-select v-model="form.copy_type" placeholder="请选择">
<el-option v-for="item in copyList" :key="item.value" :label="item.label" :value="item.value"> </el-option>
</el-select>
</div>
@@ -236,6 +236,7 @@ export default {
form: {
task_uuid: '',
cd_type: 2,
copy_type: 2,
json_file: '',
udf_file: '',
label: '2024-10-17',
@@ -253,6 +254,7 @@ export default {
udf_file: '/home/test/temp.csv',
label: '2024-11-07',
cd_type: 1,
copy_type: 2,
has_copy_task: true,
has_print_task: true,
ass_task: [
@@ -271,7 +273,29 @@ export default {
// CD类型:CD 700MB1DVD 4.7GB2 DVD_DL 8.5GB:3BD 25GB4,BD_DL 50GB:5,BD_TL 100GB:6,BD_QL 128GB:7
CDTypes: [],
cd_types: [],
copyList: [],
copyList: [
{
value: 1,
label: '文件文件夹刻录',
disabled: true
},
{
value: 2,
label: 'ISO文件刻录'
},
// {
// value: 3,
// label: '复制光盘'
// },
// {
// value: 4,
// label: '自动批量读取光盘'
// },
// {
// value: 5,
// label: '自动归档任务'
// },
],
fileProgess: 30,
// 模板列表
templates: [],