You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

325 lines
7.4 KiB

2 years ago
<script>
2 years ago
import {deepCopy} from "@/utils";
2 years ago
import formBuilder from "@/utils/formBuilder";
2 years ago
import {PopupManager} from "element-ui/lib/utils/popup";
2 years ago
import request from '@/utils/request'
2 years ago
import moment from "moment/moment";
1 year ago
import {defaultModalSize} from "@/settings";
1 year ago
import {getToken} from '@/utils/auth'
2 years ago
export default {
props: {
1 year ago
config: {
type: Object
},
2 years ago
isFirstNode: {
type: Boolean,
2 years ago
default: true,
2 years ago
},
2 years ago
readable: {
type: Array,
default: () => [],
2 years ago
required: true,
2 years ago
},
writeable: {
type: Array,
default: () => [],
2 years ago
required: true,
2 years ago
},
2 years ago
originalForm: {
type: Object,
default: () => ({}),
2 years ago
required: true,
2 years ago
},
subForm: {
type: Map,
2 years ago
default: () => new Map(),
2 years ago
},
2 years ago
device: {
type: String,
2 years ago
default: "desktop",
required: true,
2 years ago
},
2 years ago
fields: {
2 years ago
type: Array,
default: () => [],
2 years ago
required: true,
2 years ago
},
2 years ago
scriptContent: String,
rules: {
type: Object,
2 years ago
default: () => ({}),
},
2 years ago
subRules: {
type: Object,
default: () => ({}),
},
2 years ago
logs: {
type: Array,
default: () => []
}
2 years ago
},
data() {
return {
2 years ago
// 脚本注入控制的modal弹窗
1 year ago
defaultModalSize,
2 years ago
zIndex: PopupManager.nextZIndex(),
isShowModal: false,
modalRender: () => {},
action: process.env.VUE_APP_BASE_API,
2 years ago
form: {},
2 years ago
1 year ago
jointlySignLog: [], // 所有会签log记录
2 years ago
datetimeFormat: 'yyyy-MM-dd HH:mm',
copyShortcuts: [
{
text: "一年前",
onClick(picker) {
picker.$emit(
"pick",
moment().subtract(1, "years").toDate()
);
},
},
{
text: "一月前",
onClick(picker) {
picker.$emit(
"pick",
moment().subtract(1, "months").toDate()
);
},
},
{
text: "一周前",
onClick(picker) {
picker.$emit(
"pick",
moment().subtract(1, "weeks").toDate()
);
},
},
{
text: "今天",
onClick(picker) {
picker.$emit("pick", new Date());
},
},
{
text: "一周后",
onClick(picker) {
picker.$emit("pick", moment().add(1, "weeks").toDate());
},
},
{
text: "一月后",
onClick(picker) {
picker.$emit("pick", moment().add(1, "months").toDate());
},
},
{
text: "一年后",
onClick(picker) {
picker.$emit("pick", moment().add(1, "years").toDate());
},
},
],
shortcuts: [
{
text: "一年前",
onClick(picker) {
picker.$emit(
"pick",
moment().subtract(1, "years").toDate()
);
},
},
{
text: "一月前",
onClick(picker) {
picker.$emit(
"pick",
moment().subtract(1, "months").toDate()
);
},
},
{
text: "一周前",
onClick(picker) {
picker.$emit(
"pick",
moment().subtract(1, "weeks").toDate()
);
},
},
{
text: "今天",
onClick(picker) {
picker.$emit("pick", new Date());
},
},
{
text: "一周后",
onClick(picker) {
picker.$emit("pick", moment().add(1, "weeks").toDate());
},
},
{
text: "一月后",
onClick(picker) {
picker.$emit("pick", moment().add(1, "months").toDate());
},
},
{
text: "一年后",
onClick(picker) {
picker.$emit("pick", moment().add(1, "years").toDate());
},
},
2 years ago
],
1 year ago
flows: {},
2 years ago
};
2 years ago
},
methods: {
1 year ago
getToken,
2 years ago
request,
2 years ago
async validate() {
2 years ago
const $elForm = this.$refs['elForm']
if ($elForm) {
await this.$refs['elForm'].validate()
}
let subFormName = this.fields.filter(i => i.type === 'relation').map(i => i.name)
for (let i = 0;i < subFormName.length;i++) {
let $subForm = this.$refs[`subForm-${subFormName[i]}`]
if ($subForm) {
1 year ago
const errMap = await this.$refs[`subForm-${subFormName[i]}`].validate(true)
2 years ago
if (errMap) {
throw new Error(errMap)
}
}
}
},
2 years ago
},
2 years ago
computed: {},
2 years ago
watch: {
info(newVal) {
2 years ago
let keys = newVal.map((i) => i.name);
keys.forEach((key) => {
this.form[key] = "";
});
2 years ago
},
originalForm(newVal) {
2 years ago
this.form = deepCopy(newVal);
2 years ago
},
2 years ago
scriptContent(newVal) {
2 years ago
if (newVal) {
2 years ago
try {
2 years ago
new Function(newVal).bind(this)();
2 years ago
} catch (err) {
2 years ago
console.error(err);
2 years ago
}
}
2 years ago
},
isShowModal(newVal) {
2 years ago
if (newVal) {
this.zIndex = PopupManager.nextZIndex();
2 years ago
}
2 years ago
},
1 year ago
logs: {
handler: function (newVal) {
if (newVal && newVal instanceof Array && newVal.length > 0) {
this.jointlySignLog = newVal.filter(log => {
try {
JSON.parse(log.data)
return log.is_jointly_sign && /custom_field_id/g.test(log.data)
} catch (e) {
return false
}
})
} else {
this.jointlySignLog = []
}
},
immediate: true
}
2 years ago
},
render(h) {
2 years ago
const authFields = this.fields.map((field) => ({
2 years ago
...field,
2 years ago
_readable:
this.readable.indexOf(field.id) !== -1 || field.type === "label",
_writeable: this.writeable.indexOf(field.id) !== -1,
2 years ago
}));
2 years ago
authFields.unshift({
2 years ago
name: "flow_title",
label: "工作名称",
type: "text",
2 years ago
gs_x: 0,
gs_y: 0,
gs_width: 12,
gs_height: 1,
2 years ago
label_show: 1,
2 years ago
_readable: !this.isFirstNode,
2 years ago
_writeable: this.isFirstNode,
});
return h("div", [
h(
"el-form",
{
ref: "elForm",
class: "form",
props: {
model: this.form,
"label-position": "right",
2 years ago
"label-width": "120px",
2 years ago
rules: this.rules,
"inline-message": true,
},
},
authFields.map((field) => formBuilder.bind(this)(this.device, field, h))
),
2 years ago
// 用于编写脚本中弹窗
2 years ago
h(
"vxe-modal",
{
props: {
zIndex: this.zIndex,
value: this.isShowModal,
1 year ago
height: defaultModalSize.height,
width: defaultModalSize.width,
resize: true,
transfer: true,
"show-zoom": true,
2 years ago
"esc-closable": true,
},
on: {
input: (e) => {
this.isShowModal = e;
},
},
2 years ago
},
2 years ago
[this.modalRender.bind(this)(h)]
),
]);
},
2 years ago
created() {},
};
2 years ago
</script>
<style scoped lang="scss">
.form {
display: grid;
grid-template-columns: repeat(12, 1fr);
}
::v-deep .el-form-item {
2 years ago
border: 1px solid #dee2e6;
padding: 8px 12px;
margin: -1px 0 0 -1px;
2 years ago
}
2 years ago
::v-deep .el-form-item__content {
2 years ago
}
2 years ago
::v-deep .el-radio, .el-radio__input {
line-height: 1.5;
}
2 years ago
</style>