|
|
@@ -60,7 +60,11 @@ const fields = ref([
|
|
|
label: "工号", model: "userId", type: "input", placeholder: "请输入工号"
|
|
|
},
|
|
|
{
|
|
|
- label: "等级", model: "source", type: "select", placeholder: "选择等级", options: userGradeList.value
|
|
|
+ label: "等级", model: "source", type: "select", placeholder: "选择等级", options: userGradeList,
|
|
|
+ props: {
|
|
|
+ label: 'gradeName',
|
|
|
+ value: 'grade',
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
label: "订单号", model: "orderno", type: "input", placeholder: "请输入订单号"
|
|
|
@@ -103,6 +107,15 @@ function getList(item: PageInfo) {
|
|
|
|
|
|
};
|
|
|
const resetForm = () => {
|
|
|
+ Object.assign(formInline, {
|
|
|
+ userName: "",//姓名
|
|
|
+ mobile: "",//手机号
|
|
|
+ userId: "",//工号
|
|
|
+ source: "",//等级
|
|
|
+ orderno: "",//订单号
|
|
|
+ licenseno: "",//车牌号
|
|
|
+ signingTime: [],//签单时间
|
|
|
+ })
|
|
|
findpage();
|
|
|
}
|
|
|
//数据查询
|