123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <template-page
- ref="pageRef"
- :getList="getList"
- :exportList="exportList"
- :columnParsing="columnParsing"
- :optionsEvensGroup="optionsEvensGroup"
- :tableAttributes="tableAttributes"
- :tableEvents="tableEvents"
- :operation="operation()"
- >
- <div class="cartographer_big">
- <el-dialog title="配置" width="100%" :modal="false" :visible.sync="formBool" :before-close="handleClose">
- <zj-page-container v-if="formBool">
- <zj-page-fill>
- <zj-form-container
- ref="formRef"
- :form-data="formData"
- :form-rules="formRules"
- :form-attributes="{ size: 'mini' }"
- >
- <zj-form-module title="评价信息" :form-data="formData" :form-items="items" />
- <zj-form-module title="申诉信息" :form-data="formData" :form-items="items2" />
- <zj-form-module title="中心审核信息" :form-data="formData" :form-items="items3" />
- </zj-form-container>
- </zj-page-fill>
- <!-- 操作按钮 -->
- <div style="box-sizing: border-box; padding: 10px; text-align: right">
- <el-button size="mini" @click="handleClose">取 消</el-button>
- <el-button v-if="~[0, 1].indexOf(formType)" size="mini" @click="formConfirm" type="primary"
- >确 定</el-button
- >
- </div>
- </zj-page-container>
- </el-dialog>
- </div>
- </template-page>
- </template>
- <script>
- import TemplatePage from '@/components/template/template-page-1.vue'
- import import_mixin from '@/components/template/import_mixin.js'
- import {
- appraiseApplyApplyList,
- appraiseApplyApplyListExport,
- appraiseApplyApplyDetail,
- appraiseApplyApplySubmit,
- appraiseApplyApplyConfirm,
- appraiseApplyBatchUpdateEnd,
- appraiseApplyBatchUpdateReset
- } from '@/api/appraisalStatement'
- import operation_mixin from '@/components/template/operation_mixin.js'
- import { required, requiredValueMin } from '@/components/template/rules_verify.js'
- export default {
- components: { TemplatePage },
- mixins: [import_mixin, operation_mixin],
- data() {
- return {
- // 表格属性
- tableAttributes: {
- selectColumn: false
- },
- // 表格事件
- tableEvents: {
- 'selection-change': this.selectionChange
- },
- recordSelected: [],
- formBool: false,
- formType: 0,
- formData: {},
- formRules: {}
- }
- },
- computed: {
- optionsEvensGroup() {
- return [
- [
- [
- this.optionsEvensAuth('add', {
- click: () => {
- this.formType = 0
- this.formBool = true
- }
- })
- ]
- ]
- ]
- },
- items() {
- return []
- },
- items2() {
- return []
- },
- items3() {
- return []
- }
- },
- methods: {
- // 列表请求函数
- getList: appraiseApplyApplyList,
- // 导出
- exportList: appraiseApplyApplyListExport,
- // 表格列解析渲染数据更改
- columnParsing(item, defaultData) {
- return defaultData
- },
- // 获取勾选框数据
- selectionChange(data) {
- this.recordSelected = data
- },
- handleClose() {
- this.$refs?.pageRef?.refreshList()
- this.$data.formData = this.$options.data().formData
- this.formType = 0
- this.formBool = false
- },
- formConfirm() {
- this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
- if (valid) {
- appraiseApplyApplySubmit(this.formData).then(res => {
- this.$message({ type: 'success', message: '成功!' })
- this.$refs.pageRef.refreshList()
- this.handleClose()
- })
- }
- })
- },
- operation() {
- return this.operationBtn({
- edit: {
- click: ({ row, index, column }) => {
- appraiseApplyApplyDetail({
- id: row.id
- }).then(res => {
- this.formData = { ...res.data }
- this.$nextTick(() => {
- this.formType = 1
- this.formBool = true
- })
- })
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped></style>
|