395 lines
14 KiB
Vue
395 lines
14 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<SearchForm :model="queryParams" ref="queryForm" size="small" :maxShow="10" label-width="68px" v-show="showSearch" @search="handleQuery" @reset="resetQuery">
|
||
|
||
<!-- <el-form-item label="" prop="code">
|
||
<el-input
|
||
v-model="queryParams.code"
|
||
:placeholder="$t('模版代码')"
|
||
clearable
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item> -->
|
||
<el-form-item :label="$t('模板名称')" prop="name">
|
||
<el-input
|
||
v-model="queryParams.name"
|
||
:placeholder="$t('模板名称')"
|
||
clearable
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
</SearchForm>
|
||
|
||
|
||
<XdTable v-loading="loading"
|
||
border
|
||
size="mini"
|
||
storageName="emisPrintTplList_a"
|
||
:data="emisPrintTplList"
|
||
:showSearch.sync="showSearch"
|
||
:queryParams="queryParams"
|
||
:total="total"
|
||
:selection-type="'multiple'"
|
||
@queryTable="getList"
|
||
@selection-change="handleSelectionChange"
|
||
@sort-change="handleSortChange"
|
||
>
|
||
<!-- :row-style="{ backgroundColor: '#f5f5f5' }" -->
|
||
<div slot="toolbar">
|
||
<el-row :gutter="10" class="mb8">
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="primary"
|
||
plain
|
||
icon="el-icon-plus"
|
||
size="mini"
|
||
@click="handleAdd"
|
||
v-hasPermi="['emis:emisPrintTpl:add']"
|
||
>新增</el-button>
|
||
</el-col>
|
||
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="success"
|
||
plain
|
||
icon="el-icon-edit"
|
||
size="mini"
|
||
:disabled="single"
|
||
@click="handleUpdate"
|
||
v-hasPermi="['emis:emisPrintTpl:edit']"
|
||
>修改</el-button>
|
||
</el-col>
|
||
|
||
<!-- <el-col :span="1.5">
|
||
<el-button
|
||
type="success"
|
||
plain
|
||
icon="el-icon-edit"
|
||
size="mini"
|
||
:disabled="single"
|
||
@click="handleDesign"
|
||
v-hasPermi="['emis:emisPrintTpl:edit']"
|
||
>模版设计</el-button>
|
||
</el-col> -->
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="danger"
|
||
plain
|
||
icon="el-icon-delete"
|
||
size="mini"
|
||
:disabled="multiple"
|
||
@click="handleDelete"
|
||
v-hasPermi="['emis:emisPrintTpl:remove']"
|
||
>删除</el-button>
|
||
</el-col>
|
||
<!-- <el-col :span="1.5">
|
||
<el-button
|
||
type="warning"
|
||
plain
|
||
icon="el-icon-download"
|
||
size="mini"
|
||
@click="handleExport"
|
||
v-hasPermi="['emis:emisPrintTpl:export']"
|
||
>导出</el-button>
|
||
</el-col> -->
|
||
</el-row>
|
||
</div>
|
||
|
||
<el-table-column type="selection" width="55" align="center" />
|
||
<!--
|
||
<el-table-column label="序号" align="center" min-width="60">
|
||
<template slot-scope="scope">
|
||
<span v-text="getIndex(scope.$index)"> </span>
|
||
</template>
|
||
</el-table-column>
|
||
|
||
<el-table-column label="xxx" align="left" prop="xxx" min-width="180">
|
||
<template slot-scope="scope">
|
||
<div class="link-type" @click="handleView(scope.row)">{{scope.row.orderSn}}</div>
|
||
</template>
|
||
</el-table-column>
|
||
|
||
<el-table-column label="结算状态" align="center" prop="settleStatus" :sort-orders="['descending','ascending']" sortable="custom" min-width="80">
|
||
<template slot-scope="scope">
|
||
<div v-if="scope.row.settleStatus == 0" style="color:red;">
|
||
<span class="el-tag el-tag--info">未结算</span>
|
||
</div>
|
||
<div v-if="scope.row.settleStatus == 10" style="color:red;">
|
||
<span class="el-tag">待确认</span>
|
||
</div>
|
||
<div v-if="scope.row.settleStatus == 11" style="color:green;">
|
||
<span class="el-tag el-tag--success el-tag--light">已确认</span>
|
||
</div>
|
||
<div v-if="scope.row.settleStatus == 20" >
|
||
<span class="el-tag el-tag--warning el-tag--light">待打款</span>
|
||
</div>
|
||
<div v-if="scope.row.settleStatus == 21" style="color:green;">
|
||
<span class="el-tag el-tag--success el-tag--light">已打款</span>
|
||
</div>
|
||
<div v-if="scope.row.settleStatus == 40" style="color:red;">
|
||
<span class="el-tag el-tag--danger">已拒绝</span>
|
||
</div>
|
||
</template>
|
||
</el-table-column>
|
||
-->
|
||
|
||
<el-table-column :label="$t('模版代码')" align="left" prop="code" width="100" >
|
||
<template slot-scope="scope">
|
||
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.code}}</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('模板名称')" align="left" prop="name" width="300" :show-overflow-tooltip="true" >
|
||
<template slot-scope="scope">
|
||
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.name}}</div>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column :label="$t('模板版本')" align="center" prop="version" width="80" />
|
||
<!-- <el-table-column :label="$t('公共模板标识')" align="center" prop="isPublic" min-width="100" /> -->
|
||
<el-table-column :label="$t('快递类型')" align="center" prop="expressType" min-width="100" />
|
||
<!-- <el-table-column :label="$t('在线图片')" align="center" prop="tplPicUrl" min-width="100" /> -->
|
||
<!-- <el-table-column :label="$t('0-初始')" align="center" prop="status" min-width="100" /> -->
|
||
<!-- <el-table-column :label="$t('删除标志(0代表存在')" align="center" prop="delFlag" min-width="100" /> -->
|
||
<el-table-column :label="$t('备注')" align="center" prop="remark" min-width="200" :show-overflow-tooltip="true"/>
|
||
|
||
|
||
<el-table-column label="创建人" align="center" prop="createByName" width="80" :show-overflow-tooltip="true"/>
|
||
<el-table-column label="创建网点" align="center" prop="createSiteName" width="80" :show-overflow-tooltip="true"/>
|
||
<el-table-column label="创建时间" align="center" prop="createTime" width="170"/>
|
||
<el-table-column label="修改人" align="center" prop="updateByName" width="80" :show-overflow-tooltip="true"/>
|
||
<el-table-column label="修改网点" align="center" prop="updateSiteName" width="80" :show-overflow-tooltip="true"/>
|
||
<el-table-column label="修改时间" align="center" prop="updateTime" width="170"/>
|
||
</XdTable>
|
||
|
||
<el-dialog :title="titleForm" :visible.sync="openForm" width="80%" :destroy-on-close="true" v-dialogDrag append-to-body>
|
||
<emisPrintTplForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisPrintTplForm>
|
||
</el-dialog>
|
||
|
||
|
||
|
||
<el-dialog title="模版设计器" :visible.sync="openDesigner" width="100%" :destroy-on-close="true" v-dialogDrag append-to-body>
|
||
<DesignerPanel :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></DesignerPanel>
|
||
</el-dialog>
|
||
|
||
<!--
|
||
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" v-dialogDrag append-to-body>
|
||
<emisPrintTplView :id="id" ></EmisPrintTplView>
|
||
</el-dialog>
|
||
-->
|
||
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { listEmisPrintTpl, getEmisPrintTpl, delEmisPrintTpl, addEmisPrintTpl, updateEmisPrintTpl } from "@/api/emis/emisPrintTpl";
|
||
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
|
||
// import emisPrintTplView from '@/views/emis/emisPrintTpl/emisPrintTplView';
|
||
import emisPrintTplForm from '@/views/emis/emisPrintTpl/emisPrintTplForm';
|
||
import DesignerPanel from '@/views/emis/emisPrintTpl/designerPanel';
|
||
|
||
export default {
|
||
name: "emisPrintTpl",
|
||
components: { elDateSimplePicker,emisPrintTplForm,DesignerPanel },
|
||
dicts: [
|
||
],
|
||
data() {
|
||
return {
|
||
// 遮罩层
|
||
loading: true,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 创建时间搜索
|
||
dateTimeRange:[],
|
||
// 总条数
|
||
total: 0,
|
||
// 快递打印模板表格数据
|
||
emisPrintTplList: [],
|
||
|
||
currentId:null,
|
||
openForm: false,
|
||
titleForm: "",
|
||
|
||
openDesigner:false,
|
||
|
||
// 弹出展示层
|
||
id:null,
|
||
titleView:"",
|
||
openView: false,
|
||
// 更新网点时间范围
|
||
daterangeCreateTime: [],
|
||
// 更新网点时间范围
|
||
daterangeUpdateTime: [],
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
code: null,
|
||
name: null,
|
||
version: null,
|
||
isPublic: null,
|
||
expressType: null,
|
||
tplData: null,
|
||
tplEncData: null,
|
||
tplPdfData: null,
|
||
tplPicUrl: null,
|
||
status: null,
|
||
delFlag: null,
|
||
remark: null,
|
||
},
|
||
};
|
||
},
|
||
created() {
|
||
this.getList();
|
||
},
|
||
methods: {
|
||
/** 查询快递打印模板列表 */
|
||
getList() {
|
||
this.loading = true;
|
||
this.queryParams.params = {};
|
||
listEmisPrintTpl(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
|
||
this.emisPrintTplList = response.rows;
|
||
this.total = response.total;
|
||
this.loading = false;
|
||
});
|
||
},
|
||
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1;
|
||
this.getList();
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm("queryForm");
|
||
this.handleQuery();
|
||
},
|
||
// 多选框选中数据
|
||
handleSelectionChange(selection) {
|
||
this.ids = selection.map(item => item.id)
|
||
this.single = selection.length!==1
|
||
this.multiple = !selection.length
|
||
},
|
||
// 排序 查询字段是表格中字段名字 动态取值排序顺序
|
||
handleSortChange(column) {
|
||
this.queryParams.orderByColumn = column.prop;
|
||
this.queryParams.isAsc = column.order;
|
||
this.getList();
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd(row) {
|
||
this.currentId=null;
|
||
this.openForm= true;
|
||
this.titleForm = "新增";
|
||
},
|
||
handleShowMoreInput(){
|
||
this.moreInputVisible = !this.moreInputVisible;
|
||
},
|
||
/** 修改按钮操作 */
|
||
handleUpdate(row) {
|
||
this.currentId= row.id || this.ids;
|
||
this.openForm = true;
|
||
this.titleForm = "修改";
|
||
},
|
||
handleDesign(){
|
||
this.currentId= this.ids;
|
||
this.openDesigner = true;
|
||
},
|
||
handleView(row) {
|
||
this.id=row.id;
|
||
this.titleView="查看";
|
||
this.openView=true;
|
||
// this.router.push({ path: '/emis/emisPrintTpl/viewDetail', query: { id: row.id }})
|
||
},
|
||
handleFormChanged(){
|
||
this.openForm = false;
|
||
this.getList();
|
||
},
|
||
cancelForm(){
|
||
this.openForm = false;
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const ids = row.id || this.ids;
|
||
this.$modal.confirm('是否确认删除').then(function() {
|
||
return delEmisPrintTpl(ids);
|
||
}).then(() => {
|
||
this.getList();
|
||
this.$modal.msgSuccess("删除成功");
|
||
}).catch(() => {});
|
||
},
|
||
/** 导出按钮操作 */
|
||
handleExport() {
|
||
// this.download('emis/emisPrintTpl/export', {
|
||
// ...this.queryParams
|
||
// }, `emisPrintTpl_${new Date().getTime()}.xlsx`)
|
||
const loadingInstance = this.$loading({
|
||
text: '正在导出...'
|
||
})
|
||
var qParam = {...this.queryParams};
|
||
qParam.pageNum=1;
|
||
qParam.pageSize=5000;
|
||
|
||
listEmisPrintTpl(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
|
||
this.downloadLoading = false
|
||
if (response.code === 200) {
|
||
const curList = response.rows
|
||
import('@/vendor/Export2Excel').then(excel => {
|
||
const tHeader = ['id','模版代码','模板名称','模板版本例如1.0.0','公共模板标识','模板所有者','快递类型','模板内容-在线模版','加密模版','在线pdf模版','在线图片','0-初始','删除标志(0代表存在','创建者','创建时间','更新者','update_time','备注','创建网点','更新网点',];
|
||
const filterVal = ['id','code','name','version','isPublic','merchId','expressType','tplData','tplEncData','tplPdfData','tplPicUrl','status','delFlag','createBy','createTime','updateBy','updateTime','remark','createSite','updateSite',];
|
||
const data = this.formatJson(filterVal, curList, response.rows)
|
||
excel.export_json_to_excel({
|
||
header: tHeader,
|
||
data,
|
||
filename: '快递打印模板',
|
||
autoWidth: true
|
||
})
|
||
loadingInstance.close()
|
||
})
|
||
}
|
||
});
|
||
},
|
||
formatJson(filterVal, jsonData, resData) {
|
||
let index = 0
|
||
return jsonData.map(v => filterVal.map(j => {
|
||
if (j === 'index') {
|
||
return ++index
|
||
}
|
||
if (j === 'status') {
|
||
var statusStr='xxx'
|
||
if(v[j] == 10){
|
||
statusStr='xxx'
|
||
}
|
||
return statusStr;
|
||
}
|
||
return v[j]
|
||
}))
|
||
},
|
||
/** 列索引函数 */
|
||
getIndex($index) {
|
||
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
|
||
},
|
||
/** 时间搜索响应函数 */
|
||
dateTimeChange(value){
|
||
this.dateTimeRange=value;
|
||
},
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style scoped>
|
||
.el-divider{
|
||
margin-top: 0px;
|
||
background: 0 0;
|
||
border-top: 1px solid #E6EBF5;
|
||
}
|
||
.el-divider__text {
|
||
color: #0955ee;
|
||
cursor: pointer;
|
||
}
|
||
</style>
|