1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- var template = ''
- $.ajax('../../../component/statistics/LascBreastMolybdenumInspectList/index.html', {
- data: {},
- dataType: 'html',
- cache: false,
- timeout: 60000,
- async: false,
- error: function (res) {},
- success: function (res) {
- template = res
- }
- })
- Vue.component('lasc-breast-molybdenum-inspect-list', {
- template: template,
- props: [],
- data: function () {
- return {
- isShowPicker: false,
- isShowPicker1: false,
- isShowPicker2: false,
- columns: ['非对称性腺体增厚', '乳头凹陷', '腋窝淋巴结肿大', '副乳腺', '乳腺切除术后'],
- pickType: '',
- curItem: '',
- curItem1: '',
- isShowDatePicker: false,
- activeDateField: '',
- date: '',
- readonly: true,
- form: {
- screenId: '', //两癌筛查id
- receiveBreastMolybdenum: '2', //是否接收乳腺临床检查1拒绝2接收
- receiveBreastMolybdenumOther: '',
- refusalReason: [],
- refusalReasonOtherContent: '',
- list: []
- },
- active: '',
- mbTubeNum: '',
- orgList: [],
- orgUser: [],
- data: {
- value: [
- {
- id: 3247,
- screenId: '808080f683c9e2570183c9f84cac0000',
- name: '辅助检查-乳腺钼靶-20231221',
- receiveBreastMolybdenumOther: '',
- breastDensity: '1',
- rightMolybdenumBiRads: '2',
- leftMolybdenumBiRads: '2',
- biRadsResult: 2,
- tumor: '1',
- calcification: '1',
- disorganization: '1',
- breastMolybdenumOrg: '思明区卫生和计划生育局',
- breastMolybdenumOrgOther: null,
- breastMolybdenumUser: '苏钦毅',
- breastMolybdenumTime: '2023-12-21',
- doctor: null,
- inspectOrgCode: 'ac02a9b87a3611e69f7c005056850d66',
- inspectUserCode: '40f5371c810d411ab085cb8d9f0160a6',
- followupDate: null,
- followupOrgCode: null,
- followupOrgName: null,
- followupUserCode: null,
- followupUserName: null,
- mbTubeNum: null,
- pdfUrl: 'https://www.xmtyw.cn/twocancerpdf/null.pdf',
- receiveBreastMolybdenum: '2',
- refusalReason: '[]',
- refusalReasonOtherContent: ''
- }
- ]
- }
- }
- },
- methods: {},
- mounted() {
- if (this.data.value && this.data.value.length && this.data.value[0].id) {
- var first = this.data.value[0]
- this.form.screenId = first.screenId
- this.form.receiveBreastMolybdenum = first.receiveBreastMolybdenum
- this.form.receiveBreastMolybdenumOther = first.receiveBreastMolybdenumOther
- this.form.refusalReason = first.refusalReason ? first.refusalReason.split(',') : []
- this.form.refusalReasonOtherContent = first.refusalReasonOtherContent
- this.form.list = this.data.value
- this.mbTubeNum = first.mbTubeNum ? first.mbTubeNum : ''
- }
- }
- })
|