Commit 3aedf4f8 authored by WindyWTH's avatar WindyWTH

运行警告处理

parent a1b787a2
...@@ -65,8 +65,8 @@ ...@@ -65,8 +65,8 @@
</template> </template>
<script> <script>
import Goback from "@/components/Customer/goback"; import Goback from "@/components/Customers/goback";
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import { mapState } from "vuex" import { mapState } from "vuex"
export default { export default {
data() { data() {
......
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
</template> </template>
<script> <script>
import BurtPagination from '@/components/Customer/pagation'; import BurtPagination from '@/components/Customers/pagation';
import { mapState } from 'vuex'; import { mapState } from 'vuex';
import moment from 'moment'; import moment from 'moment';
import { receiptTypeOptions } from '@/assets/js/utilsdictOptions.js'; import { receiptTypeOptions } from '@/assets/js/utilsdictOptions.js';
......
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
export default { export default {
data() { data() {
......
...@@ -202,8 +202,8 @@ ...@@ -202,8 +202,8 @@
</template> </template>
<script> <script>
import Goback from "@/components/Customer/goback"; import Goback from "@/components/Customers/goback";
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import Big from 'big.js'; import Big from 'big.js';
// import { numValid } from "@/utils/index" // import { numValid } from "@/utils/index"
......
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import {downloadFile} from '@/utils/index' import {downloadFile} from '@/utils/index'
import moment from 'moment' import moment from 'moment'
import mixins from "@/mixins"; import mixins from "@/mixins";
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
export default { export default {
data() { data() {
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
</template> </template>
<script> <script>
import companyInfo from "./components/companyInfo"; import companyInfo from "./components/companyInfo.vue";
import Discount from "./components/companyDiscount"; import Discount from "./components/companyDiscount.vue";
export default { export default {
data(){ data(){
return { return {
......
...@@ -8,22 +8,22 @@ ...@@ -8,22 +8,22 @@
</div> </div>
</div> </div>
<a-table :columns="columns" :data-source="tableList" :scroll="{ x: 'max-content' }" :pagination="false" > <a-table :columns="columns" :data-source="tableList" :scroll="{ x: 'max-content' }" :pagination="false" >
<div v-for="col in columns" :slot="col.dataIndex" slot-scope="text, record, index" :key="col.dataIndex"> <template v-for="col in columns" :slot="col.dataIndex" slot-scope="text, record, index">
<template v-if="col.dataIndex == 'operation'"> <div v-if="col.dataIndex == 'operation'" :key="col.dataIndex">
<a-button type="link" @click.stop="editEvt(record)">修改</a-button> <a-button type="link" @click.stop="editEvt(record)">修改</a-button>
<a-button type="link" class="danger" @click.stop="delRecord(index)">删除</a-button> <a-button type="link" class="danger" @click.stop="delRecord(index)">删除</a-button>
</template> </div>
<template v-else-if="col.dataIndex == 'benefits'" slot-scope="text, record"> <div v-else-if="col.dataIndex == 'benefits'" slot-scope="text, record" :key="col.dataIndex">
<a-select v-if="record.edit" v-model="record.benefits2" placeholder="请选择" mode="multiple"> <a-select v-if="record.edit" v-model="record.benefits2" placeholder="请选择" mode="multiple">
<a-select-option :value="item.benefitCode" v-for="item in benefitType" :key="item.benefitCode">{{ item.description }}</a-select-option> <a-select-option :value="item.benefitCode" v-for="item in benefitType" :key="item.benefitCode">{{ item.description }}</a-select-option>
</a-select> </a-select>
<span v-else>{{ filterType(record.benefits2) }}</span> <span v-else>{{ filterType(record.benefits2) }}</span>
</template> </div>
<template v-else> <div v-else :key="col.dataIndex">
<a-input v-if="record.edit" placeholder="请输入" v-model="record[col.dataIndex]"/> <a-input v-if="record.edit" placeholder="请输入" v-model="record[col.dataIndex]"/>
<span v-else>{{ text }}</span> <span v-else>{{ text }}</span>
</template> </div>
</div> </template>
</a-table> </a-table>
<!--分页--> <!--分页-->
<BurtPagination :pagination="pagination" @pageChange="getTableList" /> <BurtPagination :pagination="pagination" @pageChange="getTableList" />
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
const columns = [ const columns = [
{ title: "序号", dataIndex: "id", width: 205}, { title: "序号", dataIndex: "id", width: 205},
{ title: "项目",dataIndex: "benefits", ellipsis: true, scopedSlots: { customRender: "benefits" },width: 310, }, { title: "项目",dataIndex: "benefits", ellipsis: true, scopedSlots: { customRender: "benefits" },width: 310, },
......
...@@ -151,7 +151,7 @@ ...@@ -151,7 +151,7 @@
</template> </template>
<script> <script>
import Goback from "@/components/Customer/goback"; import Goback from "@/components/Customers/goback";
import moment from "moment"; import moment from "moment";
export default { export default {
props: { props: {
......
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
export default{ export default{
props: { props: {
detailObj: { detailObj: {
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
const columns = [ const columns = [
{ title: "序号", dataIndex: "id", ellipsis: true, width: 150 }, { title: "序号", dataIndex: "id", ellipsis: true, width: 150 },
{ title: "科室名称", dataIndex: "specialtyDesc", ellipsis: true, width: 150 }, { title: "科室名称", dataIndex: "specialtyDesc", ellipsis: true, width: 150 },
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import authorizeVoList from './components/authorizeVoList'; import authorizeVoList from './components/authorizeVoList';
import moment from 'moment' import moment from 'moment'
import {applyStatusOptions} from '@/assets/js/utilsdictOptions'; import {applyStatusOptions} from '@/assets/js/utilsdictOptions';
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import {claimsStatusOptions} from '@/assets/js/utilsdictOptions'; import {claimsStatusOptions} from '@/assets/js/utilsdictOptions';
import {exportFile} from '@/utils/index'; import {exportFile} from '@/utils/index';
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import {claimsStatusOptions} from '@/assets/js/utilsdictOptions'; import {claimsStatusOptions} from '@/assets/js/utilsdictOptions';
import {exportFile} from '@/utils/index'; import {exportFile} from '@/utils/index';
......
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import {claimsStatusOptions} from '@/assets/js/utilsdictOptions'; import {claimsStatusOptions} from '@/assets/js/utilsdictOptions';
import {exportFile} from '@/utils/index'; import {exportFile} from '@/utils/index';
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import {claimsStatusOptions} from '@/assets/js/utilsdictOptions'; import {claimsStatusOptions} from '@/assets/js/utilsdictOptions';
import {exportFile} from '@/utils/index'; import {exportFile} from '@/utils/index';
......
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import {claimsStatusOptions} from '@/assets/js/utilsdictOptions'; import {claimsStatusOptions} from '@/assets/js/utilsdictOptions';
import {exportFile} from '@/utils/index'; import {exportFile} from '@/utils/index';
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from 'moment' import moment from 'moment'
import {claimsStatusOptions} from '@/assets/js/utilsdictOptions'; import {claimsStatusOptions} from '@/assets/js/utilsdictOptions';
import {exportFile} from '@/utils/index'; import {exportFile} from '@/utils/index';
......
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
</template> </template>
<script> <script>
import BurtPagination from '@/components/Customer/pagation'; import BurtPagination from '@/components/Customers/pagation';
import { exportFile } from '@/utils/index'; import { exportFile } from '@/utils/index';
export default { export default {
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from "moment"; import moment from "moment";
import { exportFile } from '@/utils/index'; import { exportFile } from '@/utils/index';
const columns = [ const columns = [
......
...@@ -315,8 +315,8 @@ ...@@ -315,8 +315,8 @@
<script> <script>
import { Empty } from 'ant-design-vue'; import { Empty } from 'ant-design-vue';
import Goback from '@/components/Customer/goback'; import Goback from '@/components/Customers/goback';
import BurtPagination from '@/components/Customer/pagation'; import BurtPagination from '@/components/Customers/pagation';
import { eobStatusOptions } from '@/assets/js/utilsdictOptions.js'; import { eobStatusOptions } from '@/assets/js/utilsdictOptions.js';
import { exportFile, accuracy } from '@/utils/index'; import { exportFile, accuracy } from '@/utils/index';
import moment from 'moment'; import moment from 'moment';
......
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from "moment"; import moment from "moment";
import {eobStatusOptions} from '@/assets/js/utilsdictOptions.js' import {eobStatusOptions} from '@/assets/js/utilsdictOptions.js'
import mixins from "@/mixins"; import mixins from "@/mixins";
......
...@@ -157,8 +157,8 @@ ...@@ -157,8 +157,8 @@
</template> </template>
<script> <script>
import Goback from "@/components/Customer/goback"; import Goback from "@/components/Customers/goback";
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import moment from "moment"; import moment from "moment";
import {claimsStatusOptions,eobStatusOptions} from '@/assets/js/utilsdictOptions.js' import {claimsStatusOptions,eobStatusOptions} from '@/assets/js/utilsdictOptions.js'
import mixins from "@/mixins"; import mixins from "@/mixins";
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import condition from "./components/condition"; import condition from "./components/condition";
import coverages from "./components/coverages"; import coverages from "./components/coverages";
// import moment from 'moment' // import moment from 'moment'
......
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
</template> </template>
<script> <script>
import BurtPagination from "@/components/Customer/pagation"; import BurtPagination from "@/components/Customers/pagation";
import coverages from "./components/coverages"; import coverages from "./components/coverages";
import PolicyInfo from "./components/PolicyInfo"; import PolicyInfo from "./components/PolicyInfo";
import moment from "moment"; import moment from "moment";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment