|
@@ -36,8 +36,7 @@
|
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
|
:value="item.value"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="数据时间" prop="start">
|
|
@@ -60,12 +59,14 @@
|
|
|
type + '' === '2' ? '报表会在提交后开始执行!' : '报表会在明天01:00开始生成'
|
|
|
"
|
|
|
type="warning"
|
|
|
- >
|
|
|
- </el-alert>
|
|
|
+ />
|
|
|
</el-col>
|
|
|
<el-col :span="12" style="text-align: right">
|
|
|
- <el-button v-if="!isDetail" type="primary" @click="submitForm"
|
|
|
- >保 存
|
|
|
+ <el-button
|
|
|
+ v-if="!isDetail"
|
|
|
+ type="primary"
|
|
|
+ @click="submitForm"
|
|
|
+ >保 存
|
|
|
</el-button>
|
|
|
<el-button @click="showModelThis = false">{{
|
|
|
isDetail ? "关 闭" : "取 消"
|
|
@@ -77,38 +78,38 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
// import asyncRequest from "@/apis/service/reportQuery/financeReport/index.js";
|
|
|
-import asyncRequest from "@/apis/service/businessReportQuery/saleReportOrder/index.js";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
-import PeriodDatePicker from "./components/PeriodDatePicker";
|
|
|
+import asyncRequest from '@/apis/service/businessReportQuery/saleReportOrder/index.js'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
+import PeriodDatePicker from './components/PeriodDatePicker'
|
|
|
export default {
|
|
|
- name: "saleReportOrder",
|
|
|
- props: ["showModel", "sitem", "type"],
|
|
|
- mixins: [resToken],
|
|
|
+ name: 'SaleReportOrder',
|
|
|
components: {
|
|
|
- PeriodDatePicker,
|
|
|
+ PeriodDatePicker
|
|
|
},
|
|
|
+ mixins: [resToken],
|
|
|
+ props: ['showModel', 'sitem', 'type'],
|
|
|
|
|
|
data() {
|
|
|
const validateTime = (rule, value, callback) => {
|
|
|
- if (value === "") {
|
|
|
- callback(new Error("数据开始时间不能为空!"));
|
|
|
+ if (value === '') {
|
|
|
+ callback(new Error('数据开始时间不能为空!'))
|
|
|
} else {
|
|
|
- if (this.ruleForm.end === "") {
|
|
|
- callback(new Error("数据结束时间不能为空!"));
|
|
|
+ if (this.ruleForm.end === '') {
|
|
|
+ callback(new Error('数据结束时间不能为空!'))
|
|
|
} else {
|
|
|
- callback();
|
|
|
+ callback()
|
|
|
}
|
|
|
}
|
|
|
- };
|
|
|
+ }
|
|
|
return {
|
|
|
options: [],
|
|
|
loading: false,
|
|
|
- title: "添加账号",
|
|
|
+ title: '添加账号',
|
|
|
showModelThis: this.showModel,
|
|
|
ruleForm: {
|
|
|
- start: "",
|
|
|
- end: "",
|
|
|
- id: "",
|
|
|
+ start: '',
|
|
|
+ end: '',
|
|
|
+ id: ''
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
|
rules: {
|
|
@@ -116,109 +117,112 @@ export default {
|
|
|
{
|
|
|
required: true,
|
|
|
validator: validateTime,
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
+ trigger: 'change'
|
|
|
+ }
|
|
|
],
|
|
|
id: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "请选择业务表!",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- };
|
|
|
+ message: '请选择业务表!',
|
|
|
+ trigger: 'change'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- showModel: function (val) {
|
|
|
- this.showModelThis = val;
|
|
|
+ showModel: function(val) {
|
|
|
+ this.showModelThis = val
|
|
|
if (val) {
|
|
|
- this.initForm();
|
|
|
+ this.initForm()
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
|
if (!val) {
|
|
|
- this.$emit("cancel");
|
|
|
+ this.$emit('cancel')
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
closeModel() {
|
|
|
- console.log("closeModel!!");
|
|
|
+ console.log('closeModel!!')
|
|
|
},
|
|
|
async initForm() {
|
|
|
- this.loading = true;
|
|
|
- this.options = [];
|
|
|
- this.rulesThis = this.rules;
|
|
|
- await this.resetForm();
|
|
|
- this.loading = false;
|
|
|
+ this.loading = true
|
|
|
+ this.options = []
|
|
|
+ this.rulesThis = this.rules
|
|
|
+ await this.resetForm()
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
async timeReturned(e) {
|
|
|
- if (e.startTime !== "") {
|
|
|
- this.ruleForm.start = e.startTime;
|
|
|
+ if (e.startTime !== '') {
|
|
|
+ this.ruleForm.start = e.startTime
|
|
|
} else {
|
|
|
- this.ruleForm.start = "";
|
|
|
+ this.ruleForm.start = ''
|
|
|
}
|
|
|
- if (e.endTime !== "") {
|
|
|
- this.ruleForm.end = e.endTime;
|
|
|
+ if (e.endTime !== '') {
|
|
|
+ this.ruleForm.end = e.endTime
|
|
|
} else {
|
|
|
- this.ruleForm.end = "";
|
|
|
+ this.ruleForm.end = ''
|
|
|
}
|
|
|
},
|
|
|
async resetForm() {
|
|
|
// 重置
|
|
|
await this.$nextTick(() => {
|
|
|
if (this.$refs.ruleForm) {
|
|
|
- this.$refs.ruleForm.resetFields();
|
|
|
- this.$refs.ruleForm.clearValidate();
|
|
|
- const { start, end, id, name } = this.sitem;
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
+ this.$refs.ruleForm.clearValidate()
|
|
|
+ const { start, end, id, name } = this.sitem
|
|
|
// console.log(this.sitem);
|
|
|
this.options = [
|
|
|
{
|
|
|
value: id,
|
|
|
- label: name,
|
|
|
- },
|
|
|
- ];
|
|
|
+ label: name
|
|
|
+ }
|
|
|
+ ]
|
|
|
this.ruleForm = {
|
|
|
- start: "",
|
|
|
- end: "",
|
|
|
- id: id || "",
|
|
|
- };
|
|
|
- console.log(this.ruleForm);
|
|
|
+ start: '',
|
|
|
+ end: '',
|
|
|
+ id: id || ''
|
|
|
+ }
|
|
|
+ console.log(this.ruleForm)
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
async submitForm() {
|
|
|
- await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
+ await this.$refs.ruleForm.validate(async(valid) => {
|
|
|
if (valid) {
|
|
|
if (this.loading) {
|
|
|
- return;
|
|
|
+ return
|
|
|
}
|
|
|
- this.loading = true;
|
|
|
- const model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
- let res = await asyncRequest.add(model);
|
|
|
- this.loading = false;
|
|
|
+ this.loading = true
|
|
|
+ const model = JSON.parse(JSON.stringify(this.ruleForm))
|
|
|
+ const res = await asyncRequest.add({
|
|
|
+ ...model,
|
|
|
+ needRela: true
|
|
|
+ })
|
|
|
+ this.loading = false
|
|
|
if (res && res.code === 0) {
|
|
|
this.$notify.success({
|
|
|
- title: "需求创建成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
- this.showModelThis = false;
|
|
|
+ title: '需求创建成功!',
|
|
|
+ message: ''
|
|
|
+ })
|
|
|
+ this.showModelThis = false
|
|
|
// 刷新
|
|
|
- this.$emit("refresh");
|
|
|
+ this.$emit('refresh')
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ this.$message.warning(res.message)
|
|
|
}
|
|
|
} else {
|
|
|
- console.log("error submit!!");
|
|
|
- return false;
|
|
|
+ console.log('error submit!!')
|
|
|
+ return false
|
|
|
}
|
|
|
- });
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|