Merge branch 'dev' of http://47.92.113.182:3000/docking/docking-vue into dev
commit
464a59bb4d
|
@ -77,6 +77,11 @@ const frequencyOptions = [
|
|||
{ name: "每周", id: 2 },
|
||||
{ name: "每月", id: 3 },
|
||||
];
|
||||
const networkTypeOptions = [
|
||||
{ name: "互联网", id: 1 },
|
||||
{ name: "专网", id: 2 },
|
||||
{ name: "专线", id: 3 },
|
||||
];
|
||||
const options = [
|
||||
{ key: "platformName", label: "平台名称" },
|
||||
{ key: "platformCode", label: "平台编码" },
|
||||
|
@ -105,6 +110,13 @@ const options = [
|
|||
valueKey: "id",
|
||||
options: frequencyOptions,
|
||||
},
|
||||
{
|
||||
key: "networkType",
|
||||
label: "网络类型",
|
||||
type: "select",
|
||||
valueKey: "id",
|
||||
options: networkTypeOptions,
|
||||
},
|
||||
];
|
||||
const fnGetData = async () => {
|
||||
if (!props.corpInfoId) return;
|
||||
|
|
|
@ -66,6 +66,11 @@ const frequencyOptions = [
|
|||
{ name: "每周", id: 2 },
|
||||
{ name: "每月", id: 3 },
|
||||
];
|
||||
const networkTypeOptions = [
|
||||
{ name: "互联网", id: 1 },
|
||||
{ name: "专网", id: 2 },
|
||||
{ name: "专线", id: 3 },
|
||||
];
|
||||
const options = [
|
||||
{ key: "platformName", label: "平台名称", disabled: true },
|
||||
{ key: "platformCode", label: "平台编码", disabled: true },
|
||||
|
@ -98,6 +103,14 @@ const options = [
|
|||
options: frequencyOptions,
|
||||
disabled: true,
|
||||
},
|
||||
{
|
||||
key: "networkType",
|
||||
label: "网络类型",
|
||||
type: "select",
|
||||
valueKey: "id",
|
||||
options: networkTypeOptions,
|
||||
disabled: true,
|
||||
},
|
||||
];
|
||||
const fnGetData = async () => {
|
||||
if (!props.corpInfoId) return;
|
||||
|
|
Loading…
Reference in New Issue