feat:增长营业执照字段,订单搜索增加电池编号,退单增加操作人

This commit is contained in:
yangqingyuan
2024-08-08 10:24:48 +08:00
parent 8eee2c5b01
commit c92f09d621
3 changed files with 9 additions and 2 deletions

View File

@@ -141,12 +141,12 @@
<a-col <a-col
v-bind="styleResponsive ? { md: 12, sm: 24, xs: 24 } : { span: 12 }" v-bind="styleResponsive ? { md: 12, sm: 24, xs: 24 } : { span: 12 }"
> >
<a-form-item label="营业执照" name="idCard"> <a-form-item label="营业执照" name="businessLicense">
<a-input <a-input
allow-clear allow-clear
:maxlength="20" :maxlength="20"
placeholder="请输入营业执照号码" placeholder="请输入营业执照号码"
v-model:value="form.idCard" v-model:value="form.businessLicense"
/> />
</a-form-item> </a-form-item>
<a-form-item label="身份证号" name="idCard"> <a-form-item label="身份证号" name="idCard">
@@ -233,6 +233,7 @@
organizationId: undefined, organizationId: undefined,
birthday: '', birthday: '',
idCard: '', idCard: '',
businessLicense: '',
comments: '' comments: ''
}); });

View File

@@ -35,6 +35,7 @@
<a-select-option value="orderNo">订单号</a-select-option> <a-select-option value="orderNo">订单号</a-select-option>
<a-select-option value="merchantCode">商户编号</a-select-option> <a-select-option value="merchantCode">商户编号</a-select-option>
<a-select-option value="userId">用户ID</a-select-option> <a-select-option value="userId">用户ID</a-select-option>
<a-select-option value="equipmentCode">电池编号</a-select-option>
</a-select> </a-select>
</template> </template>
</a-input-search> </a-input-search>

View File

@@ -168,6 +168,11 @@
key: 'updateTime', key: 'updateTime',
customRender: ({ text }) => toDateString(text) customRender: ({ text }) => toDateString(text)
}, },
{
title: '操作人',
dataIndex: 'operator',
key: 'operator'
},
{ {
title: '创建时间', title: '创建时间',
dataIndex: 'createTime', dataIndex: 'createTime',