|
@@ -24,7 +24,7 @@
|
|
|
clearable
|
|
|
class="w-[180px]"
|
|
|
>
|
|
|
- <el-option v-for="item in statusList" :label="item.label" :value="item.value" :key="item.value" />
|
|
|
+ <el-option v-for="item in settlementStatusList" :label="item.label" :value="item.value" :key="item.value" />
|
|
|
</el-select>
|
|
|
<el-button class="ml-2" type="primary" @click="onSearch">筛选</el-button>
|
|
|
<el-button type="primary" plain @click="onReset">重置</el-button>
|
|
@@ -83,14 +83,14 @@
|
|
|
/>
|
|
|
<el-table-column prop="serviceName" label="结算状态">
|
|
|
<template #default="{ row }">
|
|
|
- <div :class="statusList[row.status - 1].color">
|
|
|
- {{ statusList[row.status - 1]?.label }}
|
|
|
+ <div :class="settlementStatusList[row.status - 1].color">
|
|
|
+ {{ settlementStatusList[row.status - 1]?.label }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="mechanismRemark" label="备注">
|
|
|
+ <el-table-column prop="agencyRemark" label="备注">
|
|
|
<template #default="{ row }">
|
|
|
- <div v-html="row.mechanismRemark" />
|
|
|
+ <div v-html="row.agencyRemark" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="serviceName" label="操作">
|
|
@@ -124,7 +124,7 @@
|
|
|
</div>
|
|
|
<el-dialog title="账单备注" v-model="state.visibleEeditRemark">
|
|
|
<div>
|
|
|
- <Editor placeholder="请输入账单备注" v-model:value="state.rowData.remark" />
|
|
|
+ <Editor placeholder="请输入账单备注" v-model:value="state.rowData.agencyRemark" />
|
|
|
</div>
|
|
|
<template #footer>
|
|
|
<el-button @click="state.visibleEeditRemark = false">取 消</el-button>
|
|
@@ -137,7 +137,7 @@
|
|
|
<script setup>
|
|
|
import { ref, reactive } from "vue";
|
|
|
|
|
|
-import { statusList } from "./constant.ts";
|
|
|
+import { settlementStatusList } from "./constant.ts";
|
|
|
import request from "@/api";
|
|
|
|
|
|
import PreviewPromotionalInvoiceDetailDialog from "./components/PreviewPromotionalInvoiceDetailDialog.vue";
|