linwenxin 5 månader sedan
förälder
incheckning
24b226c307

+ 108 - 2
src/views/setting/insuranceAdministration/InsuranceAgreement/InsuranceAgreementForm.vue

@@ -3,6 +3,7 @@
     <zj-form-container ref="formRef" :formData="formData" :formRules="formRules">
       <zj-form-module title="保险基础信息" label-width="120px" :formData="formData" :formItems="formItems" :column="3">
       </zj-form-module>
+      <zj-form-module title="网点信息" label-width="0px" :formData="formData" :formItems="items2"> </zj-form-module>
     </zj-form-container>
     <div v-if="type === 0 || type === 1">
       <el-button size="mini" @click="submit">提交</el-button>
@@ -13,6 +14,10 @@
 
 <script>
 import { insureAgreeDetail, insureAgreeAdd, insureAgreeUpdate } from '@/api/InsuranceManagement.js'
+import pagingTransfer from '@/components/paging-transfer.vue'
+import { EventBus } from '@/utils/eventBus'
+import { settleRelaConfigQuerySubWebsit } from '@/api/settlementRelationshipAllocation'
+import { required } from '@/components/template/rules_verify.js'
 export default {
   props: {
     type: {
@@ -32,14 +37,20 @@ export default {
         context: '',
         agreementType: '',
         agreementName: '',
-        status: 'ON'
+        status: 'ON',
+        agreementPolicies: []
       },
       formRules: {
         context: [{ required: true, message: '请输入', trigger: 'blur' }],
         agreementType: [{ required: true, message: '请输入', trigger: 'blur' }],
         agreementName: [{ required: true, message: '请输入', trigger: 'blur' }],
         status: [{ required: true, message: '请输入', trigger: 'blur' }]
-      }
+      },
+      formInline: {
+        websitId: '',
+        websitName: ''
+      },
+      itemsList: []
     }
   },
   computed: {
@@ -95,6 +106,93 @@ export default {
           }
         }
       ]
