提交 881c83ad 编写于 作者: chengxiang.li's avatar chengxiang.li

update

上级 af95f6ae
...@@ -298,7 +298,7 @@ ...@@ -298,7 +298,7 @@
color: #449284; color: #449284;
background:rgba(236,244,242,1); background:rgba(236,244,242,1);
border:1px solid rgba(150,195,193,1); border:1px solid rgba(150,195,193,1);
margin-left: 10px; margin: 0 0 10px 10px;
&.choose-group{ &.choose-group{
color: #666666; color: #666666;
background:rgba(255,255,255,1); background:rgba(255,255,255,1);
......
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
patientIdList: [], patientIdList: [],
searchData: { searchData: {
pageNo: 1, // 第几页 pageNo: 1, // 第几页
pageSize: 10, // 每页条数 pageSize: 15, // 每页条数
tableData: [], tableData: [],
totalRows: 0, totalRows: 0,
}, },
...@@ -356,8 +356,8 @@ ...@@ -356,8 +356,8 @@
}) })
}, },
handleDeletePatients() { handleDeletePatients() {
let selectList = this.multipleSelection;
console.log('list: ', selectList); // console.log('list: ', selectList);
let tempArr = []; let tempArr = [];
for(let i=0; i<selectList.length; i++){ for(let i=0; i<selectList.length; i++){
tempArr.push({ tempArr.push({
......
...@@ -137,6 +137,7 @@ ...@@ -137,6 +137,7 @@
</template> </template>
<script> <script>
import { mapGetters } from 'vuex';
import { getSaasDomain } from '@/utils/index'; import { getSaasDomain } from '@/utils/index';
import { import {
getUploadHistory, getUploadHistory,
...@@ -148,7 +149,7 @@ ...@@ -148,7 +149,7 @@
return { return {
searchData: { searchData: {
pageNo: 1, // 第几页 pageNo: 1, // 第几页
pageSize: 10, // 每页条数 pageSize: 15, // 每页条数
tableData: [], tableData: [],
totalCount: 0, totalCount: 0,
}, },
...@@ -163,6 +164,11 @@ ...@@ -163,6 +164,11 @@
created() { created() {
this.goToGetUploadHistory(); this.goToGetUploadHistory();
}, },
computed: {
...mapGetters([
'_token',
]),
},
methods: { methods: {
notUseDefaultUpload(){ notUseDefaultUpload(){
// console.log('just console>>>>>>>>') // console.log('just console>>>>>>>>')
...@@ -200,7 +206,7 @@ ...@@ -200,7 +206,7 @@
if( process.env.BUILD_ENV == "development" ){ if( process.env.BUILD_ENV == "development" ){
req.token = '5E2F79D96DD144A0B23E7607E2169A68' req.token = '5E2F79D96DD144A0B23E7607E2169A68'
}else{ }else{
req.token = localStorage.getItem("token"); req.token = self._token;
} }
self.postData = JSON.stringify(req); self.postData = JSON.stringify(req);
uploadExcel(self.postData).then(res => { uploadExcel(self.postData).then(res => {
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
<!-- 选择分组 弹窗 --> <!-- 选择分组 弹窗 -->
<el-dialog <el-dialog
class="choose-label-wrap" class="choose-label-wrap"
title="选择分组" :title="showDownloadQRModal == false ? '选择分组' : '下载二维码'"
:visible.sync="showChooseLabelModal" :visible.sync="showChooseLabelModal"
width="680px" width="680px"
:close-on-click-modal="false" :close-on-click-modal="false"
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册