hd 3 місяців тому
батько
коміт
b7e4652b3e

+ 13 - 9
component/statistics/CopdPatientRecord/index.css

@ -33,22 +33,26 @@
.tag{
    padding: 1px 10px;
    display: inline-block;
    border-radius: 6px;
    border-radius: 25px;
}
.success{
    background-color: #c0efd0;
    color: #33CC66;
    background-color: #52c41a;
    color: #fff;
}
.warning{
    background-color: #ffdfb0;
    color: #FF6600;
    background-color: #faad14;
    color: #fff;
}
.danger{
    background-color: #ffc0c0;
    color: #FF3333;
    background-color: #ff5b05;
    color: #fff;
}
.primary{
    background-color: #b0dfff;
    color: #0066FF;
    background-color: #3597f2;
    color: #fff;
}
.info{
    background-color: #e4e7ed;
    color: #909399;
}

+ 4 - 5
component/statistics/CopdPatientRecord/index.html

@ -266,8 +266,8 @@
          <el-select v-model="batchForm.status">
            <el-option label="全部" value=""></el-option>
            <el-option label="未分配" value="2"></el-option>
            <el-option label="未接受" value="0"></el-option>
            <el-option label="已接受" value="1"></el-option>
            <el-option label="未接收" value="0"></el-option>
            <el-option label="已接收" value="1"></el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="签约状态:">
@ -292,8 +292,7 @@
        <el-table-column type="selection" width="70" :selectable="selectable"></el-table-column>
        <el-table-column min-width="100" label="基本信息" align="center">
          <template slot-scope="{row}">
            <div>{{row.name}}</div>
            <div>{{row.idcard}}</div>
            <div>{{row.name}} &nbsp;&nbsp; {{row.idcard}}</div>
            <div>{{row.liveAddress}}</div>
          </template>
        </el-table-column>
@ -306,7 +305,7 @@
        </el-table-column>
        <el-table-column min-width="100" label="当前分配信息" align="center">
          <template slot-scope="{row}">
            <div :class="`tag ${row.statusName == '已接收'?'success':row.statusName == '未接收'?'primary':'danger'}`">{{row.statusName}}</div>
            <div :class="`tag ${row.statusName == '已接收'?'primary':row.statusName == '未接收'?'danger':'info'}`">{{row.statusName}}</div>
            <div>{{row.doctorName}}</div>
            <div>{{row.hospitalName}}</div>
          </template>

+ 4 - 1
component/statistics/CopdPatientRecord/index.js

@ -479,7 +479,10 @@ Vue.component('copd-patient-record', {
        (this.hospital = ''),
        (this.doctorName = ''),
        (this.isLive = ''),
        (this.firstOrg = '')
        (this.firstOrg = ''),
        (this.isSign = ''),
        (this.registAddress = []),
        (this.liveAddress = [])
    },
    //下转状态
    getDictByDictName(value) {