张雄 3 years ago
parent 3e439481e0
commit 397594d015

Binary file not shown.

@ -111,18 +111,24 @@ export const rules = {
message: "请输入联系人手机号", message: "请输入联系人手机号",
trigger: "blur", trigger: "blur",
}], }],
// contactsAddress: [ contactsEmail: [
// { {
// required: true, required: true,
// message: "请选择联系人地址", message: "请输入联系人邮箱",
// trigger: "change", trigger: "blur",
// }], }],
// contactsAddressDetail: [ contactsAddress: [
// { {
// required: true, required: true,
// message: "请输入联系人详细地址", message: "请选择联系人地址",
// trigger: "blur", trigger: "change",
// }], }],
contactsAddressDetail: [
{
required: true,
message: "请输入联系人详细地址",
trigger: "blur",
}],
} }
export const cascaderConfig = { export const cascaderConfig = {
label: 'name', label: 'name',

@ -77,7 +77,8 @@
<div class="card-a"> <div class="card-a">
<div class="cardTitle">小区后台</div> <div class="cardTitle">小区后台</div>
<div class="card-a-content" v-if="companyInfo != null"> <div class="card-a-content" v-if="companyInfo != null">
<div v-if="estateList != null"> <!-- <div v-if="estateList != null"> -->
<div>
<div style="color: #d53131" v-show="estateList == null"> <div style="color: #d53131" v-show="estateList == null">
当前尚未添加小区信息 当前尚未添加小区信息
</div> </div>
@ -304,6 +305,7 @@ export default {
methods: { methods: {
async getData() { async getData() {
let res = await consoleShow(); let res = await consoleShow();
console.log(res)
if(res.data.consoleCompanyVo != null) { if(res.data.consoleCompanyVo != null) {
this.form.companyId = res.data.consoleCompanyVo.id this.form.companyId = res.data.consoleCompanyVo.id
} }

@ -11,9 +11,9 @@
<a-col :span="24"> <a-col :span="24">
<a-form-model-item label="支付类型" prop="payType"> <a-form-model-item label="支付类型" prop="payType">
<a-select v-model="form.payType"> <a-select v-model="form.payType">
<a-select-option :value="1">线下</a-select-option> <!-- <a-select-option :value="1">线下</a-select-option> -->
<a-select-option :value="2">支付宝</a-select-option> <a-select-option :value="2">支付宝</a-select-option>
<a-select-option :value="3">微信</a-select-option> <!-- <a-select-option :value="3">微信</a-select-option> -->
</a-select> </a-select>
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>

Loading…
Cancel
Save