Commit 53684ab4 authored by wuhao's avatar wuhao 🎯

adser

parent 0b55c1ec
......@@ -64,7 +64,7 @@ export default {
allowHalf: true,
},
"status": {
"value": null,
"value": 1,
"type": "select",
"title": "启停状态",
"name": [
......@@ -128,7 +128,7 @@ export default {
rules: [
{
required: false,
pattern: /^\d{11}$/,
pattern: /^(((\d{3,4}-)?[0-9]{7,8})|(1(3|4|5|6|7|8|9)\d{9}))$/,
message: '手机号格式不正确'
},
],
......
......@@ -251,6 +251,9 @@ const Deviceprovide = (props) => {
if (i == "customerUserList") {
defaultFields[i].value = []
}
if (i == "status") {
defaultFields[i].value = 1
}
}
for (let i in extrafields) {
extrafields[i].value = null;
......
......@@ -253,6 +253,9 @@ const Deviceprovide = (props) => {
if (i == "supplierUserList") {
defaultFields[i].value = []
}
if (i == "status") {
defaultFields[i].value = 1
}
}
for (let i in extrafields) {
extrafields[i].value = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment