Procházet zdrojové kódy

change live value

pull/75/head
zhangtao před 1 rokem
rodič
revize
2569d29b82
4 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. +1
    -1
      src/views/task-manage/hook/basic.js
  2. +1
    -1
      src/views/task-manage/hook/equipment.js
  3. +1
    -1
      src/views/task-manage/hook/execution.js
  4. +2
    -2
      src/views/task-manage/tools/drawForm.js

+ 1
- 1
src/views/task-manage/hook/basic.js Zobrazit soubor

@@ -36,7 +36,7 @@ export default function(data) {
},
{
label: '是否直播',
value: data.isLive === 0 ? '否' : '是'
value: data.isLive === 2 ? '否' : '是'
},
{
label: '备注',

+ 1
- 1
src/views/task-manage/hook/equipment.js Zobrazit soubor

@@ -19,7 +19,7 @@ export default function(data) {
{
label: '盒子名称',
value: data.cloudBoxName,
isLive: 0
isLive: 2
}
]
return customRef((track, trigger) => {

+ 1
- 1
src/views/task-manage/hook/execution.js Zobrazit soubor

@@ -19,7 +19,7 @@ export default function(data) {
{
label: '盒子名称',
value: data.cloudBoxName,
isLive: 0
isLive: 2
}
]
return customRef((track, trigger) => {

+ 2
- 2
src/views/task-manage/tools/drawForm.js Zobrazit soubor

@@ -30,7 +30,7 @@ export const form = reactive({
{ type: 'select', key: 'flightHandId', label: '飞手', props: { options: pilotList, placeholder: '请选择飞手', clearable: true }},
{ type: 'select', key: 'equipmentId', label: '执飞无人机', props: { options: equipmentList, placeholder: '请选择执飞无人机', clearable: true }},
{ type: 'select', key: 'equipmentMountId', label: '挂载设备', props: { options: equipmentMountList, placeholder: '请选择挂载设备', clearable: true }},
{ type: 'select', key: 'cloudBoxId', label: '挂载盒子', isLive: 0, props: { options: cloudList, placeholder: '请选择盒子', clearable: true }},
{ type: 'select', key: 'cloudBoxId', label: '挂载盒子', isLive: 2, props: { options: cloudList, placeholder: '请选择盒子', clearable: true }},
{ type: 'select', key: 'photographyWay', label: '拍摄方式', props: { options: PHOTOGRAPHY_WAY, placeholder: '请选择拍摄方式', clearable: true }}
],
// 飞手接单 - 校验
@@ -44,7 +44,7 @@ export const form = reactive({
{ type: 'select', key: 'equipmentId', label: '执飞无人机', props: { options: equipmentList, placeholder: '请选择执飞无人机', clearable: true }},
{ type: 'select', key: 'photographyWay', label: '摄影方式', props: { options: PHOTOGRAPHY_WAY, placeholder: '请选择拍摄方式', clearable: true }},
{ type: 'select', key: 'equipmentMountId', label: '挂载设备', props: { options: equipmentMountList, placeholder: '请选择挂载设备', clearable: true }},
{ type: 'select', key: 'cloudBoxId', label: '盒子名称', isLive: 0, props: { options: cloudList, placeholder: '请选择盒子', clearable: true }}
{ type: 'select', key: 'cloudBoxId', label: '盒子名称', isLive: 2, props: { options: cloudList, placeholder: '请选择盒子', clearable: true }}
]
})


Načítá se…
Zrušit
Uložit