更新
This commit is contained in:
parent
0c6c355a43
commit
84a5481543
282
src/views/user_informationg/component/breeding.vue
Normal file
282
src/views/user_informationg/component/breeding.vue
Normal file
@ -0,0 +1,282 @@
|
|||||||
|
|
||||||
|
<template>
|
||||||
|
<el-card style="margin-top: 16px">
|
||||||
|
<el-form
|
||||||
|
ref="elForm"
|
||||||
|
:disabled="true"
|
||||||
|
:model="formData"
|
||||||
|
size="mini"
|
||||||
|
label-width="100px"
|
||||||
|
>
|
||||||
|
<div class="tit">
|
||||||
|
养殖信息
|
||||||
|
<span class="time">更新于:{{ update_time }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="有无养殖培训" prop="breeding_training">
|
||||||
|
<el-radio-group v-model="datas.breeding_training" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="有无注册成立养殖公司"
|
||||||
|
label-width="200px"
|
||||||
|
prop="breeding_company"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.breeding_company" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="备注" prop="notes">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.notes"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="养殖类型" prop="breeding_type">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.breeding_type"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="开始时间" prop="breeding_time">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.breeding_time"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="上市时间" prop="mature_time">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.mature_time"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="产量" prop="yeild">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.yeild"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="预计收益" prop="estimated_income">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.estimated_income"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="农资农具使用情况" prop="farm_tools">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.farm_tools"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="是否生态养殖"
|
||||||
|
label-width="120px"
|
||||||
|
prop="ecological_farming"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.ecological_farming" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="现代化程度" prop="modernization">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.modernization"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="预售卖价格" prop="pre_price">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.pre_price"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="销售方式"
|
||||||
|
label-width="120px"
|
||||||
|
prop="method_sales"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.method_sales" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="有无加工仓储"
|
||||||
|
label-width="120px"
|
||||||
|
prop="processing_storage"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.processing_storage" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="有无宣传推广" label-width="120px" prop="promote">
|
||||||
|
<el-radio-group v-model="datas.promote" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="有无运输"
|
||||||
|
label-width="120px"
|
||||||
|
prop="transportation"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.transportation" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="是否有扩大经营需求"
|
||||||
|
label-width="120px"
|
||||||
|
prop="expand_business_needs"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.expand_business_needs" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="需求描述" prop="demand">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.demand"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="政策补助" prop="policy_subsidies">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.policy_subsidies"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang='ts'>
|
||||||
|
import { ref, defineProps } from "vue";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
datas: {
|
||||||
|
type: Object,
|
||||||
|
defualt: function () {
|
||||||
|
return {
|
||||||
|
breeding_training: "", //有无养殖培训
|
||||||
|
breeding_company: "", //有无注册成立种殖公司
|
||||||
|
notes: "", //备注
|
||||||
|
breeding_type: "", //养殖类型
|
||||||
|
breeding_time: "", //养殖开始时间
|
||||||
|
mature_time: "", //上市时间
|
||||||
|
yield: "", //产量
|
||||||
|
estimated_income: "", //预计收益
|
||||||
|
farm_tools: "", //农资农具使用情况
|
||||||
|
ecological_farming: "", //是否生态养殖
|
||||||
|
modernization: "", //现代化程度
|
||||||
|
pre_price: "", //预售卖价格
|
||||||
|
method_sales: "", //销售方式
|
||||||
|
processing_storage: "", //有无加工仓储
|
||||||
|
promote: "", //有无宣传推广
|
||||||
|
transportation: "", //有无运输
|
||||||
|
expand_business_needs: "", //是否有扩大经营需求
|
||||||
|
demand: "", //养殖述求
|
||||||
|
policy_subsidies: "", //政策补助
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
update_time: {
|
||||||
|
type: String,
|
||||||
|
defualt: "",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang='scss'>
|
||||||
|
.tit {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
translate: 1vw -1vw;
|
||||||
|
background-color: white;
|
||||||
|
margin: 2vh 0 0 0;
|
||||||
|
.time {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
margin-left: 1vw;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
210
src/views/user_informationg/component/store.vue
Normal file
210
src/views/user_informationg/component/store.vue
Normal file
@ -0,0 +1,210 @@
|
|||||||
|
|
||||||
|
<template>
|
||||||
|
<el-card style="margin-top: 16px">
|
||||||
|
<el-form
|
||||||
|
ref="elForm"
|
||||||
|
:disabled="true"
|
||||||
|
:model="formData"
|
||||||
|
size="mini"
|
||||||
|
label-width="100px"
|
||||||
|
>
|
||||||
|
<div class="tit">
|
||||||
|
开设店铺
|
||||||
|
<span class="time">更新于:{{ update_time }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="有无门面" prop="shop_front">
|
||||||
|
<el-radio-group v-model="datas.shop_front" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="门面面积" prop="area">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.area"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="经营地点" prop="place">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.place"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="经营类型" prop="type">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.type"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="门面环境" prop="environment">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.environment"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="服务对象" prop="service">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.service"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="有无营业资质"
|
||||||
|
label-width="120px"
|
||||||
|
prop="qualification"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="datas.qualification" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="有无进货渠道" label-width="120px" prop="stock">
|
||||||
|
<el-radio-group v-model="datas.stock" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="店铺规模" prop="scale">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.scale"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="商品来源" prop="online_display">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.online_display"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="有无线上展示" label-width="120px" prop="brand">
|
||||||
|
<el-radio-group v-model="datas.brand" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="有无品牌" label-width="120px" prop="field134">
|
||||||
|
<el-radio-group v-model="datas.brand" size="medium">
|
||||||
|
<el-radio label="1">有</el-radio>
|
||||||
|
<el-radio label="0">无</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="库存情况" prop="repertory">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.repertory"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="经营诉求" prop="appeal">
|
||||||
|
<el-input
|
||||||
|
v-model="datas.appeal"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang='ts'>
|
||||||
|
import { ref, defineProps } from "vue";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
datas: {
|
||||||
|
type: Object,
|
||||||
|
defualt: function () {
|
||||||
|
return {
|
||||||
|
appeal: "",
|
||||||
|
aea: "",
|
||||||
|
brand: "",
|
||||||
|
environment: "",
|
||||||
|
online_display: "",
|
||||||
|
place: "",
|
||||||
|
qualification: "",
|
||||||
|
repertory: "",
|
||||||
|
scale: "",
|
||||||
|
service: "",
|
||||||
|
shop_front: "",
|
||||||
|
source: "",
|
||||||
|
stock: "",
|
||||||
|
type: "",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
update_time: {
|
||||||
|
type: String,
|
||||||
|
defualt: "",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang='scss'>
|
||||||
|
.tit {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
translate: 1vw -1vw;
|
||||||
|
background-color: white;
|
||||||
|
margin: 2vh 0 0 0;
|
||||||
|
.time {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
margin-left: 1vw;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
722
src/views/user_informationg/details.vue
Normal file
722
src/views/user_informationg/details.vue
Normal file
@ -0,0 +1,722 @@
|
|||||||
|
<template>
|
||||||
|
<el-card>
|
||||||
|
<el-form
|
||||||
|
ref="elForm"
|
||||||
|
:disabled="true"
|
||||||
|
:model="formData"
|
||||||
|
size="mini"
|
||||||
|
label-width="100px"
|
||||||
|
>
|
||||||
|
<!-- <div style="font-size: 1.2rem; translate: 1vw 0; background-color: white">
|
||||||
|
个人信息
|
||||||
|
</div> -->
|
||||||
|
<p class="tit">个人信息</p>
|
||||||
|
|
||||||
|
<el-col>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="姓名" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.name"
|
||||||
|
placeholder="请输入姓名"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="性别" prop="sex">
|
||||||
|
<el-radio-group v-model="formData.sex" size="medium">
|
||||||
|
<el-radio :label="1">男</el-radio>
|
||||||
|
<el-radio :label="2">女</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="年龄" prop="age">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.age"
|
||||||
|
placeholder="请输入年龄"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="电话" prop="phone">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.phone"
|
||||||
|
placeholder="请输入电话"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="身份证号" prop="id_card">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.id_card"
|
||||||
|
placeholder="请输入身份证号"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="地址" prop="field104">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.address"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<p class="tit">地区信息</p>
|
||||||
|
<el-col>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="地址">
|
||||||
|
<el-input
|
||||||
|
:value="
|
||||||
|
formData.area_name +
|
||||||
|
formData.street_name +
|
||||||
|
formData.village_name +
|
||||||
|
formData.brigade_name
|
||||||
|
"
|
||||||
|
placeholder="请输入地址"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="详细地址" prop="address">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.address"
|
||||||
|
placeholder="请输入详细地址"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item
|
||||||
|
label="汽车是否能到家"
|
||||||
|
label-width="200px"
|
||||||
|
prop="highway"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="formData.highway" size="medium">
|
||||||
|
<el-radio :label="1">是</el-radio>
|
||||||
|
<el-radio :label="0">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item
|
||||||
|
label="是否使用智能手机"
|
||||||
|
label-width="200px"
|
||||||
|
prop="smart_phone"
|
||||||
|
>
|
||||||
|
<el-radio-group v-model="formData.smart_phone" size="medium">
|
||||||
|
<el-radio :label="1">是</el-radio>
|
||||||
|
<el-radio :label="0">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6" v-if="formData.smart_phone">
|
||||||
|
<el-form-item label="微信号" prop="field119">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.skills"
|
||||||
|
placeholder="请输入微信号"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<p class="tit">常住人口</p>
|
||||||
|
<el-col>
|
||||||
|
<div v-for="(item, index) in formData.family" :key="index">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="姓名" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="item.name"
|
||||||
|
placeholder="请输入姓名"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6" class="dates">
|
||||||
|
<el-form-item label="出生日期" prop="field110">
|
||||||
|
<el-date-picker
|
||||||
|
:disabled="true"
|
||||||
|
v-model="item.birth_time"
|
||||||
|
style="width: 150%"
|
||||||
|
placeholder="请输入出生日期"
|
||||||
|
clearable
|
||||||
|
></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="就业情况" prop="field111">
|
||||||
|
<el-select
|
||||||
|
:disabled="true"
|
||||||
|
v-model="item.situation"
|
||||||
|
placeholder="请输入就业情况"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="(items, indexs) in workLists"
|
||||||
|
:key="indexs"
|
||||||
|
:label="items.name"
|
||||||
|
:value="items.id"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="技能特长" prop="field119">
|
||||||
|
<el-input
|
||||||
|
v-model="item.skills"
|
||||||
|
placeholder="请输入技能特长"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-form-item label="是否存在学生, 婴幼儿" labelWidth="200px">
|
||||||
|
<el-radio-group v-model="formData.child" size="medium">
|
||||||
|
<el-radio :label="1">是</el-radio>
|
||||||
|
<el-radio :label="0">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<div v-for="(item, index) in formData.child_arr" v-if="formData.child">
|
||||||
|
<el-col v-if="formData.child_arr[index].age <= 3">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="年龄" prop="field134">
|
||||||
|
<el-input
|
||||||
|
v-model="item.age"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="哺乳方式" prop="feeding">
|
||||||
|
<el-radio-group v-model="item.feeding" size="medium">
|
||||||
|
<el-radio
|
||||||
|
v-for="(items, indexs) in datas.feedsList"
|
||||||
|
:key="index"
|
||||||
|
:label="items.value"
|
||||||
|
>{{ items.label }}</el-radio
|
||||||
|
>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="备注" prop="field157">
|
||||||
|
<el-input
|
||||||
|
v-model="item.notes"
|
||||||
|
placeholder="请输入备注"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
<el-col v-else>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="年龄" prop="field134">
|
||||||
|
<el-input
|
||||||
|
v-model="item.age"
|
||||||
|
clearable
|
||||||
|
:disabled="true"
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6" v-if="formData.child_arr[index].age >= 3">
|
||||||
|
<el-form-item label="年级" prop="grade">
|
||||||
|
<el-input
|
||||||
|
v-model="item.grade"
|
||||||
|
placeholder="请输入年级"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="是否补课" prop="is_lesson">
|
||||||
|
<el-radio-group v-model="item.is_lesson" size="medium">
|
||||||
|
<el-radio label="1">是</el-radio>
|
||||||
|
<el-radio label="0">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6" v-if="item.is_lesson">
|
||||||
|
<el-form-item label="补课情况" prop="lessons">
|
||||||
|
<el-input
|
||||||
|
v-model="item.lessons"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="备注" prop="field138">
|
||||||
|
<el-input
|
||||||
|
v-model="item.notes"
|
||||||
|
placeholder="请输入备注"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</div>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
<template
|
||||||
|
v-for="(item, card_index) in formData.datas"
|
||||||
|
:key="'card' + item.id"
|
||||||
|
>
|
||||||
|
<store
|
||||||
|
v-if="item.category_child == 8"
|
||||||
|
:datas="item.datas"
|
||||||
|
:update_time="item.update_time"
|
||||||
|
></store>
|
||||||
|
<breeding
|
||||||
|
v-if="item.category_child == 32"
|
||||||
|
:datas="item.datas"
|
||||||
|
:update_time="item.update_time"
|
||||||
|
></breeding>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup name="test">
|
||||||
|
import { ref, reactive } from "vue";
|
||||||
|
import store from "./component/store.vue";
|
||||||
|
import breeding from "./component/breeding.vue";
|
||||||
|
|
||||||
|
import { fileManagelist, fileManageDetil } from "@/api/informationg";
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const formData = reactive({
|
||||||
|
name: "",
|
||||||
|
phone: "",
|
||||||
|
age: "",
|
||||||
|
sex: "",
|
||||||
|
id_card: "",
|
||||||
|
area_name: "",
|
||||||
|
street_name: "",
|
||||||
|
village_name: "",
|
||||||
|
brigade_name: "",
|
||||||
|
addressa: "",
|
||||||
|
address: "",
|
||||||
|
// 常住人口
|
||||||
|
family: [
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
birth_time: "",
|
||||||
|
situation: "",
|
||||||
|
work: "",
|
||||||
|
phone: "",
|
||||||
|
skills: "",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
child: undefined,
|
||||||
|
child_arr: [
|
||||||
|
{
|
||||||
|
name: "",
|
||||||
|
birth: "",
|
||||||
|
age: 0,
|
||||||
|
class: "",
|
||||||
|
lessons: "",
|
||||||
|
notes: "",
|
||||||
|
feeding: "",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
highway: undefined,
|
||||||
|
smart_phone: undefined,
|
||||||
|
wechat: "",
|
||||||
|
datas: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
const workLists = reactive([
|
||||||
|
{ name: "做工地的", id: "0" },
|
||||||
|
{ name: "厂里打工", id: "1" },
|
||||||
|
{ name: "公司职员", id: "2" },
|
||||||
|
{ name: "政府上班", id: "3" },
|
||||||
|
{ name: "种地", id: "4" },
|
||||||
|
{ name: "在家赋闲", id: "5" },
|
||||||
|
{ name: "其他", id: "6" },
|
||||||
|
]);
|
||||||
|
const isCheck = ref(false);
|
||||||
|
const datas = reactive({
|
||||||
|
subjs: [
|
||||||
|
{
|
||||||
|
label: "语文",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "数学",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "英语",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "艺术类",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "其他",
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
feedsList: [
|
||||||
|
{
|
||||||
|
label: "母乳",
|
||||||
|
value: "0",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "奶粉",
|
||||||
|
value: "1",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
plantList: [
|
||||||
|
{
|
||||||
|
label: "自己种养",
|
||||||
|
value: "0",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "出租",
|
||||||
|
value: "1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "代种养",
|
||||||
|
value: "2",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "租更多地扩大种植",
|
||||||
|
value: "3",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 房屋风格
|
||||||
|
houseStyle: [
|
||||||
|
{
|
||||||
|
label: "中式",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "美式",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "欧式",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "简约",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "奢华",
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "别墅/四合院",
|
||||||
|
value: 6,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "其他",
|
||||||
|
value: 7,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 维护内容
|
||||||
|
weihu: [
|
||||||
|
{
|
||||||
|
label: "房顶",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "厕所",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "管线",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "电器",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
field102Options: [
|
||||||
|
{
|
||||||
|
label: "别墅",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "洋房",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "高层",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "楼梯房",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 生态种植
|
||||||
|
ecologyPlant: [
|
||||||
|
{
|
||||||
|
label: "非生态种植",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
sellType: [
|
||||||
|
{
|
||||||
|
label: "自销",
|
||||||
|
value: "1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "定点销售",
|
||||||
|
value: "2",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 宣传
|
||||||
|
publicize: [
|
||||||
|
{
|
||||||
|
label: "有无宣传推广",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
//经营类型
|
||||||
|
field106Options: [
|
||||||
|
{
|
||||||
|
label: "超市",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "生鲜",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "饭店",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "五金",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "杂货",
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "服装",
|
||||||
|
value: 6,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "文具",
|
||||||
|
value: 7,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "其他",
|
||||||
|
value: 8,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 服务对象
|
||||||
|
field109Options: [
|
||||||
|
{
|
||||||
|
label: "学生",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "家庭客户",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "青年客户",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "老年人",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "游客",
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 宴席类型
|
||||||
|
banquetList: [
|
||||||
|
{
|
||||||
|
label: "婚宴",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "寿宴",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "满月酒",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "其它庆功宴",
|
||||||
|
value: 4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "白事",
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
//
|
||||||
|
field106aOptions: [
|
||||||
|
{
|
||||||
|
label: "酒店",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "一条龙",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "只请厨师",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 交通工具
|
||||||
|
field104Options: [
|
||||||
|
{
|
||||||
|
label: "电瓶车",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "摩托车",
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "小汽车",
|
||||||
|
value: 3,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
provinceOptions: [],
|
||||||
|
cityOptions: [],
|
||||||
|
areaOptions: [],
|
||||||
|
streetOptions: [],
|
||||||
|
});
|
||||||
|
const test = () => {
|
||||||
|
console.log(formData.banquetList);
|
||||||
|
};
|
||||||
|
const field181Options = reactive([
|
||||||
|
{
|
||||||
|
label: "有加工仓储",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
const field183Options = reactive([
|
||||||
|
{
|
||||||
|
label: "有运输",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
const field188Options = reactive([
|
||||||
|
{
|
||||||
|
label: "是否想要扩大经营",
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
// 分析
|
||||||
|
const analyse = ref(true);
|
||||||
|
|
||||||
|
const addDecoration = () => {};
|
||||||
|
|
||||||
|
fileManageDetil({ id: route.query.id }).then(async (res) => {
|
||||||
|
// console.log(res);
|
||||||
|
for (const key in formData) {
|
||||||
|
if (res[key] != null && res[key] != undefined) {
|
||||||
|
//@ts-ignore
|
||||||
|
formData[key] = res[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// "area_name": "江阳区",
|
||||||
|
// "street_name": "茜草街道",
|
||||||
|
// "village_name": "建国村",
|
||||||
|
// "brigade_name": "10队",
|
||||||
|
formData.addressa =
|
||||||
|
formData.area_name +
|
||||||
|
formData.street_name +
|
||||||
|
formData.village_name +
|
||||||
|
formData.brigade_name +
|
||||||
|
formData.address;
|
||||||
|
|
||||||
|
console.log(formData);
|
||||||
|
// await getCityList();
|
||||||
|
// await getAreaList();
|
||||||
|
// await getStreetList();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.content {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tit {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
translate: 1vw -1vw;
|
||||||
|
background-color: white;
|
||||||
|
|
||||||
|
margin: 2vh 0 0vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
// .tit {
|
||||||
|
// font-size: 1.2rem;
|
||||||
|
// margin: 10px 0;
|
||||||
|
// background-color: #f6f6f6;
|
||||||
|
// }
|
||||||
|
|
||||||
|
.dates {
|
||||||
|
.el-input__inner {
|
||||||
|
width: 14vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
@ -24,6 +24,25 @@
|
|||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="性别" prop="name">
|
||||||
|
<el-radio-group v-model="formData.sex" size="medium">
|
||||||
|
<el-radio :label="1">男</el-radio>
|
||||||
|
<el-radio :label="2">女</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-form-item label="年龄" prop="age">
|
||||||
|
<el-input
|
||||||
|
v-model="formData.age"
|
||||||
|
placeholder="请输入年龄"
|
||||||
|
clearable
|
||||||
|
:style="{ width: '100%' }"
|
||||||
|
>
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<el-form-item label="电话" prop="phone">
|
<el-form-item label="电话" prop="phone">
|
||||||
<el-input
|
<el-input
|
||||||
@ -35,22 +54,11 @@
|
|||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<!-- <el-col :span="6">
|
|
||||||
<el-form-item label="住址" prop="address">
|
|
||||||
<el-input
|
|
||||||
v-model="formData.address"
|
|
||||||
placeholder="请输入家庭住址"
|
|
||||||
clearable
|
|
||||||
:style="{ width: '100%' }"
|
|
||||||
>
|
|
||||||
</el-input>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col> -->
|
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<el-form-item label="所属成员" prop="field104">
|
<el-form-item label="身份证号" prop="id_card">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="formData.field104"
|
v-model="formData.id_card"
|
||||||
placeholder="请输入所属成员"
|
placeholder="请输入身份证号"
|
||||||
clearable
|
clearable
|
||||||
:style="{ width: '100%' }"
|
:style="{ width: '100%' }"
|
||||||
>
|
>
|
||||||
|
@ -18,10 +18,13 @@
|
|||||||
</el-form>
|
</el-form>
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||||||
<el-table-column label="用户编号" prop="id" show-overflow-tooltip />
|
<el-table-column label="编号" prop="id" show-overflow-tooltip />
|
||||||
<el-table-column label="用户名" prop="name" show-overflow-tooltip />
|
<el-table-column label="镇公司" show-overflow-tooltip >
|
||||||
<el-table-column label="联系方式" prop="phone" show-overflow-tooltip />
|
<template #default="{ row }">
|
||||||
<el-table-column label="地址" show-overflow-tooltip>
|
{{row.extend?.company_name}}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="所属地区" show-overflow-tooltip>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<!-- <dict-value :options="dictData.show_status" :value="row.status" /> -->
|
<!-- <dict-value :options="dictData.show_status" :value="row.status" /> -->
|
||||||
|
|
||||||
@ -33,16 +36,26 @@
|
|||||||
}}
|
}}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="所属生产队队长" prop="type_name" show-overflow-tooltip />
|
<el-table-column label="队长姓名" prop="phone" show-overflow-tooltip>
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{row.extend?.nickname}}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="档案名称" prop="name" show-overflow-tooltip />
|
||||||
|
<el-table-column label="联系电话" prop="phone" show-overflow-tooltip />
|
||||||
|
<el-table-column label="更新时间" prop="update_time" show-overflow-tooltip />
|
||||||
|
<el-table-column label="建档时间" prop="create_time" show-overflow-tooltip />
|
||||||
|
|
||||||
|
<!-- <el-table-column label="所属生产队队长" prop="type_name" show-overflow-tooltip />
|
||||||
<el-table-column label="所属镇管理" prop="type_name" show-overflow-tooltip />
|
<el-table-column label="所属镇管理" prop="type_name" show-overflow-tooltip />
|
||||||
<el-table-column label="所属区域经理" prop="type_name" show-overflow-tooltip />
|
<el-table-column label="所属区域经理" prop="type_name" show-overflow-tooltip />
|
||||||
<el-table-column label="最近更新时间" prop="type_name" show-overflow-tooltip />
|
<el-table-column label="最近更新时间" prop="type_name" show-overflow-tooltip /> -->
|
||||||
<el-table-column label="操作" align="center" width="auto" fixed="right">
|
<el-table-column label="操作" align="center" width="auto" fixed="right">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-button v-perms="['flow/edit']" type="primary" link>
|
<el-button v-perms="['flow/edit']" type="primary" link>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{
|
:to="{
|
||||||
path: 'user/user_informationgdetil',
|
path: 'user_informationg/details',
|
||||||
query: {
|
query: {
|
||||||
id: row.id,
|
id: row.id,
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user