123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- // <template>
- // <div class="main-contain">
- // <div class="position">
- // <bread-crumb :crumbs="crumbs"></bread-crumb>
- // </div>
- // <div class="app-container">
- // <div
- // style="
- // justify-content: space-between;
- // margin: 0px 0 12px 0;
- // display: flex;
- // align-items: center;
- // "
- // >
- // <div>
- // <el-date-picker
- // size="small"
- // v-model="start_time"
- // prefix-icon="el-icon-date"
- // :editable="false"
- // style="width: 196px"
- // type="date"
- // placeholder="选择日期时间"
- // align="right"
- // format="yyyy-MM-dd"
- // value-format="yyyy-MM-dd"
- // @change="startTimeChange"
- // ></el-date-picker
- // >-
- // <el-date-picker
- // size="small"
- // v-model="end_time"
- // prefix-icon="el-icon-date"
- // :editable="false"
- // style="width: 196px"
- // type="date"
- // placeholder="选择日期时间"
- // align="right"
- // format="yyyy-MM-dd"
- // value-format="yyyy-MM-dd"
- // @change="endTimeChange"
- // ></el-date-picker>
- // <span>审核状态:</span>
- // <el-select
- // v-model="check_id"
- // style="width: 140px; margin-right: 10px"
- // placeholder="请选择"
- // @change="changeTypeName"
- // >
- // <el-option
- // v-for="item in checkList"
- // :key="item.id"
- // :label="item.name"
- // :value="item.id"
- // >
- // </el-option>
- // </el-select>
- // <el-input
- // size="small"
- // style="width: 200px; margin-left: 10px"
- // class="filter-item"
- // v-model.trim="keywords"
- // placeholder="单据编号,仓库名称"
- // />
- // <el-button
- // size="small"
- // class="filter-item"
- // type="primary"
- // icon="el-icon-search"
- // @click="search"
- // >搜索</el-button
- // >
- // </div>
- // <div>
- // <el-button size="small" type="primary" @click="toAdd">新增</el-button>
- // </div>
- // </div>
-
- // <el-table
- // :row-style="{ color: '#303133' }"
- // :header-cell-style="{
- // backgroundColor: 'rgb(245, 247, 250)',
- // color: '#606266',
- // }"
- // :data="tableList"
- // :class="signAndWeighBoxPatients"
- // border
- // >
- // <el-table-column label="单据编号" align="center">
- // <template slot-scope="scope">
- // {{scope.row.second_order_number}}
- // </template>
- // </el-table-column>
- // <el-table-column label="单据日期" align="center">
- // <template slot-scope="scope">
- // {{getTime(scope.row.record_date)}}
- // </template>
- // </el-table-column>
-
- // <el-table-column label="调出仓库" align="center" width="150">
- // <template slot-scope="scope">
- // {{getHouseName(scope.row.storehouse_out_id)}}
- // </template>
- // </el-table-column>
- // <el-table-column label="调入仓库" align="center">
- // <template slot-scope="scope">
- // {{getHouseName(scope.row.storehouse_in_id)}}
- // </template>
- // </el-table-column>
-
- // <el-table-column label="制单人" align="center">
- // <template slot-scope="scope">
- // {{getDocName(scope.row.creater)}}
- // </template>
- // </el-table-column>
- // <el-table-column label="审核人" align="center">
- // <template slot-scope="scope">
- // {{getDocName(scope.row.checker)}}
- // </template>
- // </el-table-column>
-
- // <el-table-column label="审核时间" align="center">
- // <template slot-scope="scope">
- // {{getTime(scope.row.checker)}}
- // </template>
- // </el-table-column>
-
-
- // <el-table-column label="操作" align="center" width="300px">
- // <template slot-scope="scope">
- // <el-button
- // icon="el-icon-edit-outline"
- // size="small"
- // type="primary"
- // @click="toClick(scope.row.id)"
- // >编辑
- // </el-button>
- // <el-button
- // icon="el-icon-edit-outline"
- // size="small"
- // type="primary"
- // @click="toDetail(scope.row.id)"
- // >详情
- // </el-button>
- // <el-button
- // icon="el-icon-delete"
- // size="small"
- // type="danger"
- // @click="toDelete(scope.row, scope.$index)"
- // >删除
- // </el-button>
- // </template>
- // </el-table-column>
- // </el-table>
- // <el-pagination
- // @size-change="handleSizeChange"
- // @current-change="handleCurrentChange"
- // :page-sizes="[10, 50, 100, 200, 500, 1000]"
- // :page-size="10"
- // background
- // align="right"
- // style="margin-top: 20px"
- // layout="total, sizes, prev, pager, next, jumper"
- // :total="total"
- // >
- // </el-pagination>
- // </div>
- // </div>
- // </template>
-
- // <script>
- // import BreadCrumb from "@/xt_pages/components/bread-crumb";
-
- // import {
- // getAllSecondOrderList
- // } from "@/api/seconde";
- // import { uParseTime } from "@/utils/tools";
- // export default {
- // name: "stockIn",
- // components: {},
- // components: {
- // BreadCrumb,
- // },
- // data() {
- // return {
- // isActive: false,
- // Color_txt: true,
- // crumbs: [
- // { path: false, name: "采购管理" },
- // { path: "/supply/query", name: "采购订单" },
- // ],
- // keywords: "",
- // total: 0,
- // multipleSelection: [],
- // signAndWeighBoxPatients: "sign-and-weigh-box-patients",
- // start_time: "",
- // end_time: "",
- // page: 1,
- // limit: 10,
- // goodType: [],
- // goodInfo: [],
- // org_id: 0,
- // types: [],
- // tableList: [{}],
- // type_name: "",
- // checkList: [
- // { id: 0, name: "请选择" },
- // { id: 1, name: "已审核" },
- // { id: 2, name: "未审核" },
- // ],
- // supplyList: [],
- // check_id: 0,
- // doctorList: [],
- // houseList:[],
- // };
- // },
- // methods: {
- // toAdd() {
- // this.$router.push({ path: "/purchase/order/add" });
- // },
- // changeTypeName() {
- // this.getlist();
- // },
- // startTimeChange() {
- // this.getlist();
- // },
- // endTimeChange() {
- // this.getlist();
- // },
- // search() {
- // this.getlist();
- // },
- // handleSizeChange(val) {
- // this.limit = val;
- // this.getlist();
- // },
- // handleCurrentChange(val) {
- // this.page = val;
- // this.getlist();
- // },
- // getTimes(time) {
- // if (time === "") {
- // return "";
- // }
- // return uParseTime(time, "{y}-{m}-{d}");
- // },
- // getlist() {
- // var params = {
- // check_id: this.check_id,
- // start_time: this.start_time,
- // end_time: this.end_time,
- // keyword: this.keywords,
- // page: this.page,
- // limit: this.limit,
- // };
- // getAllSecondOrderList(params).then((response) => {
- // if (response.data.state == 1) {
- // var list = response.data.data.list;
- // this.tableList = list;
- // var total = response.data.data.total;
- // this.total = total;
- // this.houseList = response.data.data.houseList
- // this.doctorList = response.data.data.doctorList
- // }
- // });
- // },
- // getName(id) {
- // var name = "";
- // for (let i = 0; i < this.supplyList.length; i++) {
- // if (id == this.supplyList[i].id) {
- // name = this.supplyList[i].supplier_name;
- // }
- // }
- // return name;
- // },
- // getDocName(id) {
- // var user_name = "";
- // for (let i = 0; i < this.doctorList.length; i++) {
- // if (id == this.doctorList[i].admin_user_id) {
- // user_name = this.doctorList[i].user_name;
- // }
- // }
- // return user_name;
- // },
- // getAllBuyPrice(arr) {
- // var buy_price = 0;
- // if (arr != undefined && arr.length > 0) {
- // for (let i = 0; i < arr.length; i++) {
- // buy_price += arr[i].count * arr[i].price;
- // }
- // }
- // return buy_price.toFixed(2);
- // },
- // getAllCount(arr) {
- // var count = 0;
- // if (arr != undefined && arr.length > 0) {
- // for (let i = 0; i < arr.length; i++) {
- // count += parseInt(arr[i].count);
- // }
- // }
- // if (count == 0) {
- // return "";
- // }
- // if (count > 0) {
- // return count;
- // }
- // },
- // toClick(id) {
- // window.sessionStorage.setItem('purchase_start_time',this.start_time)
- // window.sessionStorage.setItem('purchase_end_time',this.end_time)
- // this.$router.push({ path: "/stock/in/test/edit?id=" + id });
- // },
- // toDetail(id){
- // this.$router.push({ path: "/stock/in/test/detail?id=" + id });
- // },
- // toDelete(val, index) {
- // if (val.is_check == 1) {
- // this.$message.error("已审核单据,不能删除!");
- // return false;
- // }
- // if (val.orderOut.length > 0) {
- // this.$message.error("已关联单据,不能删除!");
- // return false;
- // }
- // this.$confirm("确认删除吗?", "删除", {
- // confirmButtonText: "确 定",
- // cancelButtonText: "取 消",
- // type: "warning",
- // }) .then(() => {
- // deletePurchaseOrder(val.id).then((response) => {
- // if (response.data.state == 1) {
- // var msg = response.data.data.msg;
- // this.tableList.splice(index, 1);
- // this.getlist()
- // this.$message.success("删除成功");
- // } else {
- // this.$message.error("删除失败");
- // }
- // });
- // }).catch(() => {});
- // },
- // // 动态改变表格样式
- // Color_Change() {
- // this.Color_txt = true;
- // console.log(this.Color_txt, "op");
- // },
-
- // Color_Changeleave() {
- // this.Color_txt = false;
- // console.log(this.Color_txt, "false");
- // },
- // getTime(time) {
- // if (time === '') {
- // return ''
- // }
- // return uParseTime(time, '{y}-{m}-{d}')
- // },
- // getHouseName(id){
- // var storehouse_name = ""
- // for(let i=0;i<this.houseList.length;i++){
- // if(id == this.houseList[i].id){
- // storehouse_name = this.houseList[i].storehouse_name
- // }
- // }
- // return storehouse_name
- // },
- // getDocName(id){
- // var user_name = ""
- // for(let i=0;i<this.doctorList.length;i++){
- // if(id == this.doctorList[i].admin_user_id){
- // user_name = this.doctorList[i].user_name
- // }
- // }
- // return user_name
- // },
- // },
- // created() {
-
- // var now = new Date(); //当前日期
- // var nowMonth = now.getMonth(); //当前月
- // var nowYear = now.getFullYear(); //当前年
- // //本月的开始时间
- // var monthStartDate = new Date(nowYear, nowMonth, 1);
- // this.start_time = this.getTimes(monthStartDate);
- // this.end_time = this.getTimes(new Date());
-
- // this.org_id = this.$store.getters.xt_user.org_id;
- // var start_time = window.sessionStorage.getItem('purchase_start_time')
-
- // var end_time = window.sessionStorage.getItem('purchase_end_time')
-
- // if(start_time !=null){
- // this.start_time = ""
- // this.start_time = start_time
- // }
- // if(end_time!=null){
- // this.end_time = ""
- // this.end_time = end_time
- // }
- // window.sessionStorage.removeItem('purchase_start_time')
- // window.sessionStorage.removeItem('purchase_end_time')
-
-
- // this.getlist();
-
- // },
- // };
- // </script>
- // <style lang="scss" scoped>
- // .cluster-rs {
- // text-align: center;
- // }
- // .annotation-rs {
- // width: 100%;
- // height: 100%;
- // border: none;
- // td {
- // width: 155px;
- // padding: 5px;
- // border-right: none;
- // text-align: center;
- // vertical-align: middle;
- // }
- // }
- // tr:last-child {
- // td {
- // border-bottom: none;
- // }
- // }
- // </style>
-
- // <style rel="stylesheet/css" lang="scss" scoped>
- // .information {
- // border: 1px #dcdfe6 solid;
- // padding: 30px 20px 30px 20px;
-
- // .border {
- // border-bottom: 1px #dcdfe6 solid;
- // margin: 0px 0 20px 0;
- // }
- // }
-
- // .title {
- // background: #409eff;
- // height: 44px;
- // line-height: 44px;
- // padding: 0 0 0 10px;
- // color: #fff;
- // margin: 0 0 10px 0;
- // }
-
- // .edit_separater {
- // border-top: 1px solid rgb(233, 233, 233);
- // margin-top: 15px;
- // margin-bottom: 15px;
- // }
- // /deep/ .el-table__body-wrapper::-webkit-scrollbar {
- // width: 10px;
- // height: 10px;
- // }
- // </style>
-
- // <style scoped>
- // .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
- // font-size: 12px;
- // }
-
- // .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
- // background: #6fb5fa;
- // }
-
- // .count {
- // color: #bd2c00;
- // }
- // .el-table td,
- // .el-table th.is-leaf,
- // .el-table--border,
- // .el-table--group {
- // border-color: #d0d3da;
- // }
- // .el-table--border::after,
- // .el-table--group::after,
- // .el-table::before {
- // background-color: #d0d3da;
- // }
-
- // .color {
- // background: none !important;
- // display: flex;
- // flex-direction: column;
- // }
- // </style>
|