|
@@ -137,7 +137,7 @@
|
137
|
137
|
<!-- <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>-->
|
138
|
138
|
<!-- <el-button size="small" type="primary" @click="export_detail_four">报表下载3</el-button>-->
|
139
|
139
|
<!-- <el-button size="small" type="primary" @click="export_detail_five">报表下载3</el-button>-->
|
140
|
|
-<!-- <el-button size="small" type="primary" @click="export_detail_six">报表下载9</el-button>-->
|
|
140
|
+<!-- <el-button size="small" type="primary" @click="export_detail_six">诊疗下载</el-button>-->
|
141
|
141
|
<!-- <el-button size="small" type="primary" @click="export_detail_tenone">报表下载10</el-button>-->
|
142
|
142
|
<!-- <el-button size="small" type="primary" @click="export_detail_seven">报表下载4</el-button>-->
|
143
|
143
|
|
|
@@ -316,6 +316,7 @@
|
316
|
316
|
查询结算清单
|
317
|
317
|
</el-button>
|
318
|
318
|
|
|
319
|
+
|
319
|
320
|
<el-button
|
320
|
321
|
size="mini"
|
321
|
322
|
type="primary"
|
|
@@ -324,6 +325,14 @@
|
324
|
325
|
>
|
325
|
326
|
撤销结算清单
|
326
|
327
|
</el-button>
|
|
328
|
+
|
|
329
|
+ <el-button
|
|
330
|
+ size="mini"
|
|
331
|
+ type="primary"
|
|
332
|
+ @click="cancelUploadThree(scope.row)"
|
|
333
|
+ >
|
|
334
|
+ 更改结算清单状态为未提交
|
|
335
|
+ </el-button>
|
327
|
336
|
<el-button
|
328
|
337
|
size="mini"
|
329
|
338
|
type="primary"
|
|
@@ -864,6 +873,41 @@ export default {
|
864
|
873
|
});
|
865
|
874
|
|
866
|
875
|
|
|
876
|
+ },cancelUploadThree(row){
|
|
877
|
+ var that = this;
|
|
878
|
+ // if(this.$store.getters.xt_user.org_id == 10191){
|
|
879
|
+ axios
|
|
880
|
+ .get("http://127.0.0.1:9532/api/comfirm/upload", {
|
|
881
|
+ params: {
|
|
882
|
+ order_id: row.id,
|
|
883
|
+ admin_user_id: this.$store.getters.xt_user.user.id,
|
|
884
|
+ stas_type: 0
|
|
885
|
+ },
|
|
886
|
+ })
|
|
887
|
+ .then(function (response) {
|
|
888
|
+ if (response.data.state == 0) {
|
|
889
|
+ that.$message.error(response.data.msg);
|
|
890
|
+ return false;
|
|
891
|
+ } else {
|
|
892
|
+ if (response.data.data.failed_code == -10) {
|
|
893
|
+ that
|
|
894
|
+ .$confirm(response.data.data.msg, "医保错误信息", {
|
|
895
|
+ confirmButtonText: "确 定",
|
|
896
|
+ type: "warning",
|
|
897
|
+ })
|
|
898
|
+ .then(() => {
|
|
899
|
+ })
|
|
900
|
+ .catch(() => {
|
|
901
|
+ });
|
|
902
|
+ } else {
|
|
903
|
+ that.$message.success("确认成功");
|
|
904
|
+ row.result.id = response.data.data.result.id;
|
|
905
|
+ }
|
|
906
|
+ }
|
|
907
|
+ })
|
|
908
|
+ .catch(function (error) {
|
|
909
|
+ });
|
|
910
|
+ // }
|
867
|
911
|
},
|
868
|
912
|
confirmUploadInfo(row){
|
869
|
913
|
var that = this;
|
|
@@ -1123,7 +1167,7 @@ export default {
|
1123
|
1167
|
id_card_no: order.certno,
|
1124
|
1168
|
level: "未定级",
|
1125
|
1169
|
psn_type: order.psn_type,
|
1126
|
|
- date: "2022年3月",
|
|
1170
|
+ date: "202年3月",
|
1127
|
1171
|
start_time: order.his.in_hosptial_time,
|
1128
|
1172
|
end_time: order.his.out_hosptial_time,
|
1129
|
1173
|
total: order.info[b].det_item_fee_sumamt,
|
|
@@ -1726,7 +1770,7 @@ export default {
|
1726
|
1770
|
var tarList = []
|
1727
|
1771
|
for (let i = 0; i < list.length; i++) {
|
1728
|
1772
|
let obj = {
|
1729
|
|
- "周期": "2022年第二季度",
|
|
1773
|
+ "周期": "2023年第三季度",
|
1730
|
1774
|
"类别": "门诊",
|
1731
|
1775
|
"医保目录编码": list[i].code,
|
1732
|
1776
|
"医保目录名称": list[i].name,
|