123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- <template>
- <div class="app-container">
- <el-row :gutter="20">
- <!--部门数据-->
- <el-col :span="2" :xs="24" style="margin-top: 80px">
- <div class="head-container">
- <el-tabs v-model="checkWashMode" @tab-click="handleQuery" tab-position="left">
- <el-tab-pane v-for="item in clothWashModes" :label="item.name" :name="item.id + ''"></el-tab-pane>
- </el-tabs>
- </div>
- </el-col>
- <el-col :span="22" :xs="24">
- <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
- <el-form-item prop="checkStoreAreaId">
- <el-tabs v-model="checkStoreAreaId" @tab-click="handleQuery">
- <el-tab-pane v-for="item in areaList" :label="item.name" :name="item.id + ''"></el-tab-pane>
- </el-tabs>
- <!-- <el-select v-model="queryParams.storeAreaId" placeholder="请选择区域" clearable @change="handleQuery" filterable>-->
- <!-- <el-option v-for="(item, index) in areaList" :key="index" :label="item.name" :value="item.id" />-->
- <!-- </el-select>-->
- </el-form-item>
- <div></div>
- <el-form-item prop="name">
- <el-input v-model="queryParams.name" placeholder="请输入衣服名称" clearable @keyup.enter.native="handleQuery" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button type="primary" plain icon="el-icon-upload2" @click="handleImport">导入</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button type="warning" plain icon="el-icon-download" @click="handleExport">导出</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <Page uri="/mapi/cloth/price/getClothPriceListByWashMode" :request-params="queryParams" ref="pagination">
- <el-table-column label="衣服ID" align="center" prop="clothId" />
- <el-table-column label="区域" align="center" prop="areaName" />
- <el-table-column label="衣服名称" align="center" prop="name" />
- <el-table-column label="洗衣方式名称" align="center" prop="washModeName" />
- <el-table-column label="价格" align="center" prop="price">
- <template slot-scope="scope">
- {{ scope.row.price ? scope.row.price : '未设置价格' }}
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="120">
- <template slot-scope="scope">
- <el-button type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)">设置</el-button>
- </template>
- </el-table-column>
- </Page>
- </el-col>
- </el-row>
- <!-- 设置价格 -->
- <el-dialog title="设置价格" :visible.sync="unitPriceType" width="30%" :before-close="handleClose">
- <form ref="unitpriceForm">
- <el-input-number v-model="unitpriceForm.price" :min="1" :max="99999" :step="1" style="width: 100%" />
- </form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="unitPriceType = false">取 消</el-button>
- <el-button type="primary" @click="setunitPrice('unitpriceForm')">提 交</el-button>
- </span>
- </el-dialog>
- <!-- 复制区域 -->
- <el-dialog title="区域复制" :visible.sync="open" size="30%" append-to-body>
- <el-row :gutter="15">
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
- <el-col :span="24">
- <el-form-item label="选择区域" prop="storeAreaIdFrom">
- <el-select v-model="form.storeAreaIdFrom" placeholder="请选择区域" clearable filterable>
- <el-option v-for="(item, index) in areaList" :key="index" :label="item.name" :value="item.id"
- :disabled="item.id == form.storeAreaIdTo" />
- </el-select>
- </el-form-item>
- <el-form-item label="复制区域" prop="storeAreaIdTo">
- <el-select v-model="form.storeAreaIdTo" placeholder="请选择复制区域" clearable filterable>
- <el-option v-for="(item, index) in areaList" :key="index" :label="item.name" :value="item.id"
- :disabled="item.id == form.storeAreaIdFrom" />
- </el-select>
- </el-form-item>
- <el-form-item label="价格倍数" prop="multiple">
- <el-input-number v-model="form.multiple" :min="0.01" :max="100" :step="0.01" style="width: 100%" />
- <div class="remark">价格倍数是以选择区域为底数乘以当前选择的价格倍数,最终得到复制区域的价格体系</div>
- </el-form-item>
- </el-col>
- </el-form>
- </el-row>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm" style="margin-left: 5%">提交</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 导入对话框 -->
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="40%" append-to-body>
- <el-upload ref="upload" :limit="1" accept=".xlsx, .xls" :headers="upload.headers" :action="upload.url + '?storeAreaId=' + upload.storeAreaId"
- :disabled="upload.isUploading" :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" :auto-upload="false" drag>
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size: 12px; vertical-align: baseline" @click="importTemplate">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { listStoreArea } from '@/api/system/storeArea'
- import { getClothPriceListByWashMode, getWashMode, setPriceByClothType, setPriceByClothTypeCopyArea, setPriceByWashMode } from '@/api/cloth/unitPrice'
- import { getToken } from '@/utils/auth'
- export default {
- name: 'laundryPrice',
- dicts: ['sys_normal_disable'],
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- clothType: null,
- // 单价表格数据
- unitPriceList: [],
- checkStoreAreaId: '1',
- checkWashMode: '1',
- // 弹出层标题
- title: '',
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- washModeId: null,
- storeAreaId: null,
- name: null
- },
- // 导入参数
- upload: {
- // 是否显示弹出层(单价导入)
- open: false,
- // 弹出层标题(单价导入)
- title: '',
- // 是否禁用上传
- isUploading: false,
- //区域id
- storeAreaId: '',
- // 设置上传的请求头部
- headers: { Authorization: 'Bearer ' + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + '/mapi/cloth/price/importData'
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- storeAreaIdFrom: [{ required: true, message: '请选择区域', trigger: 'change' }],
- storeAreaIdTo: [{ required: true, message: '请选择复制区域', trigger: 'change' }],
- multiple: [{ required: true, message: '清填写价格倍数', trigger: 'blur' }]
- },
- areaList: [],
- clothWashModes: [],
- unitPriceType: false,
- unitpriceForm: {}
- }
- },
- created() {
- this.getAreaList()
- this.getwashList()
- this.getList()
- },
- methods: {
- /** 导入按钮操作 */
- handleImport() {
- if (!this.queryParams.storeAreaId) {
- this.$modal.msgError('请选择区域')
- return false
- }
- this.upload.storeAreaId = this.queryParams.storeAreaId
- const up_name = this.areaList.find((item) => item.id === this.queryParams.storeAreaId)?.name
- this.upload.title = `【${up_name}】 洗衣方式单价导入`
- this.upload.open = true
- },
- /** 下载模板操作 */
- importTemplate() {
- this.download('/mapi/cloth/price/downloadTemplate', {}, `衣服单价导入模板.xlsx`)
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false
- this.upload.isUploading = false
- this.$refs.upload.clearFiles()
- var respMsg = response.code == '200' ? '' : '导入失败!'
- this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + respMsg + '<br/>' + response.msg + '</div>', '导入结果', { dangerouslyUseHTMLString: true })
- this.getList()
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit()
- },
- /** 查询衣服品牌列表 */
- getList() {
- console.log('@@@@@@' + this.checkWashMode)
- this.queryParams.storeAreaId = parseInt(this.checkStoreAreaId)
- this.queryParams.washModeId = parseInt(this.checkWashMode)
- this.$nextTick(() => {
- this.$refs.pagination.handleSearch(true)
- })
- },
- getAreaList() {
- listStoreArea({ pageSize: 10000, pageNum: 1, status: '0' }).then((res) => {
- this.areaList = res.rows
- })
- },
- getwashList() {
- getWashMode().then((res) => {
- this.clothWashModes = res.data
- })
- },
- // 表单重置
- reset() {
- this.form = {
- storeAreaIdFrom: null,
- storeAreaIdTo: null,
- multiple: null
- }
- this.resetForm('form')
- },
- // 取消按钮
- cancel() {
- this.reset()
- this.open = false
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.getList()
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm('queryForm')
- this.handleQuery()
- },
- /** 区域复制按钮操作 */
- handleCopy() {
- this.open = true
- },
- /** 设置按钮操作 */
- handleUpdate(row) {
- this.unitpriceForm = Object.assign({}, row)
- this.unitPriceType = true
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs['form'].validate((valid) => {
- if (valid) {
- setPriceByWashMode({ ...this.form, ...{ washMode: this.checkWashMode } }).then((response) => {
- this.$modal.msgSuccess('复制成功')
- this.open = false
- this.getList()
- })
- }
- })
- },
- checkClose(done) {
- this.$confirm('是否关闭表单,关闭后数据将丢失?')
- .then(function () {
- done()
- })
- .then(() => { })
- .catch(() => { })
- },
- setunitPrice() {
- if (!this.unitpriceForm.price) {
- this.$modal.msgError('请输入价格')
- return
- }
- setPriceByWashMode({ ...this.unitpriceForm, ...{ washMode: this.checkWashMode } }).then((response) => {
- this.$modal.msgSuccess('设置成功')
- this.unitPriceType = false
- this.getList()
- })
- },
- handleClose(done) {
- this.$confirm('是否关闭设置表单?')
- .then((_) => {
- done()
- })
- .catch((_) => { })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .remark {
- margin-top: 10px;
- background-color: rgba(255, 228, 74, 0.1);
- border: 1px dashed #ffe44a;
- font-size: 14px;
- color: #e6a23c;
- width: 100%;
- padding: 20px;
- border-radius: 5px;
- line-height: 25px;
- }
- </style>
|