style:证书分发
Showing
4 changed files
with
35 additions
and
106 deletions
1 | <template> | 1 | <template> |
2 | <dialogBox title="证书分发" @submitForm="submitForm" saveButton="保存" width="50%" :isFullscreen="false" | ||
3 | @closeDialog="closeDialog" v-model="myValue" :isButton="readOnly"> | ||
4 | <div> | ||
5 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> | 2 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> |
6 | <el-row> | 3 | <el-row> |
7 | <el-col :span="12"> | 4 | <el-col :span="12"> |
... | @@ -11,8 +8,8 @@ | ... | @@ -11,8 +8,8 @@ |
11 | </el-col> | 8 | </el-col> |
12 | <el-col :span="12"> | 9 | <el-col :span="12"> |
13 | <el-form-item label="领取时间:" prop="operationtime"> | 10 | <el-form-item label="领取时间:" prop="operationtime"> |
14 | <el-date-picker v-model="ruleForm.operationtime" class="width100" type="datetime" | 11 | <el-date-picker v-model="ruleForm.operationtime" class="width100" type="datetime" placeholder="选择日期时间" |
15 | placeholder="选择日期时间" :disabled="!readOnly" value-format="yyyy-MM-dd HH:mm:ss"> | 12 | :disabled="!readOnly" value-format="yyyy-MM-dd HH:mm:ss"> |
16 | </el-date-picker> | 13 | </el-date-picker> |
17 | </el-form-item> | 14 | </el-form-item> |
18 | </el-col> | 15 | </el-col> |
... | @@ -32,21 +29,20 @@ | ... | @@ -32,21 +29,20 @@ |
32 | </el-col> | 29 | </el-col> |
33 | </el-row> | 30 | </el-row> |
34 | <div> | 31 | <div> |
35 | <el-table :data="tableForm" border | 32 | <el-table :data="tableForm" border :header-cell-style="{ 'text-align': 'center', background: 'rgb(236, 245, 255)' }" |
36 | :header-cell-style="{'text-align':'center',background: 'rgb(236, 245, 255)'}" | 33 | :cell-style="{ 'text-align': 'center' }"> |
37 | :cell-style="{'text-align':'center'}"> | ||
38 | <el-table-column prop="name" label="纸质证书类型" width="200"></el-table-column> | 34 | <el-table-column prop="name" label="纸质证书类型" width="200"></el-table-column> |
39 | <el-table-column prop="ksysxlh" label="开始印刷序列号" width="200"></el-table-column> | 35 | <el-table-column prop="ksysxlh" label="开始印刷序列号" width="200"></el-table-column> |
40 | <el-table-column prop="bs" label="本数"> | 36 | <el-table-column prop="bs" label="本数"> |
41 | <template slot-scope="scope"> | 37 | <template slot-scope="scope"> |
42 | <el-input v-model="scope.row.bs" @blur="ysxlhDeal(scope.row)" | 38 | <el-input v-model="scope.row.bs" @blur="ysxlhDeal(scope.row)" oninput="value=value.replace(/[^\d.]/g,'')" |
43 | oninput="value=value.replace(/[^\d.]/g,'')" maxlength="6" :disabled="!readOnly"></el-input> | 39 | maxlength="6" :disabled="!readOnly"></el-input> |
44 | </template> | 40 | </template> |
45 | </el-table-column> | 41 | </el-table-column> |
46 | <el-table-column prop="jsysxlh" label="结束印刷序列号" width="200"> | 42 | <el-table-column prop="jsysxlh" label="结束印刷序列号" width="200"> |
47 | <template slot-scope="scope"> | 43 | <template slot-scope="scope"> |
48 | <span v-if="scope.row.jsysxlh == ''" class="font-red">系统计算</span> | 44 | <span v-if="scope.row.jsysxlh == ''" class="font-red">系统计算</span> |
49 | <span v-else>{{scope.row.jsysxlh}}</span> | 45 | <span v-else>{{ scope.row.jsysxlh }}</span> |
50 | </template> | 46 | </template> |
51 | </el-table-column> | 47 | </el-table-column> |
52 | </el-table> | 48 | </el-table> |
... | @@ -54,24 +50,25 @@ | ... | @@ -54,24 +50,25 @@ |
54 | <el-form-item label="备注" class="middle-margin-bottom"> | 50 | <el-form-item label="备注" class="middle-margin-bottom"> |
55 | <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input> | 51 | <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input> |
56 | </el-form-item> | 52 | </el-form-item> |
53 | |||
54 | <el-form-item v-if="readOnly"> | ||
55 | <el-button type="primary" @click="submitForm">保存</el-button> | ||
56 | <el-button @click="closeDialog">取消</el-button> | ||
57 | </el-form-item> | ||
57 | </el-form> | 58 | </el-form> |
58 | </div> | ||
59 | </dialogBox> | ||
60 | </template> | 59 | </template> |
61 | 60 | ||
62 | <script> | 61 | <script> |
63 | import { getZsStartNo, getSysSerialSingle, getZsEndNo, zsff ,getZsglInfo} from "@/api/zsgl.js" | 62 | import { getZsStartNo, getSysSerialSingle, getZsEndNo, zsff, getZsglInfo } from "@/api/zsgl.js" |
64 | export default { | 63 | export default { |
65 | components: { | ||
66 | }, | ||
67 | computed: { | ||
68 | }, | ||
69 | props: { | 64 | props: { |
70 | value: { type: Boolean, default: false }, | 65 | formData: { |
66 | type: Object, | ||
67 | default: () => { } | ||
68 | } | ||
71 | }, | 69 | }, |
72 | data () { | 70 | data () { |
73 | return { | 71 | return { |
74 | myValue: this.value, | ||
75 | readOnly: false, | 72 | readOnly: false, |
76 | //表单提交数据 | 73 | //表单提交数据 |
77 | ruleForm: { | 74 | ruleForm: { |
... | @@ -126,9 +123,12 @@ export default { | ... | @@ -126,9 +123,12 @@ export default { |
126 | }, | 123 | }, |
127 | } | 124 | } |
128 | }, | 125 | }, |
129 | watch: { | 126 | mounted () { |
130 | value (val) { | 127 | if (this.formData.bsmBatch) { |
131 | this.myValue = val | 128 | this.getDetailInfo(this.formData.bsmBatch); |
129 | } else { | ||
130 | this.ywhSerial(); | ||
131 | this.initStartNo(); | ||
132 | } | 132 | } |
133 | }, | 133 | }, |
134 | methods: { | 134 | methods: { |
... | @@ -156,9 +156,9 @@ export default { | ... | @@ -156,9 +156,9 @@ export default { |
156 | }) | 156 | }) |
157 | }, | 157 | }, |
158 | //获取详情信息 | 158 | //获取详情信息 |
159 | getDetailInfo(bsmBatch) { | 159 | getDetailInfo (bsmBatch) { |
160 | getZsglInfo({"bsmBatch": bsmBatch}).then(res => { | 160 | getZsglInfo({ "bsmBatch": bsmBatch }).then(res => { |
161 | if(res.code == 200){ | 161 | if (res.code == 200) { |
162 | this.ruleForm = res.result; | 162 | this.ruleForm = res.result; |
163 | this.readOnly = false; | 163 | this.readOnly = false; |
164 | this.tableForm[0].ksysxlh = res.result.zsstarno; | 164 | this.tableForm[0].ksysxlh = res.result.zsstarno; |
... | @@ -240,6 +240,7 @@ export default { | ... | @@ -240,6 +240,7 @@ export default { |
240 | <style scoped lang="scss"> | 240 | <style scoped lang="scss"> |
241 | @import "~@/styles/mixin.scss"; | 241 | @import "~@/styles/mixin.scss"; |
242 | @import "~@/styles/dialogBoxheader.scss"; | 242 | @import "~@/styles/dialogBoxheader.scss"; |
243 | |||
243 | .font-red { | 244 | .font-red { |
244 | color: red | 245 | color: red |
245 | } | 246 | } | ... | ... |
... | @@ -19,8 +19,8 @@ | ... | @@ -19,8 +19,8 @@ |
19 | </el-col> | 19 | </el-col> |
20 | <el-col :span="5"> | 20 | <el-col :span="5"> |
21 | <el-form-item label="结束时间"> | 21 | <el-form-item label="结束时间"> |
22 | <el-date-picker v-model="ruleForm.ffjssj" :picker-options="pickerOptionsEnd" type="date" | 22 | <el-date-picker v-model="ruleForm.ffjssj" :picker-options="pickerOptionsEnd" type="date" placeholder="结束日期" |
23 | placeholder="结束日期" value-format="yyyy-MM-dd" clearable> | 23 | value-format="yyyy-MM-dd" clearable> |
24 | </el-date-picker> | 24 | </el-date-picker> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
... | @@ -96,18 +96,11 @@ export default { | ... | @@ -96,18 +96,11 @@ export default { |
96 | } | 96 | } |
97 | }, | 97 | }, |
98 | methods: { | 98 | methods: { |
99 | // 查看弹框 | ||
99 | openDialog (bsmBatch) { | 100 | openDialog (bsmBatch) { |
100 | if (bsmBatch) { | 101 | this.$popupDialog("证书分发", "zsgl/zsff/components/addDialog", { |
101 | this.$nextTick(() => { | 102 | bsmBatch: bsmBatch |
102 | this.$refs.addDialog.getDetailInfo(bsmBatch); | 103 | }, "50%") |
103 | }) | ||
104 | } else { | ||
105 | this.$nextTick(() => { | ||
106 | this.$refs.addDialog.ywhSerial(); | ||
107 | this.$refs.addDialog.initStartNo(); | ||
108 | }) | ||
109 | } | ||
110 | this.isDialog = true; | ||
111 | }, | 104 | }, |
112 | queryClick () { | 105 | queryClick () { |
113 | getZsglffList({ ...this.ruleForm, ...this.pageData }).then(res => { | 106 | getZsglffList({ ...this.ruleForm, ...this.pageData }).then(res => { | ... | ... |
1 | <template> | 1 | <template> |
2 | <!-- <dialogBox title="证书入库" @submitForm="submitForm" saveButton="保存" :isFullscreen="false" width="50%" | ||
3 | @closeDialog="closeDialog" v-model="myValue" :isButton="readOnly"> | ||
4 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> | ||
5 | <el-row> | ||
6 | <el-col :span="12"> | ||
7 | <el-form-item label="入库编号:" prop="batchno"> | ||
8 | <el-input v-model="ruleForm.batchno" :disabled="true"></el-input> | ||
9 | </el-form-item> | ||
10 | </el-col> | ||
11 | <el-col :span="12"> | ||
12 | <el-form-item label="登记机构:" prop="djjg"> | ||
13 | <el-select v-model="ruleForm.djjg" class="width100" placeholder="请选择" :disabled="!readOnly"> | ||
14 | <el-option v-for="item in dictData['ywly']" :key="item.dname" :label="item.dname" :value="item.dname"> | ||
15 | </el-option> | ||
16 | </el-select> | ||
17 | </el-form-item> | ||
18 | </el-col> | ||
19 | </el-row> | ||
20 | <el-row> | ||
21 | <el-col :span="12"> | ||
22 | <el-form-item label="入库人员:"> | ||
23 | <el-input v-model="ruleForm.operator" :disabled="true"></el-input> | ||
24 | </el-form-item> | ||
25 | </el-col> | ||
26 | <el-col :span="12"> | ||
27 | <el-form-item label="入库时间:" prop="operationtime"> | ||
28 | <el-date-picker v-model="ruleForm.operationtime" class="width100" type="datetime" :disabled="!readOnly" value-format="yyyy-MM-dd HH:mm:ss"> | ||
29 | </el-date-picker> | ||
30 | </el-form-item> | ||
31 | </el-col> | ||
32 | </el-row> | ||
33 | <div> | ||
34 | <el-table :data="tableForm" border style="width: 100%" | ||
35 | :header-cell-style="{'text-align':'center',background: 'rgb(236, 245, 255)'}" | ||
36 | :cell-style="{'text-align':'center'}"> | ||
37 | <el-table-column prop="name" label="纸质证书类型" width="200"></el-table-column> | ||
38 | <el-table-column prop="ksysxlh" label="开始印刷序列号" width="200"> | ||
39 | <template slot-scope="scope"> | ||
40 | <el-input v-model="scope.row.ksysxlh" @blur="ysxlhDeal(scope.row)" maxlength="11" | ||
41 | oninput="value=value.replace(/[^\d.]/g,'')" :disabled="!readOnly"></el-input> | ||
42 | </template> | ||
43 | </el-table-column> | ||
44 | <el-table-column prop="jsysxlh" label="结束印刷序列号" width="200"> | ||
45 | <template slot-scope="scope"> | ||
46 | <el-input v-model="scope.row.jsysxlh" @blur="ysxlhDeal(scope.row)" maxlength="11" | ||
47 | oninput="value=value.replace(/[^\d.]/g,'')" :disabled="!readOnly"></el-input> | ||
48 | </template> | ||
49 | </el-table-column> | ||
50 | <el-table-column prop="bs" label="本数"> | ||
51 | <template slot-scope="scope"> | ||
52 | <span v-if="scope.row.bs == 0" class="font-red">系统计算</span> | ||
53 | <span v-else-if="scope.row.bs < 0" class="font-red">印刷序列号有误</span> | ||
54 | <span v-else>{{scope.row.bs}}</span> | ||
55 | </template> | ||
56 | </el-table-column> | ||
57 | </el-table> | ||
58 | </div> | ||
59 | <el-form-item label="备注" class="middle-margin-bottom"> | ||
60 | <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input> | ||
61 | </el-form-item> | ||
62 | </el-form> | ||
63 | </dialogBox> --> | ||
64 | <div> | ||
65 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> | 2 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> |
66 | <el-row> | 3 | <el-row> |
67 | <el-col :span="12"> | 4 | <el-col :span="12"> |
... | @@ -121,14 +58,11 @@ | ... | @@ -121,14 +58,11 @@ |
121 | <el-form-item label="备注" class="middle-margin-bottom"> | 58 | <el-form-item label="备注" class="middle-margin-bottom"> |
122 | <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input> | 59 | <el-input type="textarea" v-model="ruleForm.bz" :rows="4" :disabled="!readOnly"></el-input> |
123 | </el-form-item> | 60 | </el-form-item> |
124 | <el-row v-if="readOnly"> | 61 | <el-form-item v-if="readOnly"> |
125 | <el-form-item> | ||
126 | <el-button type="primary" @click="submitForm">保存</el-button> | 62 | <el-button type="primary" @click="submitForm">保存</el-button> |
127 | <el-button @click="closeDialog">取消</el-button> | 63 | <el-button @click="closeDialog">取消</el-button> |
128 | </el-form-item> | 64 | </el-form-item> |
129 | </el-row> | ||
130 | </el-form> | 65 | </el-form> |
131 | </div> | ||
132 | </template> | 66 | </template> |
133 | 67 | ||
134 | <script> | 68 | <script> | ... | ... |
... | @@ -93,6 +93,7 @@ export default { | ... | @@ -93,6 +93,7 @@ export default { |
93 | } | 93 | } |
94 | }, | 94 | }, |
95 | methods: { | 95 | methods: { |
96 | // 查看弹框 | ||
96 | openDialog (bsmBatch) { | 97 | openDialog (bsmBatch) { |
97 | this.$popupDialog("证书入库", "zsgl/zsrk/components/addDialog", { | 98 | this.$popupDialog("证书入库", "zsgl/zsrk/components/addDialog", { |
98 | bsmBatch: bsmBatch | 99 | bsmBatch: bsmBatch | ... | ... |
-
Please register or sign in to post a comment