+    },
+    items2() {
+      return [
+        {
+          name: 'slot-component',
+          md: 24,
+          attributes: {},
+          formItemAttributes: { label: '', 'label-width': '0px', prop: 'agreementPolicies', rules: [...required] },
+          render: (h, { props, onInput }) => {
+            var { formData } = props
+            return (
+              <div>
+                <div>
+                  <el-form
+                    size="mini"
+                    inline={true}
+                    value={this.formInline}
+                    onInput={v => {
+                      this.formInline = v
+                    }}
+                    label-width="0px"
+                  >
+                    <el-form-item label="">
+                      <el-input
+                        value={this.formInline.websitId}
+                        onInput={v => {
+                          this.formInline.websitId = v
+                        }}
+                        placeholder="网点编号"
+                      ></el-input>
+                    </el-form-item>
+                    <el-form-item label="">
+                      <el-input
+                        value={this.formInline.websitName}
+                        onInput={v => {
+                          this.formInline.websitName = v
+                        }}
+                        placeholder="网点名称"
+                      ></el-input>
+                    </el-form-item>
+                    <el-form-item>
+                      <el-button
+                        type="primary"
+                        onClick={() => {
+                          EventBus.$emit('handlePaginationCallBack33')
+                        }}
+                      >
+                        查询
+                      </el-button>
+                      <el-button
+                        onClick={() => {
+                          this.formInline.websitId = ''
+                          this.formInline.websitName = ''
+                        }}
+                      >
+                        重置
+                      </el-button>
+                    </el-form-item>
+                  </el-form>
+                </div>
+                <pagingTransfer
+                  handlePaginationCallBackKey="handlePaginationCallBack33"
+                  value={this.formData.agreementPolicies}
+                  onInput={v => {
+                    this.formData.agreementPolicies = v
+                  }}
+                  left-columns={[
+                    { id: 'companyWechatName', label: '所属公司编号', width: '160' },
+                    { id: 'websitId', label: '网点编号', width: '120' },
+                    { id: 'name', label: '网点名称', width: '' }
+                  ]}
+                  right-columns={[
+                    { id: 'companyWechatName', label: '所属公司编号', width: '160' },
+                    { id: 'websitId', label: '网点编号', width: '120' },
+                    { id: 'name', label: '网点名称', width: '' }
+                  ]}
+                  show-pagination={true}
+                  pagination-call-back={this.paginationCallback}
+                  title-texts={['待选项', '已选项']}
+                  min-height="300px"
+                  table-row-key={row => row.websitId}
+                />
+              </div>
+            )
+          }
+        }
+      ]
     }
   },
   created() {
@@ -110,6 +208,14 @@ export default {
     }
   },
   methods: {
+    paginationCallback({ pageIndex, pageSize }) {
+      return new Promise(resolve => {
+        resolve({
+          total: [],
+          data: []
+        })
+      })
+    },
     submit() {
       this.$refs['formRef'].validate(valid => {
         if (valid) {

+ 108 - 2
src/views/setting/insuranceAdministration/InsuranceContract/InsuranceContractForm.vue

@@ -5,6 +5,7 @@
       </zj-form-module>
       <zj-form-module title="保单内容" label-width="100px" :formData="formData" :formItems="formItems2" :column="3">
       </zj-form-module>
+      <zj-form-module title="网点信息" label-width="0px" :formData="formData" :formItems="items2"> </zj-form-module>
     </zj-form-container>
     <div v-if="type === 0 || type === 1">
       <el-button size="mini" @click="submit">提交</el-button>
@@ -16,6 +17,10 @@
 <script>
 import { insureDetail, insureAdd, insureUpdate } from '@/api/InsuranceManagement.js'
 import { dateFormat } from '@/utils/util'
+import pagingTransfer from '@/components/paging-transfer.vue'
+import { EventBus } from '@/utils/eventBus'
+import { settleRelaConfigQuerySubWebsit } from '@/api/settlementRelationshipAllocation'
+import { required } from '@/components/template/rules_verify.js'
 export default {
   props: {
     type: {
@@ -52,7 +57,8 @@ export default {
         month10: '',
         month11: '',
         month12: '',
-        policyRanges: [{ rangeName: '', rangeText: '' }]
+        policyRanges: [{ rangeName: '', rangeText: '' }],
+        policyWebsits: []
       },
       formRules: {
         text: [{ required: true, message: '请输入', trigger: 'blur' }],
@@ -92,7 +98,12 @@ export default {
         'month10',
         'month11',
         'month12'
-      ]
+      ],
+      formInline: {
+        websitId: '',
+        websitName: ''
+      },
+      itemsList: []
     }
   },
   computed: {
@@ -323,6 +334,93 @@ export default {
           }
         }
       ]
+    },
+    items2() {
+      return [
+        {
+          name: 'slot-component',
+          md: 24,
+          attributes: {},
+          formItemAttributes: { label: '', 'label-width': '0px', prop: 'policyWebsits', rules: [...required] },
+          render: (h, { props, onInput }) => {
+            var { formData } = props
+            return (
+              <div>
+                <div>
+                  <el-form
+                    size="mini"
+                    inline={true}
+                    value={this.formInline}
+                    onInput={v => {
+                      this.formInline = v
+                    }}
+                    label-width="0px"
+                  >
+                    <el-form-item label="">
+                      <el-input
+                        value={this.formInline.websitId}
+                        onInput={v => {
+                          this.formInline.websitId = v
+                        }}
+                        placeholder="网点编号"
+                      ></el-input>
+                    </el-form-item>
+                    <el-form-item label="">
+                      <el-input
+                        value={this.formInline.websitName}
+                        onInput={v => {
+                          this.formInline.websitName = v
+                        }}
+                        placeholder="网点名称"
+                      ></el-input>
+                    </el-form-item>
+                    <el-form-item>
+                      <el-button
+                        type="primary"
+                        onClick={() => {
+                          EventBus.$emit('handlePaginationCallBack22')
+                        }}
+                      >
+                        查询
+                      </el-button>
+                      <el-button
+                        onClick={() => {
+                          this.formInline.websitId = ''
+                          this.formInline.websitName = ''
+                        }}
+                      >
+                        重置
+                      </el-button>
+                    </el-form-item>
+                  </el-form>
+                </div>
+                <pagingTransfer
+                  handlePaginationCallBackKey="handlePaginationCallBack22"
+                  value={this.formData.policyWebsits}
+                  onInput={v => {
+                    this.formData.policyWebsits = v
+                  }}
+                  left-columns={[
+                    { id: 'companyWechatName', label: '所属公司编号', width: '160' },
+                    { id: 'websitId', label: '网点编号', width: '120' },
+                    { id: 'name', label: '网点名称', width: '' }
+                  ]}
+                  right-columns={[
+                    { id: 'companyWechatName', label: '所属公司编号', width: '160' },
+                    { id: 'websitId', label: '网点编号', width: '120' },
+                    { id: 'name', label: '网点名称', width: '' }
+                  ]}
+                  show-pagination={true}
+                  pagination-call-back={this.paginationCallback}
+                  title-texts={['待选项', '已选项']}
+                  min-height="300px"
+                  table-row-key={row => row.websitId}
+                />
+              </div>
+            )
+          }
+        }
+      ]
     }
   },
   created() {
@@ -344,6 +442,14 @@ export default {
     }
   },
   methods: {
+    paginationCallback({ pageIndex, pageSize }) {
+      return new Promise(resolve => {
+        resolve({
+          total: [],
+          data: []
+        })
+      })
+    },
     submit() {
       this.$refs['formRef'].validate(valid => {
         if (valid) {