|
@@ -6,53 +6,63 @@
|
|
|
<el-container>
|
|
|
<el-aside width="250px">
|
|
|
|
|
|
- <button @click="gotolink2" v-bind:class="{ button: selected3, buttonselected: selected4 }">合作方</button>
|
|
|
- <button @click="gotolink3" v-bind:class="{ button: selected5, buttonselected: selected6 }">合作产品</button>
|
|
|
+ <el-menu
|
|
|
+ default-active="1"
|
|
|
+ class="el-menu-vertical-demo"
|
|
|
+ >
|
|
|
+ <el-menu-item @click="gotolink2" class="vertical-center" index="1">
|
|
|
+ <i class="el-icon-location"></i>
|
|
|
+ <span slot="title">合作方</span>
|
|
|
+ </el-menu-item>
|
|
|
+ <el-menu-item @click="gotolink3" class="vertical-center" index="2">
|
|
|
+ <i class="el-icon-menu"></i>
|
|
|
+ <span slot="title">合作产品</span>
|
|
|
+ </el-menu-item>
|
|
|
+ </el-menu>
|
|
|
|
|
|
- </el-aside>
|
|
|
+ </el-aside>
|
|
|
<!-- <div class="line" />-->
|
|
|
|
|
|
<el-main>
|
|
|
-<!-- <el-divider></el-divider>-->
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<div class="submit_view">
|
|
|
- <span>新增合作方</span>
|
|
|
- <el-form class="model_add_button" ref="form" label-width="120px">
|
|
|
- <el-form-item label="合作方名称" width="100px">
|
|
|
- <el-input v-model="cooperator_name" style="width:200px"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="证件号码" width="100px">
|
|
|
- <el-input v-model="cooperatorNum" style="width:400px"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="证件类型" width="100px">
|
|
|
- <select name="art-cate" v-model="corp_certificate_type_name" style="height:35px">
|
|
|
- <option disabled selected style="display: block;" >请选择证件类型</option>
|
|
|
- <option v-for="item in arr "
|
|
|
- :key="item" :label="item"
|
|
|
- :value="item"></option>
|
|
|
-
|
|
|
- </select>
|
|
|
- </el-form-item>
|
|
|
+ <span style="display: block; margin-bottom: 20px;">新增合作方</span>
|
|
|
+<!-- <el-divider></el-divider>-->
|
|
|
+ <el-form class="model_add_button" ref="form" label-width="90px">
|
|
|
+ <el-form-item label="合作方名称" width="200px">
|
|
|
+ <el-input v-model="cooperator_name" style="width:215px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="证件号码" width="200px">
|
|
|
+ <el-input v-model="cooperatorNum" style="width:215px"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="证件类型" width="200px">
|
|
|
+ <el-select name="art-cate" v-model="corp_certificate_type_name" style="height:35px">
|
|
|
+ <option disabled selected style="display: block;" >请选择证件类型</option>
|
|
|
+ <option v-for="item in arr "
|
|
|
+ :key="item" :label="item"
|
|
|
+ :value="item"></option>
|
|
|
|
|
|
- <el-form-item label="所属字段表" width="100px">
|
|
|
- <select name="art-cate" v-model="fieldTemplateNo"style="height:35px" >
|
|
|
- <option disabled selected style="display: block;">请选择字段表</option>
|
|
|
- <option v-for="(item,index) in fieldTemplateList "
|
|
|
- :key="index"
|
|
|
- :value="item.templateNo">{{item.templateName}}</option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
|
|
|
- </select>
|
|
|
- </el-form-item>
|
|
|
+ <el-form-item label="所属字段表" width="200px">
|
|
|
+ <el-select name="art-cate" v-model="fieldTemplateNo" style="height:35px" >
|
|
|
+ <option disabled selected style="display: block;">请选择字段表</option>
|
|
|
+ <option v-for="(item,index) in fieldTemplateList "
|
|
|
+ :key="index"
|
|
|
+ :value="item.templateNo">{{item.templateName}}</option>
|
|
|
|
|
|
- </el-form>
|
|
|
-
|
|
|
- <el-button class="model_add_button " type="primary" @click="submit()">完成</el-button>
|
|
|
- <el-button class="model_add_button " type="primary" @click="return_page()">返回</el-button>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
|
|
|
- </div>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ <div class="upper_bottom_bar" style="margin-top: 20px">
|
|
|
+ <el-button round class="model_add_button " type="primary" size="medium" style="margin-right: 10px;" @click="submit()" >
|
|
|
+ 完成
|
|
|
+ </el-button>
|
|
|
+ <el-button round class="model_add_button " type="danger" size="medium" style="margin-right: 10px;" @click="return_page()">返回
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
</el-main>
|
|
|
</el-container>
|
|
|
|
|
@@ -294,7 +304,15 @@ export default {
|
|
|
height:50px;
|
|
|
font-weight: 900
|
|
|
}
|
|
|
-
|
|
|
+.el-menu-vertical-demo{
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+.upper_bottom_bar {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.line-between-divs {
|
|
|
+ border-bottom: 1px solid #ccc; /* 设置横线的样式,颜色可以根据需要调整 */
|
|
|
+ }
|
|
|
.line{
|
|
|
float: left;
|
|
|
width: 0.1em;
|