jiangping
2024-12-27 5506edbe54883b31db3cc8e4a1d9d0795a18a3c9
company/src/components/business/OperaUnionChangeUnitDetailWindow.vue
@@ -10,7 +10,7 @@
            <div class="desc_item">
                <div class="desc_item_label">
                    <div class="desc_item_label_left">
                        <span>投保人:{{ model.shopName}}</span>
                        <span>投保人:{{ model.shopName}} </span>
                      <span v-if="model.status === 0">保单状态:<span  :class="'change-status'+model.status" >待签署</span></span>
                      <span v-if="model.status === 1">保单状态:<span  :class="'change-status'+model.status" >待审核</span></span>
                      <span v-if="model.status === 2">保单状态:<span  :class="'change-status'+model.status" >已生效</span></span>
@@ -27,7 +27,7 @@
                            <el-button v-if="[1,2].includes(model.status)" type="primary" @click="viewApplyFile">查看申请单</el-button>
                            <el-button v-if="[0].includes(model.status)" type="primary" :disabled="loading" :loading="loading" @click="getSignLink(0)">签署申请单</el-button>
                            <el-button v-if="[2].includes(model.status)" type="primary" @click="viewPidan">查看批单</el-button>
                            <el-button v-if=" [1].includes(model.status)" type="primary" @click="$refs.OperaUnionChangeCheckWindow.open('上传批单',model,3)">上传批单</el-button>
                            <el-button v-if=" [1].includes(model.status) && userInfo.type !== 2" type="primary" @click="$refs.OperaUnionChangeCheckWindow.open('上传批单',model,3)">上传批单</el-button>
                            <el-button  v-if="[0,1].includes(model.status)" type="danger" @click="$refs.OperaUnionChangeCheckWindow.open('退回申请',model,1)">退回申请</el-button>
                        </template>
                        <template  v-if="0">
@@ -113,6 +113,7 @@
                          label="被保险人">
                      </el-table-column>
                      <el-table-column
                          v-if="hasDispatchUnit !== 1"
                          prop="oldDuName"
                          label="原派遣单位">
                      </el-table-column>
@@ -121,6 +122,7 @@
                          label="原所属工种">
                      </el-table-column>
                      <el-table-column
                          v-if="hasDispatchUnit !== 1"
                          prop="duName"
                          label="更换后派遣单位">
                      </el-table-column>
@@ -203,21 +205,29 @@
            </span>
      </el-dialog>
      <el-dialog
          title="查看保险单"
          title="查看批单"
          :visible.sync="visibleFile"
          width="800px"
          :modal="true"
          :modal="false"
          :show-close="true"
          :close-on-click-modal="false"
          append-to-body
          center>
        <div class="desc_item_from" v-for="(item, index) in pidanFileData" :key="index"  style="margin-bottom: 15px">
          <span v-if="index ==0">{{item.name}}:</span>
          <span v-if="index >0">被保险人({{item.name}})保险单:</span>
          <a  style="cursor: pointer;color: #2E68EC" v-if="item.file && item.file.fileurl && index ==0" @click="openFile(item.file.fileurlFull,item.name)">在线预览</a>
          <a  style="cursor: pointer;color: #2E68EC" v-if="item.file && item.file.fileurl && index !=0 " @click="openFile(item.file.fileurlFull,'被保险人('+item.name+')保险单')">在线预览</a>
          <span v-if="!item.file || !item.file.fileurl">未上传</span>
        </div>
          <el-table :data="model.pidanFileList">
              <el-table-column property="name" label="文件名"></el-table-column>
              <el-table-column label="操作" width="90px">
                  <template slot-scope="{row}">
                      <el-button type="primary" @click="chakan(row.name, row.fileurlFull)">查看</el-button>
                  </template>
              </el-table-column>
          </el-table>
<!--        <div class="desc_item_from" v-for="(item, index) in pidanFileData" :key="index"  style="margin-bottom: 15px">-->
<!--          <span v-if="index ==0">{{item.name}}:</span>-->
<!--          <span v-if="index >0">被保险人({{item.name}})保险单:</span>-->
<!--          <a  style="cursor: pointer;color: #2E68EC" v-if="item.file && item.file.fileurl && index ==0" @click="openFile(item.file.fileurlFull,item.name)">在线预览</a>-->
<!--          <a  style="cursor: pointer;color: #2E68EC" v-if="item.file && item.file.fileurl && index !=0 " @click="openFile(item.file.fileurlFull,'被保险人('+item.name+')保险单')">在线预览</a>-->
<!--          <span v-if="!item.file || !item.file.fileurl">未上传</span>-->
<!--        </div>-->
<!--
        <div class="desc_item_from" v-for="(item, index) in pidanFileData" :key="index"  style="margin-bottom: 15px">
          <span v-if="index ==0">{{item.name}}:</span>
@@ -283,6 +293,7 @@
      model: {},
      visiblePhone: false,
      visibleFile:false,
      hasDispatchUnit: null,
      form: {
          businessId: null,
          phone: this.$store.state.userInfo.company? this.$store.state.userInfo.company.phone:null,
@@ -336,6 +347,9 @@
        this.getDetail()
        this.getList()
     },
    chakan(name, url) {
       this.$refs.OperaPdfViewerWindow.open(name, url)
    },
    send () {
      sendSms({
        phone: this.form.phone
@@ -472,6 +486,7 @@
    getApplyList () {
      applyList({ unionChangeId: this.model.id, getFiles: 1 }).then(res => {
        this.model.applyList = res
        this.hasDispatchUnit = res[0].hasDispatchUnit
        if (res && res.length > 0) {
          res.forEach(item => {
            if (item.pidanFile) {