Commit 45aea52d authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 9d2a0ebe d44a327c
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",
"serve2": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "vue-cli-service build --mode production", "build": "vue-cli-service build --mode production",
"beta": "vue-cli-service build --mode beta", "beta": "vue-cli-service build --mode beta",
"test": "vue-cli-service build --mode test", "test": "vue-cli-service build --mode test",
......
...@@ -399,7 +399,7 @@ export default { ...@@ -399,7 +399,7 @@ export default {
file.type === "image/png" || file.type === "image/png" ||
file.type === "image/gif"; file.type === "image/gif";
if (!isJpgOrPng) { if (!isJpgOrPng) {
this.$message.error("请上传jpeg或者png图片!"); this.$message.error("请上传jpeg,png或者gif图片!");
} }
const isLt5M = file.size / 1024 / 1024 < 5; const isLt5M = file.size / 1024 / 1024 < 5;
if (!isLt5M) { if (!isLt5M) {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<y-range-picker valueFormat="YYYY-MM-DD" v-model="searchForm.time" /> <y-range-picker valueFormat="YYYY-MM-DD" v-model="searchForm.time" />
<a-input <a-input
allowClear allowClear
placeholder="请输入评价人姓名或窗口编号搜索" placeholder="请输入评价人姓名或排队编号搜索"
v-model="searchForm.info" v-model="searchForm.info"
/> />
<a-button block class="search-btn" icon="search" @click="handleSearch"> <a-button block class="search-btn" icon="search" @click="handleSearch">
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<y-range-picker valueFormat="YYYY-MM-DD" v-model="searchForm.time" /> <y-range-picker valueFormat="YYYY-MM-DD" v-model="searchForm.time" />
<a-input <a-input
allowClear allowClear
placeholder="请输入评价人姓名或窗口编号搜索" placeholder="请输入评价人姓名或排队编号搜索"
v-model="searchForm.info" v-model="searchForm.info"
/> />
<a-button block class="search-btn" icon="search" @click="handleSearch"> <a-button block class="search-btn" icon="search" @click="handleSearch">
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<y-range-picker valueFormat="YYYY-MM-DD" v-model="searchForm.time" /> <y-range-picker valueFormat="YYYY-MM-DD" v-model="searchForm.time" />
<a-input <a-input
allowClear allowClear
placeholder="请输入评价人姓名或窗口编号搜索" placeholder="请输入评价人姓名或排队编号搜索"
v-model="searchForm.info" v-model="searchForm.info"
/> />
<a-button block class="search-btn" icon="search" @click="handleSearch"> <a-button block class="search-btn" icon="search" @click="handleSearch">
......
...@@ -337,7 +337,7 @@ const routes = [ ...@@ -337,7 +337,7 @@ const routes = [
/* webpackChunkName: "matterEvaluation" */ "@/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue" /* webpackChunkName: "matterEvaluation" */ "@/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue"
), ),
meta: { meta: {
title: "办理事项评价记录报表", title: "一号一评记录报表",
activeMenu: "/home/dataManagement", activeMenu: "/home/dataManagement",
}, },
}, },
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
:data-source="tableData" :data-source="tableData"
:loading="loading" :loading="loading"
:scroll="{ :scroll="{
x: 1500,
y: 490, y: 490,
}" }"
:row-selection="{ :row-selection="{
...@@ -72,6 +73,8 @@ import { getEvaList, getEvaDetil, getQueEvaData } from "@/api/dataAdmin"; ...@@ -72,6 +73,8 @@ import { getEvaList, getEvaDetil, getQueEvaData } from "@/api/dataAdmin";
const tHeader = [ const tHeader = [
"排队编号", "排队编号",
"评价选项", "评价选项",
"办理窗口",
"工作人员",
"评价人", "评价人",
"身份证号", "身份证号",
"手机号", "手机号",
...@@ -82,6 +85,8 @@ const tHeader = [ ...@@ -82,6 +85,8 @@ const tHeader = [
const filterVal = [ const filterVal = [
"flounum", "flounum",
"option_id", "option_id",
"window",
"workman_name",
"idcard_Name", "idcard_Name",
"idcard_IDCardNo", "idcard_IDCardNo",
"phone", "phone",
...@@ -119,6 +124,22 @@ export default { ...@@ -119,6 +124,22 @@ export default {
return text ? text : "--"; return text ? text : "--";
}, },
}, },
{
title: "办理窗口",
width: 100,
dataIndex: "window",
customRender: (text) => {
return text ? text : "--";
},
},
{
title: "工作人员",
width: 100,
dataIndex: "workman_name",
customRender: (text) => {
return text ? text : "--";
},
},
{ {
title: "评价人", title: "评价人",
width: 100, width: 100,
...@@ -328,7 +349,7 @@ export default { ...@@ -328,7 +349,7 @@ export default {
this.tHeader, this.tHeader,
this.filterVal, this.filterVal,
data, data,
"办理事项评价记录报表" + this.$moment().format("YYYYMMDDHHmmss") "一号一评记录报表" + this.$moment().format("YYYYMMDDHHmmss")
); );
} else { } else {
this.dataSection(this.getDataList, {}, (data) => { this.dataSection(this.getDataList, {}, (data) => {
...@@ -347,7 +368,7 @@ export default { ...@@ -347,7 +368,7 @@ export default {
this.tHeader, this.tHeader,
this.filterVal, this.filterVal,
data, data,
"办理事项评价记录报表" + this.$moment().format("YYYYMMDDHHmmss") "一号一评记录报表" + this.$moment().format("YYYYMMDDHHmmss")
); );
}); });
} }
......
...@@ -253,7 +253,7 @@ export default { ...@@ -253,7 +253,7 @@ export default {
this.tHeader, this.tHeader,
this.filterVal, this.filterVal,
data, data,
"办理事项评价记录报表" + this.$moment().format("YYYYMMDDHHmmss") "一号一评记录报表" + this.$moment().format("YYYYMMDDHHmmss")
); );
} else { } else {
this.dataSection(this.getDataList, {}, (data) => { this.dataSection(this.getDataList, {}, (data) => {
...@@ -272,7 +272,7 @@ export default { ...@@ -272,7 +272,7 @@ export default {
this.tHeader, this.tHeader,
this.filterVal, this.filterVal,
data, data,
"办理事项评价记录报表" + this.$moment().format("YYYYMMDDHHmmss") "一号一评记录报表" + this.$moment().format("YYYYMMDDHHmmss")
); );
}); });
} }
......
...@@ -253,7 +253,7 @@ export default { ...@@ -253,7 +253,7 @@ export default {
this.tHeader, this.tHeader,
this.filterVal, this.filterVal,
data, data,
"办理事项评价记录报表" + this.$moment().format("YYYYMMDDHHmmss") "一号一评记录报表" + this.$moment().format("YYYYMMDDHHmmss")
); );
} else { } else {
this.dataSection(this.getDataList, {}, (data) => { this.dataSection(this.getDataList, {}, (data) => {
...@@ -272,7 +272,7 @@ export default { ...@@ -272,7 +272,7 @@ export default {
this.tHeader, this.tHeader,
this.filterVal, this.filterVal,
data, data,
"办理事项评价记录报表" + this.$moment().format("YYYYMMDDHHmmss") "一号一评记录报表" + this.$moment().format("YYYYMMDDHHmmss")
); );
}); });
} }
......
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