|
@@ -44,7 +44,11 @@
|
|
|
</h3>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="日期范围" prop="xdxb_qdzdysj"> </el-table-column>
|
|
|
+ <el-table-column label="日期范围" prop="xdxb_qdzdysj">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.xdxb_qdzdysj.replace(",", " - ") }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="创建时间" prop="xdxb_cjsj"> </el-table-column>
|
|
|
<el-table-column label="操作" width="300">
|
|
|
<template slot-scope="scope">
|
|
@@ -141,7 +145,7 @@
|
|
|
@change="handleDateChange"
|
|
|
type="daterange"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
- range-separator="-"
|
|
|
+ range-separator="至"
|
|
|
start-placeholder="开始日期"
|
|
|
end-placeholder="结束日期"
|
|
|
>
|
|
@@ -385,7 +389,7 @@ export default {
|
|
|
|
|
|
let data = {
|
|
|
xdxb_title: this.dialogForm.bbm,
|
|
|
- xdxb_qdzdysj: this.dialogForm.sj[0] + "-" + this.dialogForm.sj[1],
|
|
|
+ xdxb_qdzdysj: this.dialogForm.sj,
|
|
|
xdxb_blx: this.id,
|
|
|
xdxb_custom_json: JSON.stringify([
|
|
|
{
|
|
@@ -448,7 +452,7 @@ export default {
|
|
|
exportOne(xdxb_id) {
|
|
|
let link =
|
|
|
window.globalVariables.api +
|
|
|
- "/xddy/dygl_xsxjk/index?api=xls&page=1&limit=1&token=" +
|
|
|
+ "/xddy/dygl_xsxjk/index?api=xls&page=1&limit=10000&token=" +
|
|
|
token +
|
|
|
"&xdxb_id=" +
|
|
|
xdxb_id;
|
|
@@ -489,4 +493,7 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+::v-deep .el-date-editor .el-range-separator {
|
|
|
+ width: 8%;
|
|
|
+}
|
|
|
</style>
|