Commit 1f6943ac authored by 李苏's avatar 李苏 💬

调整

parent e66e2813
......@@ -3,91 +3,166 @@
* @Author: lisu lisu@gavelinfo.com
* @Date: 2024-09-19 10:55:27
* @LastEditors: lisu lisu@gavelinfo.com
* @LastEditTime: 2024-10-28 15:31:25
* @LastEditTime: 2024-10-28 16:31:32
* @FilePath: /zghywpc-vue/src/views/ywxxgl/ywsjgl/index.vue
-->
<template>
<BasePage class="min_full" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
<template #toolbar="ctx">
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
<!-- <el-button @click="demo(ctx.basePage)" size='mini' type="primary">示例按钮</el-button> -->
</template>
<BasePage class="min_full" :config="config">
<template #dialog="ctx">
<!-- 嵌入默认页面额外弹框的插槽 ctx.pagePage来操作默认页面 -->
</template>
<template #toolbar="ctx">
<!-- 嵌入默认页面工具栏的插槽 ctx.pagePage来操作默认页面 -->
<!-- <el-button @click="demo(ctx.basePage)" size='mini' type="primary">示例按钮</el-button> -->
</template>
</BasePage>
</BasePage>
</template>
<script>
import Edit from './edit.vue'
export default {
name: 'ywsjgl',
data() {
return {
config: {
/* 基本配置*/
url: 'ywxxgl/uywsj',
tableTitle: [
import Edit from './edit.vue'
export default {
name: 'ywsjgl',
data() {
return {
config: {
/* 基本配置*/
url: 'ywxxgl/uywsj',
tableTitle: [
{label: "事件描述", prop: "sjms", fieldType: "ftString",width:300},
{label: "异物发现时间", prop: "ywfxsj", fieldType: "ftDateTime"},
{label: "通知单号", prop: "tzdh", fieldType: "ftString",width:192},
{label: "分类", prop: "fl", fieldType: "ftString",width:192},
{label: "事件分级", prop: "sjfj", fieldType: "int"},
{label: "是否关闭", prop: "sfgb", fieldType: "checkbox",width:60},
{label: "责任专业", prop: "zrzy", fieldType: "ftString",width:192},
{label: "期间", prop: "qj", fieldType: "ftString",width:192},
{label: "完整性", prop: "wzx", fieldType: "checkbox"},
{label: "IOE", prop: "ioe", fieldType: "checkbox"},
{label: "是否一回路或二次侧", prop: "sfyhlhecc", fieldType: "checkbox",width:200},
{label: "异物事件单是否签字", prop: "ywsjdsfqz", fieldType: "checkbox",width:200},
{label: "SAP任务是否关闭", prop: "saprwsfgb", fieldType: "checkbox",width:200},
{label: "SAP通知单是否关闭", prop: "saptzdsfgb", fieldType: "checkbox",width:200},
{label: "维护人", prop: "whr", fieldType: "ftString"},
{label: "维护时间", prop: "whsj", fieldType: "ftDateTime"},
{label: "创建人", prop: "cjr", fieldType: "ftString"},
{label: "创建时间", prop: "cjsj", fieldType: "ftDateTime"},
{
label: "事件描述",
prop: "sjms",
fieldType: "ftString",
width: 300
},
{
label: "异物发现时间",
prop: "ywfxsj",
fieldType: "ftDateTime"
},
{
label: "通知单号",
prop: "tzdh",
fieldType: "ftString",
width: 192
},
{
label: "分类",
prop: "fl",
fieldType: "ftString",
width: 192
},
{
label: "事件分级",
prop: "sjfj",
fieldType: "int"
},
{
label: "是否关闭",
prop: "sfgb",
fieldType: "checkbox",
width: 60
},
{
label: "责任专业",
prop: "zrzy",
fieldType: "ftString",
width: 192
},
{
label: "期间",
prop: "qj",
fieldType: "ftString",
width: 192
},
{
label: "完整性",
prop: "wzx",
fieldType: "checkbox"
},
{
label: "IOE",
prop: "ioe",
fieldType: "checkbox"
},
{
label: "是否一回路或二次侧",
prop: "sfyhlhecc",
fieldType: "checkbox",
width: 200
},
{
label: "异物事件单是否签字",
prop: "ywsjdsfqz",
fieldType: "checkbox",
width: 200
},
{
label: "SAP任务是否关闭",
prop: "saprwsfgb",
fieldType: "checkbox",
width: 200
},
{
label: "SAP通知单是否关闭",
prop: "saptzdsfgb",
fieldType: "checkbox",
width: 200
},
{
label: "维护人",
prop: "whr",
fieldType: "ftString"
},
{
label: "维护时间",
prop: "whsj",
fieldType: "ftDateTime"
},
{
label: "创建人",
prop: "cjr",
fieldType: "ftString"
},
{
label: "创建时间",
prop: "cjsj",
fieldType: "ftDateTime"
},
],
queryParams: [
[{
label: '编码',
prop: 'code',
span: 6,
type: 'input',
value: ''
},
{
label: '名称',
prop: 'name',
span: 6,
type: 'input',
value: ''
}
],
queryParams: [
[{
label: '事件描述',
prop: 'sjms',
span: 6,
type: 'input',
value: ''
}
]
],
/* 默认启停用 */
]
],
/* 默认启停用 */
}
}
}
}
},
methods: {
/**
* @description:示例按钮
* @param {*} ctx操作basePage实例内容
* @return {*}
* @author: lisu
*/
// demo(ctx){}
},
components: {
Edit
}
},
methods: {
/**
* @description:示例按钮
* @param {*} ctx操作basePage实例内容
* @return {*}
* @author: lisu
*/
// demo(ctx){}
},
components: {
Edit
}
}
}
</script>
<style>
......
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