+
+
+
+
+
+
+
+ {{
+ scope.row.billNum
+ }}
+
+
+
+
+
+
+ {{ scope.column.label }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/vue/src/views/ux/vw/dataInput/hq_f/index.vue b/vue/src/views/ux/vw/dataInput/hq_f/index.vue
index e5d35866..4d622545 100644
--- a/vue/src/views/ux/vw/dataInput/hq_f/index.vue
+++ b/vue/src/views/ux/vw/dataInput/hq_f/index.vue
@@ -149,7 +149,7 @@ import { downloadFile } from "@/utils/crmindex.js";
import XhJSSelect from "@/components/CreateCom/Xh-JS-Select-Label.vue";
export default {
- name: "HQHPlatform",
+ name: "HQFPlatform",
components: { Pagination, CRMTableHead, importExcel, XhJSSelect },
directives: { permission },
filters: {
@@ -172,7 +172,7 @@ export default {
},
data() {
return {
- crmType: "hqHPlatform",
+ crmType: "hqFPlatform",
versionValue: "",
versionList: [], //版本列表
rules: {
@@ -348,9 +348,9 @@ export default {
if (this.versionValue != "") {
this.listQuery.version = this.versionValue;
}
- console.log("红旗H平台导出:" + JSON.stringify(this.listQuery));
+ console.log("红旗F平台导出:" + JSON.stringify(this.listQuery));
this.$axios
- .posts("/api/settleaccount/HQHPlatform/Export", this.listQuery)
+ .posts("/api/settleaccount/HQFPlatform/Export", this.listQuery)
.then((res) => {
let fileNameOfProject = res;
this.$axios
@@ -399,7 +399,7 @@ export default {
//this.listLoading = true;
this.listQuery.SkipCount = (this.page - 1) * 1000;
this.$axios
- .posts("/api/settleaccount/HQHPlatform/listVersion", this.listQuery)
+ .posts("/api/settleaccount/HQFPlatform/listVersion", this.listQuery)
.then((response) => {
this.versionList = [];
response.items.forEach((element) => {
@@ -462,7 +462,7 @@ export default {
}
console.log("列表查询条件:" + JSON.stringify(this.listQuery));
this.$axios
- .posts("/api/settleaccount/HQHPlatform/list", this.listQuery)
+ .posts("/api/settleaccount/HQFPlatform/list", this.listQuery)
.then((response) => {
this.list = response.items;
this.totalCount = response.totalCount;
@@ -478,7 +478,7 @@ export default {
fetchData(id) {
//循环动态
this.$axios
- .gets("/api/settleaccount/HQHPlatform/" + id)
+ .gets("/api/settleaccount/HQFPlatform/" + id)
.then((response) => {
this.form = response;
});