Merge remote-tracking branch 'remotes/origin/xiaoman'

This commit is contained in:
weicw
2022-01-25 17:31:43 +08:00

View File

@@ -104,6 +104,9 @@
<a-form-item label="纬度" name="latitude"> <a-form-item label="纬度" name="latitude">
<a-input v-model:value="form.latitude" placeholder="请输入纬度" allow-clear /> <a-input v-model:value="form.latitude" placeholder="请输入纬度" allow-clear />
</a-form-item> </a-form-item>
<a-form-item label="序号" name="seq">
<a-input v-model:value="form.seq" placeholder="请输入序号" allow-clear />
</a-form-item>
</a-form> </a-form>
</a-modal> </a-modal>
<!-- 表格 --> <!-- 表格 -->
@@ -260,6 +263,10 @@
title: "纬度", title: "纬度",
dataIndex: "latitude", dataIndex: "latitude",
}, },
{
title: "序号",
dataIndex: "seq",
},
{ {
title: "操作", title: "操作",
key: "action", key: "action",
@@ -294,6 +301,10 @@
required: true, required: true,
message: '请输入断面名称' message: '请输入断面名称'
}], }],
seq: [{
required: true,
message: '请输入序号'
}],
}, },
yearOptions: [], yearOptions: [],
showNYear: false, showNYear: false,